{"id":13650824,"url":"https://github.com/ralphcrutzen/AxiTurtle","last_synced_at":"2025-04-22T18:32:41.867Z","repository":{"id":91336511,"uuid":"130847090","full_name":"ralphcrutzen/AxiTurtle","owner":"ralphcrutzen","description":"Program AxiDraw with turtle graphics commands in Processing","archived":false,"fork":false,"pushed_at":"2018-04-25T09:33:55.000Z","size":407,"stargazers_count":15,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-18T03:36:23.962Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Processing","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ralphcrutzen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2018-04-24T11:58:20.000Z","updated_at":"2024-09-07T20:54:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"f3b68523-315a-4d56-96e1-881d1c291a74","html_url":"https://github.com/ralphcrutzen/AxiTurtle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphcrutzen%2FAxiTurtle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphcrutzen%2FAxiTurtle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphcrutzen%2FAxiTurtle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphcrutzen%2FAxiTurtle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ralphcrutzen","download_url":"https://codeload.github.com/ralphcrutzen/AxiTurtle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250297572,"owners_count":21407241,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T02:00:41.361Z","updated_at":"2025-04-22T18:32:41.568Z","avatar_url":"https://github.com/ralphcrutzen.png","language":"Processing","funding_links":[],"categories":["Software"],"sub_categories":["Plotter Control"],"readme":"# AxiTurtle\n\nAn easy way to program AxiDraw and preview your drawing.\nIncluding turtle graphics commands!\n\nRequirements to run application:\n* Sun Java Runtime 6, installed on your system\n\nAdditional requirements to run from source code:\n* Processing 3 (Download from: http://processing.org/download/  )\n* Ani library ( http://www.looksgood.de/libraries/Ani/ )\n\nBased on EvilMadScientist's AxiGen example, hiding it's complexity,\nbut providing an easy (turtle graphics) programming interface.\nhttps://github.com/evil-mad/AxiDraw-Processing\n\nBased RoboPaint RT: \nhttps://github.com/evil-mad/robopaint-rt\n\nTurtle graphics commands are based on \"Laser Turtle\":\nhttps://forresto.github.io/turtle-svg/\n \nThe turtle starts in the upper left corner facing right.\nAngles: 0 is right, 1/4 is up, 1/2 is left, 3/4 is down\n\n## Pen commands\n```java\npenUp(); // Shortcut u()\npenDown(); // d()\n```\n\n## Relative move\n```java\nmoveForward(distance); // f()\n```\n\n## Relative turns\n```java\nturnRight(angle); // r()\nturnLeft(angle); // l()\n```\n\n## Absolute turns\n```java\nturnTo(angle); // t()\n```\nAngles for turn commands are 0.0 to 1.0\n```java\nturnRight(1/4); // Turn right 90º\nturnLeft(1/360); // Turn left 1º\n```\n\n## Move (pen not drawing) and line (drawing)\n### Relative\n```java\nmoveBy(x, y); \nlineBy(x, y);\n```\n### Absolute\n```java\nmoveTo(x, y); \nlineTo(x, y);\nline(x1, y1, x2, y2);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralphcrutzen%2FAxiTurtle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fralphcrutzen%2FAxiTurtle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralphcrutzen%2FAxiTurtle/lists"}