├── .gitignore ├── ActiveStrokes.pro ├── COPYING ├── README.md ├── demoutils ├── demoutils.pro ├── include │ ├── Console.h │ ├── DialsAndKnobs.h │ ├── DialsAndKnobs_ui.h │ └── Stats.h └── libsrc │ ├── Console.cc │ ├── DialsAndKnobs.cc │ ├── DialsAndKnobs_ui.cc │ └── Stats.cc ├── eigen3 └── Eigen │ ├── CMakeLists.txt │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── KLUSupport │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ ├── Cholesky │ ├── LDLT.h │ ├── LLT.h │ └── LLT_LAPACKE.h │ ├── CholmodSupport │ └── CholmodSupport.h │ ├── Core │ ├── ArithmeticSequence.h │ ├── Array.h │ ├── ArrayBase.h │ ├── ArrayWrapper.h │ ├── Assign.h │ ├── AssignEvaluator.h │ ├── Assign_MKL.h │ ├── BandMatrix.h │ ├── Block.h │ ├── BooleanRedux.h │ ├── CommaInitializer.h │ ├── ConditionEstimator.h │ ├── CoreEvaluators.h │ ├── CoreIterators.h │ ├── CwiseBinaryOp.h │ ├── CwiseNullaryOp.h │ ├── CwiseTernaryOp.h │ ├── CwiseUnaryOp.h │ ├── CwiseUnaryView.h │ ├── DenseBase.h │ ├── DenseCoeffsBase.h │ ├── DenseStorage.h │ ├── Diagonal.h │ ├── DiagonalMatrix.h │ ├── DiagonalProduct.h │ ├── Dot.h │ ├── EigenBase.h │ ├── ForceAlignedAccess.h │ ├── Fuzzy.h │ ├── GeneralProduct.h │ ├── GenericPacketMath.h │ ├── GlobalFunctions.h │ ├── IO.h │ ├── IndexedView.h │ ├── Inverse.h │ ├── Map.h │ ├── MapBase.h │ ├── MathFunctions.h │ ├── MathFunctionsImpl.h │ ├── Matrix.h │ ├── MatrixBase.h │ ├── NestByValue.h │ ├── NoAlias.h │ ├── NumTraits.h │ ├── PartialReduxEvaluator.h │ ├── PermutationMatrix.h │ ├── PlainObjectBase.h │ ├── Product.h │ ├── ProductEvaluators.h │ ├── Random.h │ ├── Redux.h │ ├── Ref.h │ ├── Replicate.h │ ├── Reshaped.h │ ├── ReturnByValue.h │ ├── Reverse.h │ ├── Select.h │ ├── SelfAdjointView.h │ ├── SelfCwiseBinaryOp.h │ ├── Solve.h │ ├── SolveTriangular.h │ ├── SolverBase.h │ ├── StableNorm.h │ ├── StlIterators.h │ ├── Stride.h │ ├── Swap.h │ ├── Transpose.h │ ├── Transpositions.h │ ├── TriangularMatrix.h │ ├── VectorBlock.h │ ├── VectorwiseOp.h │ ├── Visitor.h │ ├── arch │ │ ├── AVX │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── AVX512 │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── AltiVec │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── MatrixProduct.h │ │ │ ├── MatrixProductCommon.h │ │ │ ├── MatrixProductMMA.h │ │ │ └── PacketMath.h │ │ ├── CUDA │ │ │ ├── Complex.h │ │ │ ├── Half.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ ├── PacketMathHalf.h │ │ │ └── TypeCasting.h │ │ ├── Default │ │ │ ├── BFloat16.h │ │ │ ├── ConjHelper.h │ │ │ ├── GenericPacketMathFunctions.h │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ ├── Half.h │ │ │ ├── Settings.h │ │ │ └── TypeCasting.h │ │ ├── GPU │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── HIP │ │ │ └── hcc │ │ │ │ └── math_constants.h │ │ ├── MSA │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── NEON │ │ │ ├── Complex.h │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── SSE │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── SVE │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── SYCL │ │ │ ├── InteropHeaders.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ ├── SyclMemoryModel.h │ │ │ └── TypeCasting.h │ │ └── ZVector │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ ├── functors │ │ ├── AssignmentFunctors.h │ │ ├── BinaryFunctors.h │ │ ├── NullaryFunctors.h │ │ ├── StlFunctors.h │ │ ├── TernaryFunctors.h │ │ └── UnaryFunctors.h │ ├── products │ │ ├── GeneralBlockPanelKernel.h │ │ ├── GeneralMatrixMatrix.h │ │ ├── GeneralMatrixMatrixTriangular.h │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ ├── GeneralMatrixVector.h │ │ ├── GeneralMatrixVector_BLAS.h │ │ ├── Parallelizer.h │ │ ├── SelfadjointMatrixMatrix.h │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ ├── SelfadjointMatrixVector.h │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ ├── SelfadjointProduct.h │ │ ├── SelfadjointRank2Update.h │ │ ├── TriangularMatrixMatrix.h │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ ├── TriangularMatrixVector.h │ │ ├── TriangularMatrixVector_BLAS.h │ │ ├── TriangularSolverMatrix.h │ │ ├── TriangularSolverMatrix_BLAS.h │ │ └── TriangularSolverVector.h │ └── util │ │ ├── BlasUtil.h │ │ ├── ConfigureVectorization.h │ │ ├── Constants.h │ │ ├── DisableStupidWarnings.h │ │ ├── ForwardDeclarations.h │ │ ├── IndexedViewHelper.h │ │ ├── IntegralConstant.h │ │ ├── MKL_support.h │ │ ├── Macros.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── NonMPL2.h │ │ ├── ReenableStupidWarnings.h │ │ ├── ReshapedHelper.h │ │ ├── StaticAssert.h │ │ ├── SymbolicIndex.h │ │ └── XprHelper.h │ ├── Eigenvalues │ ├── ComplexEigenSolver.h │ ├── ComplexSchur.h │ ├── ComplexSchur_LAPACKE.h │ ├── EigenSolver.h │ ├── GeneralizedEigenSolver.h │ ├── GeneralizedSelfAdjointEigenSolver.h │ ├── HessenbergDecomposition.h │ ├── MatrixBaseEigenvalues.h │ ├── RealQZ.h │ ├── RealSchur.h │ ├── RealSchur_LAPACKE.h │ ├── SelfAdjointEigenSolver.h │ ├── SelfAdjointEigenSolver_LAPACKE.h │ └── Tridiagonalization.h │ ├── Geometry │ ├── AlignedBox.h │ ├── AngleAxis.h │ ├── EulerAngles.h │ ├── Homogeneous.h │ ├── Hyperplane.h │ ├── OrthoMethods.h │ ├── ParametrizedLine.h │ ├── Quaternion.h │ ├── Rotation2D.h │ ├── RotationBase.h │ ├── Scaling.h │ ├── Transform.h │ ├── Translation.h │ ├── Umeyama.h │ └── arch │ │ ├── Geometry_SIMD.h │ │ └── Geometry_SSE.h │ ├── Householder │ ├── BlockHouseholder.h │ ├── Householder.h │ └── HouseholderSequence.h │ ├── IterativeLinearSolvers │ ├── BasicPreconditioners.h │ ├── BiCGSTAB.h │ ├── ConjugateGradient.h │ ├── IncompleteCholesky.h │ ├── IncompleteLUT.h │ ├── IterativeSolverBase.h │ ├── LeastSquareConjugateGradient.h │ └── SolveWithGuess.h │ ├── Jacobi │ └── Jacobi.h │ ├── KLUSupport │ └── KLUSupport.h │ ├── LU │ ├── Determinant.h │ ├── FullPivLU.h │ ├── InverseImpl.h │ ├── PartialPivLU.h │ ├── PartialPivLU_LAPACKE.h │ └── arch │ │ ├── InverseSize4.h │ │ └── Inverse_SSE.h │ ├── MetisSupport │ └── MetisSupport.h │ ├── OrderingMethods │ ├── Amd.h │ ├── Eigen_Colamd.h │ └── Ordering.h │ ├── PaStiXSupport │ └── PaStiXSupport.h │ ├── PardisoSupport │ └── PardisoSupport.h │ ├── QR │ ├── ColPivHouseholderQR.h │ ├── ColPivHouseholderQR_LAPACKE.h │ ├── CompleteOrthogonalDecomposition.h │ ├── FullPivHouseholderQR.h │ ├── HouseholderQR.h │ └── HouseholderQR_LAPACKE.h │ ├── SPQRSupport │ └── SuiteSparseQRSupport.h │ ├── SVD │ ├── BDCSVD.h │ ├── JacobiSVD.h │ ├── JacobiSVD_LAPACKE.h │ ├── SVDBase.h │ └── UpperBidiagonalization.h │ ├── SparseCholesky │ ├── SimplicialCholesky.h │ └── SimplicialCholesky_impl.h │ ├── SparseCore │ ├── AmbiVector.h │ ├── CompressedStorage.h │ ├── ConservativeSparseSparseProduct.h │ ├── MappedSparseMatrix.h │ ├── SparseAssign.h │ ├── SparseBlock.h │ ├── SparseColEtree.h │ ├── SparseCompressedBase.h │ ├── SparseCwiseBinaryOp.h │ ├── SparseCwiseUnaryOp.h │ ├── SparseDenseProduct.h │ ├── SparseDiagonalProduct.h │ ├── SparseDot.h │ ├── SparseFuzzy.h │ ├── SparseMap.h │ ├── SparseMatrix.h │ ├── SparseMatrixBase.h │ ├── SparsePermutation.h │ ├── SparseProduct.h │ ├── SparseRedux.h │ ├── SparseRef.h │ ├── SparseSelfAdjointView.h │ ├── SparseSolverBase.h │ ├── SparseSparseProductWithPruning.h │ ├── SparseTranspose.h │ ├── SparseTriangularView.h │ ├── SparseUtil.h │ ├── SparseVector.h │ ├── SparseView.h │ └── TriangularSolver.h │ ├── SparseLU │ ├── SparseLU.h │ ├── SparseLUImpl.h │ ├── SparseLU_Memory.h │ ├── SparseLU_Structs.h │ ├── SparseLU_SupernodalMatrix.h │ ├── SparseLU_Utils.h │ ├── SparseLU_column_bmod.h │ ├── SparseLU_column_dfs.h │ ├── SparseLU_copy_to_ucol.h │ ├── SparseLU_gemm_kernel.h │ ├── SparseLU_heap_relax_snode.h │ ├── SparseLU_kernel_bmod.h │ ├── SparseLU_panel_bmod.h │ ├── SparseLU_panel_dfs.h │ ├── SparseLU_pivotL.h │ ├── SparseLU_pruneL.h │ └── SparseLU_relax_snode.h │ ├── SparseQR │ └── SparseQR.h │ ├── StlSupport │ ├── StdDeque.h │ ├── StdList.h │ ├── StdVector.h │ └── details.h │ ├── SuperLUSupport │ └── SuperLUSupport.h │ ├── UmfPackSupport │ └── UmfPackSupport.h │ ├── misc │ ├── Image.h │ ├── Kernel.h │ ├── RealSvd2x2.h │ ├── blas.h │ ├── lapack.h │ ├── lapacke.h │ └── lapacke_mangling.h │ └── plugins │ ├── ArrayCwiseBinaryOps.h │ ├── ArrayCwiseUnaryOps.h │ ├── BlockMethods.h │ ├── CommonCwiseBinaryOps.h │ ├── CommonCwiseUnaryOps.h │ ├── IndexedViewMethods.h │ ├── MatrixCwiseBinaryOps.h │ ├── MatrixCwiseUnaryOps.h │ └── ReshapedMethods.h ├── libas ├── include │ ├── ASBrushPath.h │ ├── ASBrushPathFitting.h │ ├── ASBrushVertex.h │ ├── ASCell.h │ ├── ASClipPath.h │ ├── ASContour.h │ ├── ASDeform.h │ ├── ASEdgeContour.h │ ├── ASRenderer.h │ ├── ASSimpleGrid.h │ ├── ASSnakes.h │ └── ASVertexContour.h ├── libas.pro └── libsrc │ ├── ASBrushPath.cc │ ├── ASBrushPathFitting.cc │ ├── ASBrushVertex.cc │ ├── ASCell.cc │ ├── ASClipPath.cc │ ├── ASContour.cc │ ├── ASDeform.cc │ ├── ASEdgeContour.cc │ ├── ASRenderer.cc │ ├── ASSimpleGrid.cc │ ├── ASSnakes.cc │ └── ASVertexContour.cc ├── libgq ├── include │ ├── GQDraw.h │ ├── GQFramebufferObject.h │ ├── GQGPUImageProcessing.h │ ├── GQImage.h │ ├── GQInclude.h │ ├── GQShaderManager.h │ ├── GQTexture.h │ ├── GQTexture_.h │ └── GQVertexBufferSet.h ├── libgq.pro └── libsrc │ ├── GQDraw.cc │ ├── GQFramebufferObject.cc │ ├── GQGPUImageProcessing.cc │ ├── GQImage.cc │ ├── GQShaderManager.cc │ ├── GQTexture.cc │ └── GQVertexBufferSet.cc ├── libnpr ├── include │ ├── NPRGLDraw.h │ ├── NPRGeometry.h │ ├── NPRPathRenderer.h │ ├── NPRSettings.h │ └── NPRStyle.h ├── libnpr.pro ├── libsrc │ ├── NPRGLDraw.cc │ ├── NPRGeometry.cc │ ├── NPRPathRenderer.cc │ ├── NPRSettings.cc │ └── NPRStyle.cc └── shaders │ ├── Lee_lines.frag │ ├── common.glsl │ ├── deferredShading.frag │ ├── deferredShading.vert │ ├── derivative_filter.frag │ ├── derivative_filter_rgb.frag │ ├── diff.frag │ ├── filter_pair.frag │ ├── filter_pair_brute.frag │ ├── filter_pair_xyz.frag │ ├── focus_common.glsl │ ├── gaussian_blur.frag │ ├── gaussian_blur_rgb.frag │ ├── geometry_shader.glsl │ ├── gradient.frag │ ├── hblur.frag │ ├── image_lines.frag │ ├── imagesc.frag │ ├── motion.frag │ ├── motion.vert │ ├── passthrough.vert │ ├── phongFrag.frag │ ├── phongFrag.vert │ ├── programs.xml │ ├── segment_atlas_common.glsl │ ├── spine_test_common.glsl │ ├── stroke_render_common.glsl │ ├── stroke_render_snakes.frag │ ├── stroke_render_snakes.geom │ ├── stroke_render_snakes.vert │ ├── stroke_render_spine.frag │ ├── stroke_render_spine.geom │ ├── stroke_render_spine.vert │ ├── supersample_common.glsl │ ├── toon.frag │ ├── toon.vert │ ├── vblur.frag │ └── version.glsl ├── qglviewer ├── GPL_EXCEPTION ├── ImageInterface.ui ├── LICENCE ├── README ├── camera.cpp ├── camera.h ├── config.h ├── constraint.cpp ├── constraint.h ├── domUtils.h ├── frame.cpp ├── frame.h ├── keyFrameInterpolator.cpp ├── keyFrameInterpolator.h ├── manipulatedCameraFrame.cpp ├── manipulatedCameraFrame.h ├── manipulatedFrame.cpp ├── manipulatedFrame.h ├── mouseGrabber.cpp ├── mouseGrabber.h ├── qglviewer-icon.xpm ├── qglviewer.cpp ├── qglviewer.h ├── qglviewer.icns ├── qglviewer.pro ├── qglviewer_fr.qm ├── qglviewer_fr.ts ├── quaternion.cpp ├── quaternion.h ├── saveSnapshot.cpp ├── ui_ImageInterface.h ├── vec.cpp └── vec.h ├── qviewer ├── .qglviewer.xml ├── qviewer.pro └── src │ ├── Cube.cc │ ├── Cube.h │ ├── GLViewer.cc │ ├── GLViewer.h │ ├── ImageSpaceLines.cc │ ├── ImageSpaceLines.h │ ├── MainWindow.cc │ ├── MainWindow.h │ ├── Player.ui │ ├── Quad.cc │ ├── Quad.h │ ├── Scene.cc │ ├── Scene.h │ ├── Session.cc │ ├── Session.h │ ├── Sphere.cc │ ├── Sphere.h │ ├── icons.qrc │ ├── icons │ ├── forward.xpm │ ├── pause.xpm │ ├── play.xpm │ ├── rewind.xpm │ └── stop.xpm │ └── main.cc ├── samples ├── models │ └── lemming.ply ├── offsets │ ├── artMap │ │ ├── bump │ │ │ ├── bumpN.3dt │ │ │ ├── bumpN001.png │ │ │ ├── bumpN002.png │ │ │ ├── bumpN003.png │ │ │ ├── bumpN004.png │ │ │ ├── bumpN005.png │ │ │ ├── bumpN006.png │ │ │ ├── bumpN007.png │ │ │ ├── bumpN008.png │ │ │ ├── bumpN009.png │ │ │ ├── bumpN010.png │ │ │ ├── bumpN011.png │ │ │ ├── bumpN012.png │ │ │ ├── bumpN013.png │ │ │ ├── bumpN014.png │ │ │ ├── bumpN015.png │ │ │ ├── bumpN016.png │ │ │ ├── bumpN017.png │ │ │ ├── bumpT.3dt │ │ │ ├── bumpT001.png │ │ │ ├── bumpT002.png │ │ │ ├── bumpT003.png │ │ │ ├── bumpT004.png │ │ │ ├── bumpT005.png │ │ │ ├── bumpT006.png │ │ │ ├── bumpT007.png │ │ │ ├── bumpT008.png │ │ │ ├── bumpT009.png │ │ │ ├── bumpT010.png │ │ │ ├── bumpT011.png │ │ │ ├── bumpT012.png │ │ │ ├── bumpT013.png │ │ │ ├── bumpT014.png │ │ │ ├── bumpT015.png │ │ │ ├── bumpT016.png │ │ │ └── bumpT017.png │ │ ├── inner │ │ │ ├── innerN.3dt │ │ │ ├── innerN001.png │ │ │ ├── innerN002.png │ │ │ ├── innerN003.png │ │ │ ├── innerN004.png │ │ │ ├── innerN005.png │ │ │ ├── innerN006.png │ │ │ ├── innerN007.png │ │ │ ├── innerN008.png │ │ │ ├── innerN009.png │ │ │ ├── innerN010.png │ │ │ ├── innerN011.png │ │ │ ├── innerN012.png │ │ │ ├── innerN013.png │ │ │ ├── innerN014.png │ │ │ ├── innerN015.png │ │ │ ├── innerN016.png │ │ │ ├── innerN017.png │ │ │ ├── innerT.3dt │ │ │ ├── innerT001.png │ │ │ ├── innerT002.png │ │ │ ├── innerT003.png │ │ │ ├── innerT004.png │ │ │ ├── innerT005.png │ │ │ ├── innerT006.png │ │ │ ├── innerT007.png │ │ │ ├── innerT008.png │ │ │ ├── innerT009.png │ │ │ ├── innerT010.png │ │ │ ├── innerT011.png │ │ │ ├── innerT012.png │ │ │ ├── innerT013.png │ │ │ ├── innerT014.png │ │ │ ├── innerT015.png │ │ │ ├── innerT016.png │ │ │ └── innerT017.png │ │ ├── lowhill │ │ │ ├── lowhillN.3dt │ │ │ ├── lowhillN001.png │ │ │ ├── lowhillN002.png │ │ │ ├── lowhillN003.png │ │ │ ├── lowhillN004.png │ │ │ ├── lowhillN005.png │ │ │ ├── lowhillN006.png │ │ │ ├── lowhillN007.png │ │ │ ├── lowhillN008.png │ │ │ ├── lowhillN009.png │ │ │ ├── lowhillN010.png │ │ │ ├── lowhillN011.png │ │ │ ├── lowhillN012.png │ │ │ ├── lowhillN013.png │ │ │ ├── lowhillN014.png │ │ │ ├── lowhillN015.png │ │ │ ├── lowhillN016.png │ │ │ ├── lowhillN017.png │ │ │ ├── lowhillT.3dt │ │ │ ├── lowhillT001.png │ │ │ ├── lowhillT002.png │ │ │ ├── lowhillT003.png │ │ │ ├── lowhillT004.png │ │ │ ├── lowhillT005.png │ │ │ ├── lowhillT006.png │ │ │ ├── lowhillT007.png │ │ │ ├── lowhillT008.png │ │ │ ├── lowhillT009.png │ │ │ ├── lowhillT010.png │ │ │ ├── lowhillT011.png │ │ │ ├── lowhillT012.png │ │ │ ├── lowhillT013.png │ │ │ ├── lowhillT014.png │ │ │ ├── lowhillT015.png │ │ │ ├── lowhillT016.png │ │ │ └── lowhillT017.png │ │ ├── none │ │ │ ├── none.3dt │ │ │ └── none.png │ │ ├── offset1 │ │ │ ├── offset1N.3dt │ │ │ ├── offset1N001.png │ │ │ ├── offset1N002.png │ │ │ ├── offset1N003.png │ │ │ ├── offset1N004.png │ │ │ ├── offset1N005.png │ │ │ ├── offset1N006.png │ │ │ ├── offset1N007.png │ │ │ ├── offset1N008.png │ │ │ ├── offset1N009.png │ │ │ ├── offset1N010.png │ │ │ ├── offset1N011.png │ │ │ ├── offset1N012.png │ │ │ ├── offset1N013.png │ │ │ ├── offset1N014.png │ │ │ ├── offset1N015.png │ │ │ ├── offset1N016.png │ │ │ ├── offset1N017.png │ │ │ ├── offset1T.3dt │ │ │ ├── offset1T001.png │ │ │ ├── offset1T002.png │ │ │ ├── offset1T003.png │ │ │ ├── offset1T004.png │ │ │ ├── offset1T005.png │ │ │ ├── offset1T006.png │ │ │ ├── offset1T007.png │ │ │ ├── offset1T008.png │ │ │ ├── offset1T009.png │ │ │ ├── offset1T010.png │ │ │ ├── offset1T011.png │ │ │ ├── offset1T012.png │ │ │ ├── offset1T013.png │ │ │ ├── offset1T014.png │ │ │ ├── offset1T015.png │ │ │ ├── offset1T016.png │ │ │ └── offset1T017.png │ │ ├── semiCircle │ │ │ ├── semiCircleN.3dt │ │ │ ├── semiCircleN001.png │ │ │ ├── semiCircleN002.png │ │ │ ├── semiCircleN003.png │ │ │ ├── semiCircleN004.png │ │ │ ├── semiCircleN005.png │ │ │ ├── semiCircleN006.png │ │ │ ├── semiCircleN007.png │ │ │ ├── semiCircleN008.png │ │ │ ├── semiCircleN009.png │ │ │ ├── semiCircleN010.png │ │ │ ├── semiCircleN011.png │ │ │ ├── semiCircleN012.png │ │ │ ├── semiCircleN013.png │ │ │ ├── semiCircleN014.png │ │ │ ├── semiCircleN015.png │ │ │ ├── semiCircleN016.png │ │ │ ├── semiCircleN017.png │ │ │ ├── semiCircleT.3dt │ │ │ ├── semiCircleT001.png │ │ │ ├── semiCircleT002.png │ │ │ ├── semiCircleT003.png │ │ │ ├── semiCircleT004.png │ │ │ ├── semiCircleT005.png │ │ │ ├── semiCircleT006.png │ │ │ ├── semiCircleT007.png │ │ │ ├── semiCircleT008.png │ │ │ ├── semiCircleT009.png │ │ │ ├── semiCircleT010.png │ │ │ ├── semiCircleT011.png │ │ │ ├── semiCircleT012.png │ │ │ ├── semiCircleT013.png │ │ │ ├── semiCircleT014.png │ │ │ ├── semiCircleT015.png │ │ │ ├── semiCircleT016.png │ │ │ └── semiCircleT017.png │ │ ├── smallLoop │ │ │ ├── smallLoopN.3dt │ │ │ ├── smallLoopN001.png │ │ │ ├── smallLoopN002.png │ │ │ ├── smallLoopN003.png │ │ │ ├── smallLoopN004.png │ │ │ ├── smallLoopN005.png │ │ │ ├── smallLoopN006.png │ │ │ ├── smallLoopN007.png │ │ │ ├── smallLoopN008.png │ │ │ ├── smallLoopN009.png │ │ │ ├── smallLoopN010.png │ │ │ ├── smallLoopN011.png │ │ │ ├── smallLoopN012.png │ │ │ ├── smallLoopN013.png │ │ │ ├── smallLoopN014.png │ │ │ ├── smallLoopN015.png │ │ │ ├── smallLoopN016.png │ │ │ ├── smallLoopN017.png │ │ │ ├── smallLoopT.3dt │ │ │ ├── smallLoopT001.png │ │ │ ├── smallLoopT002.png │ │ │ ├── smallLoopT003.png │ │ │ ├── smallLoopT004.png │ │ │ ├── smallLoopT005.png │ │ │ ├── smallLoopT006.png │ │ │ ├── smallLoopT007.png │ │ │ ├── smallLoopT008.png │ │ │ ├── smallLoopT009.png │ │ │ ├── smallLoopT010.png │ │ │ ├── smallLoopT011.png │ │ │ ├── smallLoopT012.png │ │ │ ├── smallLoopT013.png │ │ │ ├── smallLoopT014.png │ │ │ ├── smallLoopT015.png │ │ │ ├── smallLoopT016.png │ │ │ └── smallLoopT017.png │ │ ├── smallLoop1 │ │ │ ├── smallLoop1N.3dt │ │ │ ├── smallLoop1N001.png │ │ │ ├── smallLoop1N002.png │ │ │ ├── smallLoop1N003.png │ │ │ ├── smallLoop1N004.png │ │ │ ├── smallLoop1N005.png │ │ │ ├── smallLoop1N006.png │ │ │ ├── smallLoop1N007.png │ │ │ ├── smallLoop1N008.png │ │ │ ├── smallLoop1N009.png │ │ │ ├── smallLoop1N010.png │ │ │ ├── smallLoop1N011.png │ │ │ ├── smallLoop1N012.png │ │ │ ├── smallLoop1N013.png │ │ │ ├── smallLoop1N014.png │ │ │ ├── smallLoop1N015.png │ │ │ ├── smallLoop1N016.png │ │ │ ├── smallLoop1N017.png │ │ │ ├── smallLoop1N018.png │ │ │ ├── smallLoop1N019.png │ │ │ ├── smallLoop1N020.png │ │ │ ├── smallLoop1N021.png │ │ │ ├── smallLoop1N022.png │ │ │ ├── smallLoop1N023.png │ │ │ ├── smallLoop1N024.png │ │ │ ├── smallLoop1N025.png │ │ │ ├── smallLoop1N026.png │ │ │ ├── smallLoop1N027.png │ │ │ ├── smallLoop1N028.png │ │ │ ├── smallLoop1N029.png │ │ │ ├── smallLoop1N030.png │ │ │ ├── smallLoop1N031.png │ │ │ ├── smallLoop1N032.png │ │ │ ├── smallLoop1N033.png │ │ │ ├── smallLoop1T.3dt │ │ │ ├── smallLoop1T001.png │ │ │ ├── smallLoop1T002.png │ │ │ ├── smallLoop1T003.png │ │ │ ├── smallLoop1T004.png │ │ │ ├── smallLoop1T005.png │ │ │ ├── smallLoop1T006.png │ │ │ ├── smallLoop1T007.png │ │ │ ├── smallLoop1T008.png │ │ │ ├── smallLoop1T009.png │ │ │ ├── smallLoop1T010.png │ │ │ ├── smallLoop1T011.png │ │ │ ├── smallLoop1T012.png │ │ │ ├── smallLoop1T013.png │ │ │ ├── smallLoop1T014.png │ │ │ ├── smallLoop1T015.png │ │ │ ├── smallLoop1T016.png │ │ │ ├── smallLoop1T017.png │ │ │ ├── smallLoop1T018.png │ │ │ ├── smallLoop1T019.png │ │ │ ├── smallLoop1T020.png │ │ │ ├── smallLoop1T021.png │ │ │ ├── smallLoop1T022.png │ │ │ ├── smallLoop1T023.png │ │ │ ├── smallLoop1T024.png │ │ │ ├── smallLoop1T025.png │ │ │ ├── smallLoop1T026.png │ │ │ ├── smallLoop1T027.png │ │ │ ├── smallLoop1T028.png │ │ │ ├── smallLoop1T029.png │ │ │ ├── smallLoop1T030.png │ │ │ ├── smallLoop1T031.png │ │ │ ├── smallLoop1T032.png │ │ │ └── smallLoop1T033.png │ │ ├── spike │ │ │ ├── spikeN.3dt │ │ │ ├── spikeN001.png │ │ │ ├── spikeN002.png │ │ │ ├── spikeN003.png │ │ │ ├── spikeN004.png │ │ │ ├── spikeN005.png │ │ │ ├── spikeN006.png │ │ │ ├── spikeN007.png │ │ │ ├── spikeN008.png │ │ │ ├── spikeN009.png │ │ │ ├── spikeN010.png │ │ │ ├── spikeN011.png │ │ │ ├── spikeN012.png │ │ │ ├── spikeN013.png │ │ │ ├── spikeN014.png │ │ │ ├── spikeN015.png │ │ │ ├── spikeN016.png │ │ │ ├── spikeN017.png │ │ │ ├── spikeT.3dt │ │ │ ├── spikeT001.png │ │ │ ├── spikeT002.png │ │ │ ├── spikeT003.png │ │ │ ├── spikeT004.png │ │ │ ├── spikeT005.png │ │ │ ├── spikeT006.png │ │ │ ├── spikeT007.png │ │ │ ├── spikeT008.png │ │ │ ├── spikeT009.png │ │ │ ├── spikeT010.png │ │ │ ├── spikeT011.png │ │ │ ├── spikeT012.png │ │ │ ├── spikeT013.png │ │ │ ├── spikeT014.png │ │ │ ├── spikeT015.png │ │ │ ├── spikeT016.png │ │ │ └── spikeT017.png │ │ ├── triangle │ │ │ ├── triangleN.3dt │ │ │ ├── triangleN001.png │ │ │ ├── triangleN002.png │ │ │ ├── triangleN003.png │ │ │ ├── triangleN004.png │ │ │ ├── triangleN005.png │ │ │ ├── triangleN006.png │ │ │ ├── triangleN007.png │ │ │ ├── triangleN008.png │ │ │ ├── triangleN009.png │ │ │ ├── triangleN010.png │ │ │ ├── triangleN011.png │ │ │ ├── triangleN012.png │ │ │ ├── triangleN013.png │ │ │ ├── triangleN014.png │ │ │ ├── triangleN015.png │ │ │ ├── triangleN016.png │ │ │ ├── triangleN017.png │ │ │ ├── triangleT.3dt │ │ │ ├── triangleT001.png │ │ │ ├── triangleT002.png │ │ │ ├── triangleT003.png │ │ │ ├── triangleT004.png │ │ │ ├── triangleT005.png │ │ │ ├── triangleT006.png │ │ │ ├── triangleT007.png │ │ │ ├── triangleT008.png │ │ │ ├── triangleT009.png │ │ │ ├── triangleT010.png │ │ │ ├── triangleT011.png │ │ │ ├── triangleT012.png │ │ │ ├── triangleT013.png │ │ │ ├── triangleT014.png │ │ │ ├── triangleT015.png │ │ │ ├── triangleT016.png │ │ │ └── triangleT017.png │ │ └── wobble │ │ │ ├── wobbleN.3dt │ │ │ ├── wobbleN001.png │ │ │ ├── wobbleN002.png │ │ │ ├── wobbleN003.png │ │ │ ├── wobbleN004.png │ │ │ ├── wobbleN005.png │ │ │ ├── wobbleN006.png │ │ │ ├── wobbleN007.png │ │ │ ├── wobbleN008.png │ │ │ ├── wobbleN009.png │ │ │ ├── wobbleN010.png │ │ │ ├── wobbleN011.png │ │ │ ├── wobbleN012.png │ │ │ ├── wobbleN013.png │ │ │ ├── wobbleN014.png │ │ │ ├── wobbleN015.png │ │ │ ├── wobbleN016.png │ │ │ ├── wobbleN017.png │ │ │ ├── wobbleT.3dt │ │ │ ├── wobbleT001.png │ │ │ ├── wobbleT002.png │ │ │ ├── wobbleT003.png │ │ │ ├── wobbleT004.png │ │ │ ├── wobbleT005.png │ │ │ ├── wobbleT006.png │ │ │ ├── wobbleT007.png │ │ │ ├── wobbleT008.png │ │ │ ├── wobbleT009.png │ │ │ ├── wobbleT010.png │ │ │ ├── wobbleT011.png │ │ │ ├── wobbleT012.png │ │ │ ├── wobbleT013.png │ │ │ ├── wobbleT014.png │ │ │ ├── wobbleT015.png │ │ │ ├── wobbleT016.png │ │ │ └── wobbleT017.png │ ├── bump.offset │ ├── inner.offset │ ├── lowhill.offset │ ├── none.offset │ ├── offset1.offset │ ├── semiCircle.offset │ ├── smallLoop.offset │ ├── smallLoop1.offset │ ├── spike.offset │ ├── triangle.offset │ └── wobble.offset └── textures │ ├── artmaps │ ├── candle001.png │ ├── candle002.png │ ├── candle003.png │ ├── candle004.png │ ├── candle005.png │ ├── candle006.png │ ├── candle007.png │ ├── candle008.png │ ├── candle009.png │ ├── candle010.png │ ├── candle011.png │ ├── candle012.png │ ├── candle013.png │ ├── candle014.png │ ├── candle015.png │ ├── candle016.png │ ├── candle017.png │ ├── charcoal001.png │ ├── charcoal002.png │ ├── charcoal003.png │ ├── charcoal004.png │ ├── charcoal005.png │ ├── charcoal006.png │ ├── charcoal007.png │ ├── charcoal008.png │ ├── charcoal009.png │ ├── charcoal010.png │ ├── charcoal011.png │ ├── charcoal012.png │ ├── charcoal013.png │ ├── charcoal014.png │ ├── charcoal015.png │ ├── charcoal016.png │ ├── charcoal017.png │ ├── dots001.png │ ├── dots002.png │ ├── dots003.png │ ├── dots004.png │ ├── dots005.png │ ├── dots006.png │ ├── dots007.png │ ├── dots008.png │ ├── dots009.png │ ├── dots010.png │ ├── dots011.png │ ├── dots012.png │ ├── dots013.png │ ├── dots014.png │ ├── dots015.png │ ├── dots016.png │ ├── dots017.png │ ├── felt001.png │ ├── felt002.png │ ├── felt003.png │ ├── felt004.png │ ├── felt005.png │ ├── felt006.png │ ├── felt007.png │ ├── felt008.png │ ├── felt009.png │ ├── felt010.png │ ├── felt011.png │ ├── felt012.png │ ├── felt013.png │ ├── felt014.png │ ├── felt015.png │ ├── felt016.png │ ├── felt017.png │ ├── hairy001.png │ ├── hairy002.png │ ├── hairy003.png │ ├── hairy004.png │ ├── hairy005.png │ ├── hairy006.png │ ├── hairy007.png │ ├── hairy008.png │ ├── hairy009.png │ ├── hairy010.png │ ├── hairy011.png │ ├── hairy012.png │ ├── hairy013.png │ ├── hairy014.png │ ├── hairy015.png │ ├── hairy016.png │ ├── hairy017.png │ ├── jumble001.png │ ├── jumble002.png │ ├── jumble003.png │ ├── jumble004.png │ ├── jumble005.png │ ├── jumble006.png │ ├── jumble007.png │ ├── jumble008.png │ ├── jumble009.png │ ├── jumble010.png │ ├── jumble011.png │ ├── jumble012.png │ ├── jumble013.png │ ├── jumble014.png │ ├── jumble015.png │ ├── jumble016.png │ ├── jumble017.png │ ├── line001.png │ ├── line002.png │ ├── line003.png │ ├── line004.png │ ├── line005.png │ ├── line006.png │ ├── line007.png │ ├── line008.png │ ├── line009.png │ ├── line010.png │ ├── line011.png │ ├── line012.png │ ├── line013.png │ ├── line014.png │ ├── line015.png │ ├── line016.png │ ├── line017.png │ ├── scratch001.png │ ├── scratch002.png │ ├── scratch003.png │ ├── scratch004.png │ ├── scratch005.png │ ├── scratch006.png │ ├── scratch007.png │ ├── scratch008.png │ ├── scratch009.png │ ├── scratch010.png │ ├── scratch011.png │ ├── scratch012.png │ ├── scratch013.png │ ├── scratch014.png │ ├── scratch015.png │ ├── scratch016.png │ ├── scratch017.png │ ├── scratch2001.png │ ├── scratch2002.png │ ├── scratch2003.png │ ├── scratch2004.png │ ├── scratch2005.png │ ├── scratch2006.png │ ├── scratch2007.png │ ├── scratch2008.png │ ├── scratch2009.png │ ├── scratch2010.png │ ├── scratch2011.png │ ├── scratch2012.png │ ├── scratch2013.png │ ├── scratch2014.png │ ├── scratch2015.png │ ├── scratch2016.png │ ├── scratch2017.png │ ├── scribble001.png │ ├── scribble002.png │ ├── scribble003.png │ ├── scribble004.png │ ├── scribble005.png │ ├── scribble006.png │ ├── scribble007.png │ ├── scribble008.png │ ├── scribble009.png │ ├── scribble010.png │ ├── scribble011.png │ ├── scribble012.png │ ├── scribble013.png │ ├── scribble014.png │ ├── scribble015.png │ ├── scribble016.png │ ├── scribble017.png │ ├── slash001.png │ ├── slash002.png │ ├── slash003.png │ ├── slash004.png │ ├── slash005.png │ ├── slash006.png │ ├── slash007.png │ ├── slash008.png │ ├── slash009.png │ ├── slash010.png │ ├── slash011.png │ ├── slash012.png │ ├── slash013.png │ ├── slash014.png │ ├── slash015.png │ ├── slash016.png │ ├── slash017.png │ ├── wedge001.png │ ├── wedge002.png │ ├── wedge003.png │ ├── wedge004.png │ ├── wedge005.png │ ├── wedge006.png │ ├── wedge007.png │ ├── wedge008.png │ ├── wedge009.png │ ├── wedge010.png │ ├── wedge011.png │ ├── wedge012.png │ ├── wedge013.png │ ├── wedge014.png │ ├── wedge015.png │ ├── wedge016.png │ ├── wedge017.png │ ├── wobble001.png │ ├── wobble002.png │ ├── wobble003.png │ ├── wobble004.png │ ├── wobble005.png │ ├── wobble006.png │ ├── wobble007.png │ ├── wobble008.png │ ├── wobble009.png │ ├── wobble010.png │ ├── wobble011.png │ ├── wobble012.png │ ├── wobble013.png │ ├── wobble014.png │ ├── wobble015.png │ ├── wobble016.png │ ├── wobble017.png │ ├── wobble018.png │ ├── wobble019.png │ ├── wobble020.png │ ├── wobble021.png │ ├── wobble022.png │ ├── wobble023.png │ ├── wobble024.png │ ├── wobble025.png │ ├── wobble026.png │ ├── wobble027.png │ ├── wobble028.png │ ├── wobble029.png │ ├── wobble030.png │ ├── wobble031.png │ ├── wobble032.png │ └── wobble033.png │ ├── candle.3dt │ ├── charcoal.3dt │ ├── dots.3dt │ ├── felt.3dt │ ├── hairy.3dt │ ├── jumble.3dt │ ├── line.3dt │ ├── scratch.3dt │ ├── scratch2.3dt │ ├── scribble.3dt │ ├── slash.3dt │ ├── toon │ └── toonBW.png │ ├── wedge.3dt │ └── wobble.3dt └── trimesh2 ├── include ├── Box.h ├── Color.h ├── ICP.h ├── KDtree.h ├── TriMesh.h ├── TriMesh_algo.h ├── Vec.h ├── XForm.h ├── bsphere.h ├── endianutil.h ├── lineqn.h ├── mathcompat.h ├── mathutil.h ├── noise3d.h ├── strutil.h └── timestamp.h ├── libsrc ├── ICP.cc ├── KDtree.cc ├── TriMesh_bounding.cc ├── TriMesh_connectivity.cc ├── TriMesh_curvature.cc ├── TriMesh_grid.cc ├── TriMesh_io.cc ├── TriMesh_normals.cc ├── TriMesh_pointareas.cc ├── TriMesh_stats.cc ├── TriMesh_tstrips.cc ├── diffuse.cc ├── edgeflip.cc ├── faceflip.cc ├── filter.cc ├── remove.cc ├── reorder_verts.cc └── subdiv.cc └── trimesh2.pro /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Makefile 3 | Makefile.Debug 4 | Makefile.Release 5 | *.o 6 | *.a 7 | *.prl 8 | moc_*.cpp 9 | moc_*.h 10 | ui_*.cpp 11 | ui_*.h 12 | qrc_*.cpp 13 | .vscode/ 14 | .qmake.stash -------------------------------------------------------------------------------- /ActiveStrokes.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | 4 | CONFIG += debug_and_release 5 | 6 | SUBDIRS += libgq 7 | SUBDIRS += demoutils 8 | SUBDIRS += trimesh2 9 | SUBDIRS += qglviewer 10 | SUBDIRS += libnpr 11 | SUBDIRS += libas 12 | SUBDIRS += qviewer 13 | -------------------------------------------------------------------------------- /eigen3/Eigen/Dense: -------------------------------------------------------------------------------- 1 | #include "Core" 2 | #include "LU" 3 | #include "Cholesky" 4 | #include "QR" 5 | #include "SVD" 6 | #include "Geometry" 7 | #include "Eigenvalues" 8 | -------------------------------------------------------------------------------- /eigen3/Eigen/Eigen: -------------------------------------------------------------------------------- 1 | #include "Dense" 2 | #include "Sparse" 3 | -------------------------------------------------------------------------------- /eigen3/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- 1 | #ifdef EIGEN_MPL2_ONLY 2 | #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode 3 | #endif 4 | -------------------------------------------------------------------------------- /eigen3/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- 1 | #ifndef LAPACK_HEADER_INCLUDED 2 | #define LAPACK_HEADER_INCLUDED 3 | 4 | #ifndef LAPACK_GLOBAL 5 | #if defined(LAPACK_GLOBAL_PATTERN_LC) || defined(ADD_) 6 | #define LAPACK_GLOBAL(lcname,UCNAME) lcname##_ 7 | #elif defined(LAPACK_GLOBAL_PATTERN_UC) || defined(UPPER) 8 | #define LAPACK_GLOBAL(lcname,UCNAME) UCNAME 9 | #elif defined(LAPACK_GLOBAL_PATTERN_MC) || defined(NOCHANGE) 10 | #define LAPACK_GLOBAL(lcname,UCNAME) lcname 11 | #else 12 | #define LAPACK_GLOBAL(lcname,UCNAME) lcname##_ 13 | #endif 14 | #endif 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /libnpr/shaders/geometry_shader.glsl: -------------------------------------------------------------------------------- 1 | /*****************************************************************************\ 2 | 3 | spine_test_common.glsl 4 | Author: Forrester Cole (fcole@cs.princeton.edu) 5 | Copyright (c) 2009 Forrester Cole 6 | 7 | Common routines for spine test visibility (algorithm 1). 8 | 9 | libnpr is distributed under the terms of the GNU General Public License. 10 | See the COPYING file for details. 11 | 12 | \*****************************************************************************/ 13 | 14 | #extension GL_EXT_geometry_shader4 : enable 15 | -------------------------------------------------------------------------------- /libnpr/shaders/stroke_render_spine.vert: -------------------------------------------------------------------------------- 1 | /*****************************************************************************\ 2 | 3 | stroke_render_spine.vert 4 | Author: Forrester Cole (fcole@cs.princeton.edu) 5 | Copyright (c) 2009 Forrester Cole 6 | 7 | Simple vertex shader for spine-test visibility stroke rendering. 8 | 9 | libnpr is distributed under the terms of the GNU General Public License. 10 | See the COPYING file for details. 11 | 12 | \*****************************************************************************/ 13 | 14 | void main() { 15 | 16 | gl_TexCoord[0] = gl_MultiTexCoord0; 17 | gl_Position = gl_Vertex; 18 | } 19 | -------------------------------------------------------------------------------- /libnpr/shaders/version.glsl: -------------------------------------------------------------------------------- 1 | #version 120 2 | #extension GL_ARB_texture_rectangle : enable 3 | -------------------------------------------------------------------------------- /qglviewer/qglviewer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/qglviewer/qglviewer.icns -------------------------------------------------------------------------------- /qglviewer/qglviewer_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/qglviewer/qglviewer_fr.qm -------------------------------------------------------------------------------- /qviewer/src/icons.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icons/forward.xpm 4 | icons/play.xpm 5 | icons/rewind.xpm 6 | icons/stop.xpm 7 | icons/pause.xpm 8 | 9 | 10 | -------------------------------------------------------------------------------- /qviewer/src/icons/forward.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static const char *const familiar_forwardb16x16_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " .. ... ", 9 | " ... ... ", 10 | " .... ... ", 11 | " ..... ... ", 12 | " ......... ", 13 | " ......... ", 14 | " ......... ", 15 | " ..... ... ", 16 | " .... ... ", 17 | " ... ... ", 18 | " .. ... ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /qviewer/src/icons/pause.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static const char *const familiar_pauseb16x16_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " .... .... ", 9 | " .... .... ", 10 | " .... .... ", 11 | " .... .... ", 12 | " .... .... ", 13 | " .... .... ", 14 | " .... .... ", 15 | " .... .... ", 16 | " .... .... ", 17 | " .... .... ", 18 | " .... .... ", 19 | " .... .... ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /qviewer/src/icons/play.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static const char *const familiar_playb16x16_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " .. ", 9 | " .... ", 10 | " ...... ", 11 | " ........ ", 12 | " .......... ", 13 | " ........... ", 14 | " ........... ", 15 | " .......... ", 16 | " ........ ", 17 | " ...... ", 18 | " .... ", 19 | " .. ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /qviewer/src/icons/rewind.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static const char *const familiar_rewindb16x16_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " ... .. ", 9 | " ... ... ", 10 | " ... .... ", 11 | " ... ..... ", 12 | " ......... ", 13 | " ......... ", 14 | " ......... ", 15 | " ... ..... ", 16 | " ... .... ", 17 | " ... ... ", 18 | " ... .. ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /qviewer/src/icons/stop.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static const char *const familiar_stopb16x16_xpm[] = { 3 | "16 16 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " ", 9 | " ........ ", 10 | " ........ ", 11 | " ........ ", 12 | " ........ ", 13 | " ........ ", 14 | " ........ ", 15 | " ........ ", 16 | " ........ ", 17 | " ........ ", 18 | " ........ ", 19 | " ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /samples/models/lemming.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/models/lemming.ply -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | bumpN001.png 3 | bumpN002.png 4 | bumpN003.png 5 | bumpN004.png 6 | bumpN005.png 7 | bumpN006.png 8 | bumpN007.png 9 | bumpN008.png 10 | bumpN009.png 11 | bumpN010.png 12 | bumpN011.png 13 | bumpN012.png 14 | bumpN013.png 15 | bumpN014.png 16 | bumpN015.png 17 | bumpN016.png 18 | bumpN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | bumpT001.png 3 | bumpT002.png 4 | bumpT003.png 5 | bumpT004.png 6 | bumpT005.png 7 | bumpT006.png 8 | bumpT007.png 9 | bumpT008.png 10 | bumpT009.png 11 | bumpT010.png 12 | bumpT011.png 13 | bumpT012.png 14 | bumpT013.png 15 | bumpT014.png 16 | bumpT015.png 17 | bumpT016.png 18 | bumpT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/bump/bumpT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/bump/bumpT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | innerN001.png 3 | innerN002.png 4 | innerN003.png 5 | innerN004.png 6 | innerN005.png 7 | innerN006.png 8 | innerN007.png 9 | innerN008.png 10 | innerN009.png 11 | innerN010.png 12 | innerN011.png 13 | innerN012.png 14 | innerN013.png 15 | innerN014.png 16 | innerN015.png 17 | innerN016.png 18 | innerN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | innerT001.png 3 | innerT002.png 4 | innerT003.png 5 | innerT004.png 6 | innerT005.png 7 | innerT006.png 8 | innerT007.png 9 | innerT008.png 10 | innerT009.png 11 | innerT010.png 12 | innerT011.png 13 | innerT012.png 14 | innerT013.png 15 | innerT014.png 16 | innerT015.png 17 | innerT016.png 18 | innerT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/inner/innerT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/inner/innerT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | lowhillN001.png 3 | lowhillN002.png 4 | lowhillN003.png 5 | lowhillN004.png 6 | lowhillN005.png 7 | lowhillN006.png 8 | lowhillN007.png 9 | lowhillN008.png 10 | lowhillN009.png 11 | lowhillN010.png 12 | lowhillN011.png 13 | lowhillN012.png 14 | lowhillN013.png 15 | lowhillN014.png 16 | lowhillN015.png 17 | lowhillN016.png 18 | lowhillN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | lowhillT001.png 3 | lowhillT002.png 4 | lowhillT003.png 5 | lowhillT004.png 6 | lowhillT005.png 7 | lowhillT006.png 8 | lowhillT007.png 9 | lowhillT008.png 10 | lowhillT009.png 11 | lowhillT010.png 12 | lowhillT011.png 13 | lowhillT012.png 14 | lowhillT013.png 15 | lowhillT014.png 16 | lowhillT015.png 17 | lowhillT016.png 18 | lowhillT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/lowhill/lowhillT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/lowhill/lowhillT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/none/none.3dt: -------------------------------------------------------------------------------- 1 | 1 2 | none.png 3 | -------------------------------------------------------------------------------- /samples/offsets/artMap/none/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/none/none.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | offset1N001.png 3 | offset1N002.png 4 | offset1N003.png 5 | offset1N004.png 6 | offset1N005.png 7 | offset1N006.png 8 | offset1N007.png 9 | offset1N008.png 10 | offset1N009.png 11 | offset1N010.png 12 | offset1N011.png 13 | offset1N012.png 14 | offset1N013.png 15 | offset1N014.png 16 | offset1N015.png 17 | offset1N016.png 18 | offset1N017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1N017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1N017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | offset1T001.png 3 | offset1T002.png 4 | offset1T003.png 5 | offset1T004.png 6 | offset1T005.png 7 | offset1T006.png 8 | offset1T007.png 9 | offset1T008.png 10 | offset1T009.png 11 | offset1T010.png 12 | offset1T011.png 13 | offset1T012.png 14 | offset1T013.png 15 | offset1T014.png 16 | offset1T015.png 17 | offset1T016.png 18 | offset1T017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/offset1/offset1T017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/offset1/offset1T017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | semiCircleN001.png 3 | semiCircleN002.png 4 | semiCircleN003.png 5 | semiCircleN004.png 6 | semiCircleN005.png 7 | semiCircleN006.png 8 | semiCircleN007.png 9 | semiCircleN008.png 10 | semiCircleN009.png 11 | semiCircleN010.png 12 | semiCircleN011.png 13 | semiCircleN012.png 14 | semiCircleN013.png 15 | semiCircleN014.png 16 | semiCircleN015.png 17 | semiCircleN016.png 18 | semiCircleN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | semiCircleT001.png 3 | semiCircleT002.png 4 | semiCircleT003.png 5 | semiCircleT004.png 6 | semiCircleT005.png 7 | semiCircleT006.png 8 | semiCircleT007.png 9 | semiCircleT008.png 10 | semiCircleT009.png 11 | semiCircleT010.png 12 | semiCircleT011.png 13 | semiCircleT012.png 14 | semiCircleT013.png 15 | semiCircleT014.png 16 | semiCircleT015.png 17 | semiCircleT016.png 18 | semiCircleT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/semiCircle/semiCircleT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/semiCircle/semiCircleT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | smallLoopN001.png 3 | smallLoopN002.png 4 | smallLoopN003.png 5 | smallLoopN004.png 6 | smallLoopN005.png 7 | smallLoopN006.png 8 | smallLoopN007.png 9 | smallLoopN008.png 10 | smallLoopN009.png 11 | smallLoopN010.png 12 | smallLoopN011.png 13 | smallLoopN012.png 14 | smallLoopN013.png 15 | smallLoopN014.png 16 | smallLoopN015.png 17 | smallLoopN016.png 18 | smallLoopN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | smallLoopT001.png 3 | smallLoopT002.png 4 | smallLoopT003.png 5 | smallLoopT004.png 6 | smallLoopT005.png 7 | smallLoopT006.png 8 | smallLoopT007.png 9 | smallLoopT008.png 10 | smallLoopT009.png 11 | smallLoopT010.png 12 | smallLoopT011.png 13 | smallLoopT012.png 14 | smallLoopT013.png 15 | smallLoopT014.png 16 | smallLoopT015.png 17 | smallLoopT016.png 18 | smallLoopT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop/smallLoopT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop/smallLoopT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | smallLoop1N001.png 3 | smallLoop1N002.png 4 | smallLoop1N003.png 5 | smallLoop1N004.png 6 | smallLoop1N005.png 7 | smallLoop1N006.png 8 | smallLoop1N007.png 9 | smallLoop1N008.png 10 | smallLoop1N009.png 11 | smallLoop1N010.png 12 | smallLoop1N011.png 13 | smallLoop1N012.png 14 | smallLoop1N013.png 15 | smallLoop1N014.png 16 | smallLoop1N015.png 17 | smallLoop1N016.png 18 | smallLoop1N017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N018.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N019.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N020.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N021.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N022.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N023.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N024.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N025.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N026.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N027.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N028.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N029.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N030.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N031.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N032.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1N033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1N033.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | smallLoop1T001.png 3 | smallLoop1T002.png 4 | smallLoop1T003.png 5 | smallLoop1T004.png 6 | smallLoop1T005.png 7 | smallLoop1T006.png 8 | smallLoop1T007.png 9 | smallLoop1T008.png 10 | smallLoop1T009.png 11 | smallLoop1T010.png 12 | smallLoop1T011.png 13 | smallLoop1T012.png 14 | smallLoop1T013.png 15 | smallLoop1T014.png 16 | smallLoop1T015.png 17 | smallLoop1T016.png 18 | smallLoop1T017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T018.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T019.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T020.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T021.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T022.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T023.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T024.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T025.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T026.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T027.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T028.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T029.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T030.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T031.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T032.png -------------------------------------------------------------------------------- /samples/offsets/artMap/smallLoop1/smallLoop1T033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/smallLoop1/smallLoop1T033.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | spikeN001.png 3 | spikeN002.png 4 | spikeN003.png 5 | spikeN004.png 6 | spikeN005.png 7 | spikeN006.png 8 | spikeN007.png 9 | spikeN008.png 10 | spikeN009.png 11 | spikeN010.png 12 | spikeN011.png 13 | spikeN012.png 14 | spikeN013.png 15 | spikeN014.png 16 | spikeN015.png 17 | spikeN016.png 18 | spikeN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | spikeT001.png 3 | spikeT002.png 4 | spikeT003.png 5 | spikeT004.png 6 | spikeT005.png 7 | spikeT006.png 8 | spikeT007.png 9 | spikeT008.png 10 | spikeT009.png 11 | spikeT010.png 12 | spikeT011.png 13 | spikeT012.png 14 | spikeT013.png 15 | spikeT014.png 16 | spikeT015.png 17 | spikeT016.png 18 | spikeT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/spike/spikeT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/spike/spikeT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | triangleN001.png 3 | triangleN002.png 4 | triangleN003.png 5 | triangleN004.png 6 | triangleN005.png 7 | triangleN006.png 8 | triangleN007.png 9 | triangleN008.png 10 | triangleN009.png 11 | triangleN010.png 12 | triangleN011.png 13 | triangleN012.png 14 | triangleN013.png 15 | triangleN014.png 16 | triangleN015.png 17 | triangleN016.png 18 | triangleN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | triangleT001.png 3 | triangleT002.png 4 | triangleT003.png 5 | triangleT004.png 6 | triangleT005.png 7 | triangleT006.png 8 | triangleT007.png 9 | triangleT008.png 10 | triangleT009.png 11 | triangleT010.png 12 | triangleT011.png 13 | triangleT012.png 14 | triangleT013.png 15 | triangleT014.png 16 | triangleT015.png 17 | triangleT016.png 18 | triangleT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/triangle/triangleT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/triangle/triangleT017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | wobbleN001.png 3 | wobbleN002.png 4 | wobbleN003.png 5 | wobbleN004.png 6 | wobbleN005.png 7 | wobbleN006.png 8 | wobbleN007.png 9 | wobbleN008.png 10 | wobbleN009.png 11 | wobbleN010.png 12 | wobbleN011.png 13 | wobbleN012.png 14 | wobbleN013.png 15 | wobbleN014.png 16 | wobbleN015.png 17 | wobbleN016.png 18 | wobbleN017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleN017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleN017.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | wobbleT001.png 3 | wobbleT002.png 4 | wobbleT003.png 5 | wobbleT004.png 6 | wobbleT005.png 7 | wobbleT006.png 8 | wobbleT007.png 9 | wobbleT008.png 10 | wobbleT009.png 11 | wobbleT010.png 12 | wobbleT011.png 13 | wobbleT012.png 14 | wobbleT013.png 15 | wobbleT014.png 16 | wobbleT015.png 17 | wobbleT016.png 18 | wobbleT017.png 19 | -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT001.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT002.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT003.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT004.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT005.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT006.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT007.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT008.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT009.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT010.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT011.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT012.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT013.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT014.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT015.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT016.png -------------------------------------------------------------------------------- /samples/offsets/artMap/wobble/wobbleT017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/offsets/artMap/wobble/wobbleT017.png -------------------------------------------------------------------------------- /samples/offsets/bump.offset: -------------------------------------------------------------------------------- 1 | 2.767199 2 | artMap/bump/bumpT.3dt 3 | artMap/bump/bumpN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/inner.offset: -------------------------------------------------------------------------------- 1 | 3.290853 2 | artMap/inner/innerT.3dt 3 | artMap/inner/innerN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/lowhill.offset: -------------------------------------------------------------------------------- 1 | 3.050242 2 | artMap/lowhill/lowhillT.3dt 3 | artMap/lowhill/lowhillN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/none.offset: -------------------------------------------------------------------------------- 1 | 10 2 | artMap/none/none.3dt 3 | artMap/none/none.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/offset1.offset: -------------------------------------------------------------------------------- 1 | 6.306640 2 | artMap/offset1/offset1T.3dt 3 | artMap/offset1/offset1N.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/semiCircle.offset: -------------------------------------------------------------------------------- 1 | 5.146658 2 | artMap/semiCircle/semiCircleT.3dt 3 | artMap/semiCircle/semiCircleN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/smallLoop.offset: -------------------------------------------------------------------------------- 1 | 15.445422 2 | artMap/smallLoop/smallLoopT.3dt 3 | artMap/smallLoop/smallLoopN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/smallLoop1.offset: -------------------------------------------------------------------------------- 1 | 10.721889 2 | artMap/smallLoop1/smallLoop1T.3dt 3 | artMap/smallLoop1/smallLoop1N.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/spike.offset: -------------------------------------------------------------------------------- 1 | 10.195555 2 | artMap/spike/spikeT.3dt 3 | artMap/spike/spikeN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/triangle.offset: -------------------------------------------------------------------------------- 1 | 5.238822 2 | artMap/triangle/triangleT.3dt 3 | artMap/triangle/triangleN.3dt 4 | -------------------------------------------------------------------------------- /samples/offsets/wobble.offset: -------------------------------------------------------------------------------- 1 | 2.488236 2 | artMap/wobble/wobbleT.3dt 3 | artMap/wobble/wobbleN.3dt 4 | -------------------------------------------------------------------------------- /samples/textures/artmaps/candle001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/candle017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/candle017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/charcoal017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/charcoal017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/dots017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/dots017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/felt017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/felt017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/hairy017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/hairy017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/jumble017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/jumble017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/line017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/line017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scratch2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scratch2017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/scribble017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/scribble017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/slash017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/slash017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wedge017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wedge017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble001.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble002.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble003.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble004.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble005.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble006.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble007.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble008.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble009.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble010.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble011.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble012.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble013.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble014.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble015.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble016.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble017.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble018.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble019.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble020.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble021.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble022.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble023.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble024.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble025.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble026.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble027.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble028.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble029.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble030.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble031.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble032.png -------------------------------------------------------------------------------- /samples/textures/artmaps/wobble033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/artmaps/wobble033.png -------------------------------------------------------------------------------- /samples/textures/candle.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/candle001.png 3 | artmaps/candle002.png 4 | artmaps/candle003.png 5 | artmaps/candle004.png 6 | artmaps/candle005.png 7 | artmaps/candle006.png 8 | artmaps/candle007.png 9 | artmaps/candle008.png 10 | artmaps/candle009.png 11 | artmaps/candle010.png 12 | artmaps/candle011.png 13 | artmaps/candle012.png 14 | artmaps/candle013.png 15 | artmaps/candle014.png 16 | artmaps/candle015.png 17 | artmaps/candle016.png 18 | artmaps/candle017.png 19 | -------------------------------------------------------------------------------- /samples/textures/charcoal.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/charcoal001.png 3 | artmaps/charcoal002.png 4 | artmaps/charcoal003.png 5 | artmaps/charcoal004.png 6 | artmaps/charcoal005.png 7 | artmaps/charcoal006.png 8 | artmaps/charcoal007.png 9 | artmaps/charcoal008.png 10 | artmaps/charcoal009.png 11 | artmaps/charcoal010.png 12 | artmaps/charcoal011.png 13 | artmaps/charcoal012.png 14 | artmaps/charcoal013.png 15 | artmaps/charcoal014.png 16 | artmaps/charcoal015.png 17 | artmaps/charcoal016.png 18 | artmaps/charcoal017.png 19 | -------------------------------------------------------------------------------- /samples/textures/dots.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/dots001.png 3 | artmaps/dots002.png 4 | artmaps/dots003.png 5 | artmaps/dots004.png 6 | artmaps/dots005.png 7 | artmaps/dots006.png 8 | artmaps/dots007.png 9 | artmaps/dots008.png 10 | artmaps/dots009.png 11 | artmaps/dots010.png 12 | artmaps/dots011.png 13 | artmaps/dots012.png 14 | artmaps/dots013.png 15 | artmaps/dots014.png 16 | artmaps/dots015.png 17 | artmaps/dots016.png 18 | artmaps/dots017.png 19 | -------------------------------------------------------------------------------- /samples/textures/felt.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/felt001.png 3 | artmaps/felt002.png 4 | artmaps/felt003.png 5 | artmaps/felt004.png 6 | artmaps/felt005.png 7 | artmaps/felt006.png 8 | artmaps/felt007.png 9 | artmaps/felt008.png 10 | artmaps/felt009.png 11 | artmaps/felt010.png 12 | artmaps/felt011.png 13 | artmaps/felt012.png 14 | artmaps/felt013.png 15 | artmaps/felt014.png 16 | artmaps/felt015.png 17 | artmaps/felt016.png 18 | artmaps/felt017.png 19 | -------------------------------------------------------------------------------- /samples/textures/hairy.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/hairy001.png 3 | artmaps/hairy002.png 4 | artmaps/hairy003.png 5 | artmaps/hairy004.png 6 | artmaps/hairy005.png 7 | artmaps/hairy006.png 8 | artmaps/hairy007.png 9 | artmaps/hairy008.png 10 | artmaps/hairy009.png 11 | artmaps/hairy010.png 12 | artmaps/hairy011.png 13 | artmaps/hairy012.png 14 | artmaps/hairy013.png 15 | artmaps/hairy014.png 16 | artmaps/hairy015.png 17 | artmaps/hairy016.png 18 | artmaps/hairy017.png 19 | -------------------------------------------------------------------------------- /samples/textures/jumble.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/jumble001.png 3 | artmaps/jumble002.png 4 | artmaps/jumble003.png 5 | artmaps/jumble004.png 6 | artmaps/jumble005.png 7 | artmaps/jumble006.png 8 | artmaps/jumble007.png 9 | artmaps/jumble008.png 10 | artmaps/jumble009.png 11 | artmaps/jumble010.png 12 | artmaps/jumble011.png 13 | artmaps/jumble012.png 14 | artmaps/jumble013.png 15 | artmaps/jumble014.png 16 | artmaps/jumble015.png 17 | artmaps/jumble016.png 18 | artmaps/jumble017.png 19 | -------------------------------------------------------------------------------- /samples/textures/line.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/line001.png 3 | artmaps/line002.png 4 | artmaps/line003.png 5 | artmaps/line004.png 6 | artmaps/line005.png 7 | artmaps/line006.png 8 | artmaps/line007.png 9 | artmaps/line008.png 10 | artmaps/line009.png 11 | artmaps/line010.png 12 | artmaps/line011.png 13 | artmaps/line012.png 14 | artmaps/line013.png 15 | artmaps/line014.png 16 | artmaps/line015.png 17 | artmaps/line016.png 18 | artmaps/line017.png 19 | -------------------------------------------------------------------------------- /samples/textures/scratch.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/scratch001.png 3 | artmaps/scratch002.png 4 | artmaps/scratch003.png 5 | artmaps/scratch004.png 6 | artmaps/scratch005.png 7 | artmaps/scratch006.png 8 | artmaps/scratch007.png 9 | artmaps/scratch008.png 10 | artmaps/scratch009.png 11 | artmaps/scratch010.png 12 | artmaps/scratch011.png 13 | artmaps/scratch012.png 14 | artmaps/scratch013.png 15 | artmaps/scratch014.png 16 | artmaps/scratch015.png 17 | artmaps/scratch016.png 18 | artmaps/scratch017.png 19 | -------------------------------------------------------------------------------- /samples/textures/scratch2.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/scratch2001.png 3 | artmaps/scratch2002.png 4 | artmaps/scratch2003.png 5 | artmaps/scratch2004.png 6 | artmaps/scratch2005.png 7 | artmaps/scratch2006.png 8 | artmaps/scratch2007.png 9 | artmaps/scratch2008.png 10 | artmaps/scratch2009.png 11 | artmaps/scratch2010.png 12 | artmaps/scratch2011.png 13 | artmaps/scratch2012.png 14 | artmaps/scratch2013.png 15 | artmaps/scratch2014.png 16 | artmaps/scratch2015.png 17 | artmaps/scratch2016.png 18 | artmaps/scratch2017.png 19 | -------------------------------------------------------------------------------- /samples/textures/scribble.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/scribble001.png 3 | artmaps/scribble002.png 4 | artmaps/scribble003.png 5 | artmaps/scribble004.png 6 | artmaps/scribble005.png 7 | artmaps/scribble006.png 8 | artmaps/scribble007.png 9 | artmaps/scribble008.png 10 | artmaps/scribble009.png 11 | artmaps/scribble010.png 12 | artmaps/scribble011.png 13 | artmaps/scribble012.png 14 | artmaps/scribble013.png 15 | artmaps/scribble014.png 16 | artmaps/scribble015.png 17 | artmaps/scribble016.png 18 | artmaps/scribble017.png 19 | -------------------------------------------------------------------------------- /samples/textures/slash.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/slash001.png 3 | artmaps/slash002.png 4 | artmaps/slash003.png 5 | artmaps/slash004.png 6 | artmaps/slash005.png 7 | artmaps/slash006.png 8 | artmaps/slash007.png 9 | artmaps/slash008.png 10 | artmaps/slash009.png 11 | artmaps/slash010.png 12 | artmaps/slash011.png 13 | artmaps/slash012.png 14 | artmaps/slash013.png 15 | artmaps/slash014.png 16 | artmaps/slash015.png 17 | artmaps/slash016.png 18 | artmaps/slash017.png 19 | -------------------------------------------------------------------------------- /samples/textures/toon/toonBW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benardp/ActiveStrokes/6a9ee261ea65fd7a404a4bd371874d6d3c2d1abd/samples/textures/toon/toonBW.png -------------------------------------------------------------------------------- /samples/textures/wedge.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/wedge001.png 3 | artmaps/wedge002.png 4 | artmaps/wedge003.png 5 | artmaps/wedge004.png 6 | artmaps/wedge005.png 7 | artmaps/wedge006.png 8 | artmaps/wedge007.png 9 | artmaps/wedge008.png 10 | artmaps/wedge009.png 11 | artmaps/wedge010.png 12 | artmaps/wedge011.png 13 | artmaps/wedge012.png 14 | artmaps/wedge013.png 15 | artmaps/wedge014.png 16 | artmaps/wedge015.png 17 | artmaps/wedge016.png 18 | artmaps/wedge017.png 19 | -------------------------------------------------------------------------------- /samples/textures/wobble.3dt: -------------------------------------------------------------------------------- 1 | 17 2 | artmaps/wobble001.png 3 | artmaps/wobble002.png 4 | artmaps/wobble003.png 5 | artmaps/wobble004.png 6 | artmaps/wobble005.png 7 | artmaps/wobble006.png 8 | artmaps/wobble007.png 9 | artmaps/wobble008.png 10 | artmaps/wobble009.png 11 | artmaps/wobble010.png 12 | artmaps/wobble011.png 13 | artmaps/wobble012.png 14 | artmaps/wobble013.png 15 | artmaps/wobble014.png 16 | artmaps/wobble015.png 17 | artmaps/wobble016.png 18 | artmaps/wobble017.png 19 | -------------------------------------------------------------------------------- /trimesh2/trimesh2.pro: -------------------------------------------------------------------------------- 1 | CONFIG += debug_and_release 2 | 3 | CONFIG(release, debug|release) { 4 | DBGNAME = release 5 | } 6 | else { 7 | DBGNAME = debug 8 | } 9 | DESTDIR = $${DBGNAME} 10 | 11 | win32 { 12 | TEMPLATE = vclib 13 | } 14 | else { 15 | TEMPLATE = lib 16 | 17 | macx { 18 | DEFINES += DARWIN 19 | } 20 | else { 21 | DEFINES += LINUX 22 | QMAKE_CXXFLAGS += -fopenmp 23 | } 24 | } 25 | 26 | CONFIG += staticlib 27 | QT += opengl xml 28 | 29 | TARGET = trimesh 30 | 31 | DEPENDPATH += include 32 | INCLUDEPATH += include 33 | 34 | #Input 35 | HEADERS += include/*.h 36 | SOURCES += libsrc/*.cc 37 | --------------------------------------------------------------------------------