├── EXAMPLES.md ├── README.md ├── android ├── android-release.apk ├── assets │ ├── Example saves │ │ ├── Example 1.json │ │ └── Example 2.json │ ├── images │ │ └── backgrounds-light │ │ │ ├── diamond_upholstery_2X.png │ │ │ └── green_cup.png │ ├── sounds │ │ ├── 245645_unfa_cartoon-pop-clean.mp3 │ │ └── Readme.txt │ └── ui │ │ └── custom │ │ ├── ampersand.fnt │ │ ├── custom.atlas │ │ ├── custom.json │ │ ├── custom.png │ │ └── readme.txt ├── res │ ├── drawable-hdpi │ │ └── card_icon.png │ ├── drawable-ldpi │ │ └── card_icon.png │ ├── drawable-mdpi │ │ └── card_icon.png │ └── drawable-xhdpi │ │ └── card_icon.png └── src │ └── org │ └── ams │ └── testapps │ └── android │ └── cardhouse │ └── CardHouse.java ├── core └── src │ └── org │ └── ams │ ├── core │ ├── CameraNavigator.java │ ├── CoordinateHelper.java │ ├── SceneUtil.java │ ├── ScreenShot.java │ ├── Timer.java │ ├── Util.java │ ├── clipper │ │ ├── Clipper.java │ │ ├── ClipperBase.java │ │ ├── ClipperOffset.java │ │ ├── DefaultClipper.java │ │ ├── Edge.java │ │ ├── LongRect.java │ │ ├── Path.java │ │ ├── Paths.java │ │ ├── Point.java │ │ ├── PolyNode.java │ │ ├── PolyTree.java │ │ └── Simplify.java │ └── poly2tri │ │ ├── Poly2Tri.java │ │ ├── geometry │ │ ├── polygon │ │ │ ├── Polygon.java │ │ │ ├── PolygonPoint.java │ │ │ ├── PolygonSet.java │ │ │ └── PolygonUtil.java │ │ └── primitives │ │ │ ├── Edge.java │ │ │ └── Point.java │ │ ├── transform │ │ └── coordinate │ │ │ ├── AnyToXYTransform.java │ │ │ ├── CoordinateTransform.java │ │ │ ├── Matrix3Transform.java │ │ │ ├── NoTransform.java │ │ │ └── XYToAnyTransform.java │ │ └── triangulation │ │ ├── Triangulatable.java │ │ ├── TriangulationAlgorithm.java │ │ ├── TriangulationConstraint.java │ │ ├── TriangulationContext.java │ │ ├── TriangulationDebugContext.java │ │ ├── TriangulationMode.java │ │ ├── TriangulationPoint.java │ │ ├── TriangulationProcessEvent.java │ │ ├── TriangulationProcessListener.java │ │ ├── TriangulationUtil.java │ │ ├── delaunay │ │ ├── DelaunayTriangle.java │ │ └── sweep │ │ │ ├── AdvancingFront.java │ │ │ ├── AdvancingFrontIndex.java │ │ │ ├── AdvancingFrontNode.java │ │ │ ├── DTSweep.java │ │ │ ├── DTSweepConstraint.java │ │ │ ├── DTSweepContext.java │ │ │ ├── DTSweepDebugContext.java │ │ │ ├── DTSweepPointComparator.java │ │ │ └── PointOnEdgeException.java │ │ ├── point │ │ ├── FloatBufferPoint.java │ │ └── TPoint.java │ │ ├── sets │ │ ├── ConstrainedPointSet.java │ │ └── PointSet.java │ │ └── util │ │ ├── PointGenerator.java │ │ ├── PolygonGenerator.java │ │ ├── QuadTreeRefinement.java │ │ ├── Tuple2.java │ │ └── Tuple3.java │ ├── paintandphysics │ ├── things │ │ ├── PPBasic.java │ │ ├── PPCircle.java │ │ ├── PPPolygon.java │ │ ├── PPThing.java │ │ ├── PPThingDef.java │ │ └── PPWithBody.java │ └── world │ │ ├── PPWorld.java │ │ └── PPWorldDef.java │ ├── physics │ ├── things │ │ ├── AbstractJoint.java │ │ ├── AbstractThing.java │ │ ├── AbstractThingWithBody.java │ │ ├── Circle.java │ │ ├── Hinge.java │ │ ├── JointThing.java │ │ ├── Polygon.java │ │ ├── Rope.java │ │ ├── Thing.java │ │ ├── ThingWithBody.java │ │ ├── Weld.java │ │ └── def │ │ │ ├── CircleDef.java │ │ │ ├── DefParser.java │ │ │ ├── HingeDef.java │ │ │ ├── JointThingDef.java │ │ │ ├── PolygonDef.java │ │ │ ├── RopeDef.java │ │ │ ├── ThingDef.java │ │ │ ├── ThingWithBodyDef.java │ │ │ └── WeldDef.java │ ├── tools │ │ └── BodyMover.java │ └── world │ │ ├── BoxWorld.java │ │ ├── WorldUtil.java │ │ └── def │ │ └── BoxWorldDef.java │ ├── prettypaint │ ├── DebugRenderer.java │ ├── OutlineMerger.java │ ├── OutlinePolygon.java │ ├── PrettyPolygon.java │ ├── PrettyPolygonBatch.java │ ├── SaveAsPng.java │ ├── Shader.java │ ├── TextureAligner.java │ ├── TexturePolygon.java │ └── def │ │ ├── DefParser.java │ │ ├── OutlinePolygonDef.java │ │ ├── PrettyPolygonDef.java │ │ └── TexturePolygonDef.java │ └── testapps │ ├── paintandphysics │ ├── FallingBoxes.java │ ├── cardhouse │ │ ├── Background.java │ │ ├── CardHouse.java │ │ ├── CardHouseDef.java │ │ ├── CardHouseGameMenu.java │ │ ├── CardHouseWithGUI.java │ │ ├── CardMover.java │ │ ├── Tips.java │ │ └── TurnCircle.java │ └── physicspuzzle │ │ ├── PhysicsPuzzle.java │ │ ├── PhysicsPuzzleDef.java │ │ └── PhysicsPuzzleGameMenu.java │ └── prettypaint │ ├── CircleAndBackground.java │ ├── JaggedPolygon.java │ ├── SaveThingAsPng.java │ ├── TextureAlignmentTest.java │ └── TextureAlignmentTest2.java ├── desktop └── src │ └── org │ └── ams │ └── testapps │ └── desktop │ └── DesktopLauncher.java ├── device-2015-11-30-132216.png ├── device-2015-11-30-132616.png ├── device-2015-11-30-132720.png ├── html └── src │ └── org │ └── ams │ └── testapps │ ├── GdxDefinition.gwt.xml │ ├── GdxDefinitionSuperdev.gwt.xml │ └── client │ └── HtmlLauncher.java └── resource archive ├── ampersand.fnt ├── ampersand.png ├── ampersand.ttf ├── custom ui textures ├── Roboto-Thin-hdpi.png ├── ampersand.png ├── btn_check_off.png ├── btn_check_on.png ├── btn_check_on_focused.png ├── btn_default_disabled.9.png ├── btn_default_focused.9.png ├── btn_default_normal.9.png ├── btn_default_pressed.9.png ├── btn_radio_off.png ├── btn_radio_on.png ├── btn_radio_on_focused.png ├── btn_toggle_off_disabled.9.png ├── btn_toggle_off_focused.9.png ├── btn_toggle_off_normal.9.png ├── btn_toggle_on_focused.9.png ├── btn_toggle_on_normal.9.png ├── btn_toggle_on_pressed.9.png ├── gray.png ├── icon-blitz.png ├── icon-blitz_pressed.png ├── scroll.9.png ├── scroll_corner.9.png ├── scroll_horizontal.9.png ├── scroll_horizontal_knob.9.png ├── scroll_opaque.9.png ├── scroll_vertical.9.png ├── scroll_vertical_knob.9.png ├── scrubber_control_normal.png ├── scrubber_primary.9.png ├── scrubber_secondary.9.png ├── scrubber_track.9.png ├── scrubber_vertical_primary.9.png ├── scrubber_vertical_secondary.9.png ├── scrubber_vertical_track.9.png ├── spinner_default.9.png ├── spinner_focused.9.png ├── spinner_pressed.9.png ├── splitpane_horizontal.9.png ├── splitpane_vertical.9.png ├── text.9.png ├── text_focused.9.png ├── text_focused_opaque.9.png ├── text_opaque.9.png ├── text_selected.9.png ├── text_selected_opaque.9.png ├── textfield_cursor.9.png ├── textfield_default.9.png ├── textfield_disabled.9.png ├── textfield_focused.9.png ├── textfield_selection.png ├── tree_minus.png ├── tree_plus.png ├── white_pixel.png └── window.9.png ├── goat maybe.pdn └── puzzles ├── stockvault.com ├── Readme.txt ├── cats and dogs │ ├── stockvault-a-dog-and-his-mother102648.jpg │ ├── stockvault-cat122222.jpg │ ├── stockvault-curious-cat126445.jpg │ ├── stockvault-cute-golden-retriever110974.jpg │ ├── stockvault-dachshun103093.jpg │ ├── stockvault-we-three-cats99762.jpg │ └── stockvault-white-shepherd-dog130998.jpg ├── farm │ ├── stockvault-cow131648.jpg │ └── stockvault-happy-pig-116804.jpg ├── stockvault-parrot-eating-mango114897.jpg ├── stockvault-small-frog114931.jpg ├── stockvault-squirrel111065.jpg └── stockvault-turtle114902.jpg └── unsplash.com ├── cats and dogs ├── 3 puppies.jpg ├── cat with glasses.jpg ├── cat.jpg ├── catcat.jpg ├── dog in car.jpg ├── dog.jpg ├── dog2.jpg ├── leopard.jpg ├── lion yawn.jpg ├── puppy with ball.jpg ├── sleepy cat.jpg ├── small dog.jpg └── small dog2.jpg ├── cow.jpg ├── foxi.jpg ├── goat maybe.jpg ├── hamster.jpg ├── horses ├── brown horse.jpg ├── horse1.jpg └── white horse.jpg ├── lion in tree.jpg ├── mini fox.jpg ├── mini monkey.jpg ├── red squirrel.jpg ├── reindeer.jpg ├── rhino.jpg ├── squirrel.jpg ├── swan.jpg ├── tiger.jpg ├── tiny foxi.jpg ├── trash panda.jpg └── tree eater.jpg /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/README.md -------------------------------------------------------------------------------- /android/android-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/android-release.apk -------------------------------------------------------------------------------- /android/assets/Example saves/Example 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/Example saves/Example 1.json -------------------------------------------------------------------------------- /android/assets/Example saves/Example 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/Example saves/Example 2.json -------------------------------------------------------------------------------- /android/assets/images/backgrounds-light/diamond_upholstery_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/images/backgrounds-light/diamond_upholstery_2X.png -------------------------------------------------------------------------------- /android/assets/images/backgrounds-light/green_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/images/backgrounds-light/green_cup.png -------------------------------------------------------------------------------- /android/assets/sounds/245645_unfa_cartoon-pop-clean.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/sounds/245645_unfa_cartoon-pop-clean.mp3 -------------------------------------------------------------------------------- /android/assets/sounds/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/sounds/Readme.txt -------------------------------------------------------------------------------- /android/assets/ui/custom/ampersand.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/ui/custom/ampersand.fnt -------------------------------------------------------------------------------- /android/assets/ui/custom/custom.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/ui/custom/custom.atlas -------------------------------------------------------------------------------- /android/assets/ui/custom/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/ui/custom/custom.json -------------------------------------------------------------------------------- /android/assets/ui/custom/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/ui/custom/custom.png -------------------------------------------------------------------------------- /android/assets/ui/custom/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/assets/ui/custom/readme.txt -------------------------------------------------------------------------------- /android/res/drawable-hdpi/card_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/res/drawable-hdpi/card_icon.png -------------------------------------------------------------------------------- /android/res/drawable-ldpi/card_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/res/drawable-ldpi/card_icon.png -------------------------------------------------------------------------------- /android/res/drawable-mdpi/card_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/res/drawable-mdpi/card_icon.png -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/card_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/res/drawable-xhdpi/card_icon.png -------------------------------------------------------------------------------- /android/src/org/ams/testapps/android/cardhouse/CardHouse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/android/src/org/ams/testapps/android/cardhouse/CardHouse.java -------------------------------------------------------------------------------- /core/src/org/ams/core/CameraNavigator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/CameraNavigator.java -------------------------------------------------------------------------------- /core/src/org/ams/core/CoordinateHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/CoordinateHelper.java -------------------------------------------------------------------------------- /core/src/org/ams/core/SceneUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/SceneUtil.java -------------------------------------------------------------------------------- /core/src/org/ams/core/ScreenShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/ScreenShot.java -------------------------------------------------------------------------------- /core/src/org/ams/core/Timer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/Timer.java -------------------------------------------------------------------------------- /core/src/org/ams/core/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/Util.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/Clipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/Clipper.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/ClipperBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/ClipperBase.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/ClipperOffset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/ClipperOffset.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/DefaultClipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/DefaultClipper.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/Edge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/Edge.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/LongRect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/LongRect.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/Path.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/Path.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/Paths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/Paths.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/Point.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/PolyNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/PolyNode.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/PolyTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/PolyTree.java -------------------------------------------------------------------------------- /core/src/org/ams/core/clipper/Simplify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/clipper/Simplify.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/Poly2Tri.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/Poly2Tri.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/geometry/polygon/Polygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/geometry/polygon/Polygon.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/geometry/polygon/PolygonPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/geometry/polygon/PolygonPoint.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/geometry/polygon/PolygonSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/geometry/polygon/PolygonSet.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/geometry/polygon/PolygonUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/geometry/polygon/PolygonUtil.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/geometry/primitives/Edge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/geometry/primitives/Edge.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/geometry/primitives/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/geometry/primitives/Point.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/transform/coordinate/AnyToXYTransform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/transform/coordinate/AnyToXYTransform.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/transform/coordinate/CoordinateTransform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/transform/coordinate/CoordinateTransform.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/transform/coordinate/Matrix3Transform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/transform/coordinate/Matrix3Transform.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/transform/coordinate/NoTransform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/transform/coordinate/NoTransform.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/transform/coordinate/XYToAnyTransform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/transform/coordinate/XYToAnyTransform.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/Triangulatable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/Triangulatable.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationAlgorithm.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationConstraint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationConstraint.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationContext.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationDebugContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationDebugContext.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationMode.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationPoint.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationProcessEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationProcessEvent.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationProcessListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationProcessListener.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/TriangulationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/TriangulationUtil.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/DelaunayTriangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/DelaunayTriangle.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/AdvancingFront.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/AdvancingFront.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/AdvancingFrontIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/AdvancingFrontIndex.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/AdvancingFrontNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/AdvancingFrontNode.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweep.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepConstraint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepConstraint.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepContext.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepDebugContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepDebugContext.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepPointComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/DTSweepPointComparator.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/PointOnEdgeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/delaunay/sweep/PointOnEdgeException.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/point/FloatBufferPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/point/FloatBufferPoint.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/point/TPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/point/TPoint.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/sets/ConstrainedPointSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/sets/ConstrainedPointSet.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/sets/PointSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/sets/PointSet.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/util/PointGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/util/PointGenerator.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/util/PolygonGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/util/PolygonGenerator.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/util/QuadTreeRefinement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/util/QuadTreeRefinement.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/util/Tuple2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/util/Tuple2.java -------------------------------------------------------------------------------- /core/src/org/ams/core/poly2tri/triangulation/util/Tuple3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/core/poly2tri/triangulation/util/Tuple3.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/things/PPBasic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/things/PPBasic.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/things/PPCircle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/things/PPCircle.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/things/PPPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/things/PPPolygon.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/things/PPThing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/things/PPThing.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/things/PPThingDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/things/PPThingDef.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/things/PPWithBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/things/PPWithBody.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/world/PPWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/world/PPWorld.java -------------------------------------------------------------------------------- /core/src/org/ams/paintandphysics/world/PPWorldDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/paintandphysics/world/PPWorldDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/AbstractJoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/AbstractJoint.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/AbstractThing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/AbstractThing.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/AbstractThingWithBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/AbstractThingWithBody.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/Circle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/Circle.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/Hinge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/Hinge.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/JointThing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/JointThing.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/Polygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/Polygon.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/Rope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/Rope.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/Thing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/Thing.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/ThingWithBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/ThingWithBody.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/Weld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/Weld.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/CircleDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/CircleDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/DefParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/DefParser.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/HingeDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/HingeDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/JointThingDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/JointThingDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/PolygonDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/PolygonDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/RopeDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/RopeDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/ThingDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/ThingDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/ThingWithBodyDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/ThingWithBodyDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/things/def/WeldDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/things/def/WeldDef.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/tools/BodyMover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/tools/BodyMover.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/world/BoxWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/world/BoxWorld.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/world/WorldUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/world/WorldUtil.java -------------------------------------------------------------------------------- /core/src/org/ams/physics/world/def/BoxWorldDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/physics/world/def/BoxWorldDef.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/DebugRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/DebugRenderer.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/OutlineMerger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/OutlineMerger.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/OutlinePolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/OutlinePolygon.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/PrettyPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/PrettyPolygon.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/PrettyPolygonBatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/PrettyPolygonBatch.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/SaveAsPng.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/SaveAsPng.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/Shader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/Shader.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/TextureAligner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/TextureAligner.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/TexturePolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/TexturePolygon.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/def/DefParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/def/DefParser.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/def/OutlinePolygonDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/def/OutlinePolygonDef.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/def/PrettyPolygonDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/def/PrettyPolygonDef.java -------------------------------------------------------------------------------- /core/src/org/ams/prettypaint/def/TexturePolygonDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/prettypaint/def/TexturePolygonDef.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/FallingBoxes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/FallingBoxes.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/Background.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/Background.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouse.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouseDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouseDef.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouseGameMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouseGameMenu.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouseWithGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/CardHouseWithGUI.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/CardMover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/CardMover.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/Tips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/Tips.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/cardhouse/TurnCircle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/cardhouse/TurnCircle.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/physicspuzzle/PhysicsPuzzle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/physicspuzzle/PhysicsPuzzle.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/physicspuzzle/PhysicsPuzzleDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/physicspuzzle/PhysicsPuzzleDef.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/paintandphysics/physicspuzzle/PhysicsPuzzleGameMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/paintandphysics/physicspuzzle/PhysicsPuzzleGameMenu.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/prettypaint/CircleAndBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/prettypaint/CircleAndBackground.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/prettypaint/JaggedPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/prettypaint/JaggedPolygon.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/prettypaint/SaveThingAsPng.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/prettypaint/SaveThingAsPng.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/prettypaint/TextureAlignmentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/prettypaint/TextureAlignmentTest.java -------------------------------------------------------------------------------- /core/src/org/ams/testapps/prettypaint/TextureAlignmentTest2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/core/src/org/ams/testapps/prettypaint/TextureAlignmentTest2.java -------------------------------------------------------------------------------- /desktop/src/org/ams/testapps/desktop/DesktopLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/desktop/src/org/ams/testapps/desktop/DesktopLauncher.java -------------------------------------------------------------------------------- /device-2015-11-30-132216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/device-2015-11-30-132216.png -------------------------------------------------------------------------------- /device-2015-11-30-132616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/device-2015-11-30-132616.png -------------------------------------------------------------------------------- /device-2015-11-30-132720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/device-2015-11-30-132720.png -------------------------------------------------------------------------------- /html/src/org/ams/testapps/GdxDefinition.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/html/src/org/ams/testapps/GdxDefinition.gwt.xml -------------------------------------------------------------------------------- /html/src/org/ams/testapps/GdxDefinitionSuperdev.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/html/src/org/ams/testapps/GdxDefinitionSuperdev.gwt.xml -------------------------------------------------------------------------------- /html/src/org/ams/testapps/client/HtmlLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/html/src/org/ams/testapps/client/HtmlLauncher.java -------------------------------------------------------------------------------- /resource archive/ampersand.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/ampersand.fnt -------------------------------------------------------------------------------- /resource archive/ampersand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/ampersand.png -------------------------------------------------------------------------------- /resource archive/ampersand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/ampersand.ttf -------------------------------------------------------------------------------- /resource archive/custom ui textures/Roboto-Thin-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/Roboto-Thin-hdpi.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/ampersand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/ampersand.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_check_off.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_check_on.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_check_on_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_check_on_focused.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_default_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_default_disabled.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_default_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_default_focused.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_default_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_default_normal.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_default_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_default_pressed.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_radio_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_radio_off.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_radio_on.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_radio_on_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_radio_on_focused.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_toggle_off_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_toggle_off_disabled.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_toggle_off_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_toggle_off_focused.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_toggle_off_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_toggle_off_normal.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_toggle_on_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_toggle_on_focused.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_toggle_on_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_toggle_on_normal.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/btn_toggle_on_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/btn_toggle_on_pressed.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/gray.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/icon-blitz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/icon-blitz.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/icon-blitz_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/icon-blitz_pressed.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll_corner.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll_corner.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll_horizontal.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll_horizontal_knob.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll_horizontal_knob.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll_opaque.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll_opaque.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll_vertical.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll_vertical.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scroll_vertical_knob.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scroll_vertical_knob.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_control_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_control_normal.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_primary.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_primary.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_secondary.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_secondary.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_track.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_track.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_vertical_primary.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_vertical_primary.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_vertical_secondary.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_vertical_secondary.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/scrubber_vertical_track.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/scrubber_vertical_track.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/spinner_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/spinner_default.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/spinner_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/spinner_focused.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/spinner_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/spinner_pressed.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/splitpane_horizontal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/splitpane_horizontal.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/splitpane_vertical.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/splitpane_vertical.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/text.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/text.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/text_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/text_focused.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/text_focused_opaque.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/text_focused_opaque.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/text_opaque.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/text_opaque.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/text_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/text_selected.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/text_selected_opaque.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/text_selected_opaque.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/textfield_cursor.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/textfield_cursor.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/textfield_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/textfield_default.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/textfield_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/textfield_disabled.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/textfield_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/textfield_focused.9.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/textfield_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/textfield_selection.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/tree_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/tree_minus.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/tree_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/tree_plus.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/white_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/white_pixel.png -------------------------------------------------------------------------------- /resource archive/custom ui textures/window.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/custom ui textures/window.9.png -------------------------------------------------------------------------------- /resource archive/goat maybe.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/goat maybe.pdn -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/Readme.txt: -------------------------------------------------------------------------------- 1 | Copyright free images found at http://www.stockvault.net/ -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-a-dog-and-his-mother102648.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-a-dog-and-his-mother102648.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-cat122222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-cat122222.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-curious-cat126445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-curious-cat126445.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-cute-golden-retriever110974.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-cute-golden-retriever110974.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-dachshun103093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-dachshun103093.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-we-three-cats99762.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-we-three-cats99762.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/cats and dogs/stockvault-white-shepherd-dog130998.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/cats and dogs/stockvault-white-shepherd-dog130998.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/farm/stockvault-cow131648.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/farm/stockvault-cow131648.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/farm/stockvault-happy-pig-116804.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/farm/stockvault-happy-pig-116804.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/stockvault-parrot-eating-mango114897.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/stockvault-parrot-eating-mango114897.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/stockvault-small-frog114931.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/stockvault-small-frog114931.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/stockvault-squirrel111065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/stockvault-squirrel111065.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/stockvault.com/stockvault-turtle114902.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/stockvault.com/stockvault-turtle114902.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/3 puppies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/3 puppies.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/cat with glasses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/cat with glasses.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/cat.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/catcat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/catcat.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/dog in car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/dog in car.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/dog.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/dog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/dog2.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/leopard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/leopard.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/lion yawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/lion yawn.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/puppy with ball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/puppy with ball.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/sleepy cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/sleepy cat.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/small dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/small dog.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cats and dogs/small dog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cats and dogs/small dog2.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/cow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/cow.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/foxi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/foxi.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/goat maybe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/goat maybe.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/hamster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/hamster.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/horses/brown horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/horses/brown horse.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/horses/horse1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/horses/horse1.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/horses/white horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/horses/white horse.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/lion in tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/lion in tree.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/mini fox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/mini fox.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/mini monkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/mini monkey.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/red squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/red squirrel.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/reindeer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/reindeer.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/rhino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/rhino.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/squirrel.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/swan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/swan.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/tiger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/tiger.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/tiny foxi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/tiny foxi.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/trash panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/trash panda.jpg -------------------------------------------------------------------------------- /resource archive/puzzles/unsplash.com/tree eater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korkemoms/PrettyPaint/HEAD/resource archive/puzzles/unsplash.com/tree eater.jpg --------------------------------------------------------------------------------