{"id":21083731,"url":"https://github.com/tgfrerer/ofxskeleton","last_synced_at":"2025-10-10T22:32:57.332Z","repository":{"id":11529675,"uuid":"14013533","full_name":"tgfrerer/ofxSkeleton","owner":"tgfrerer","description":"ofxAddon to ease the woe of skeletal animation in openFrameworks","archived":false,"fork":false,"pushed_at":"2013-10-31T10:15:22.000Z","size":4172,"stargazers_count":30,"open_issues_count":0,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-10T22:32:24.618Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","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/tgfrerer.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}},"created_at":"2013-10-31T10:14:20.000Z","updated_at":"2024-12-27T22:29:57.000Z","dependencies_parsed_at":"2022-08-31T06:01:20.232Z","dependency_job_id":null,"html_url":"https://github.com/tgfrerer/ofxSkeleton","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tgfrerer/ofxSkeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgfrerer%2FofxSkeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgfrerer%2FofxSkeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgfrerer%2FofxSkeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgfrerer%2FofxSkeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tgfrerer","download_url":"https://codeload.github.com/tgfrerer/ofxSkeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgfrerer%2FofxSkeleton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005463,"owners_count":26083902,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-11-19T20:19:41.084Z","updated_at":"2025-10-10T22:32:57.314Z","avatar_url":"https://github.com/tgfrerer.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\t   _____    ___     \n\t  /    /   /  /     ofxSkeleton\n\t /  __/ * /  /__    (c) ponies \u0026 light, 2012, 2013. All rights reserved.\n\t/__/     /_____/    poniesandlight.co.uk\n\n\tCreated by tim on 12/11/2012.\n\n\tPermission is hereby granted, free of charge, to any person obtaining a copy\n\tof this software and associated documentation files (the \"Software\"), to deal\n\tin the Software without restriction, including without limitation the rights\n\tto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n\tcopies of the Software, and to permit persons to whom the Software is\n\tfurnished to do so, subject to the following conditions:\n\n\tThe above copyright notice and this permission notice shall be included in\n\tall copies or substantial portions of the Software.\n\n\tTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\tIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\tFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n\tAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n\tLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n\tOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n\tTHE SOFTWARE.\n\n# ofxSkeleton\n\n## Description\n\nThis addon allows you to build (and debug-draw) skeleton structures, useful for skeletal animation and skinning. \n\n## Use case:\n\n\ttypedef shared_ptr\u003cpal::ofxSkeleton::ofxJoint\u003e  JointP_t;\n\t\t\n\tfor (int i = 0; i \u003c 4; i++){\n\t\tmSkeleton.push_back(JointP_t(new ofxJoint));\n\t}\n\t\n\tmFoot\t= mSkeleton[0];\n\tmKnee\t= mSkeleton[1];\n\tmHip\t= mSkeleton[2];\n\tmRoot\t= mSkeleton[3];\n\n\tmFoot-\u003esetName(\"Foot\");\n\tmKnee-\u003esetName(\"Knee\");\n\tmHip-\u003esetName(\"Hip\");\n\tmRoot-\u003esetName(\"Root\");\n\n\t// build skeleton based on joints.\n\t// this applies a hierarchy, and allows you to set children \n\t// bones' offsets relative to their parent's.\n\t\n\tmFoot-\u003ebone(mKnee)-\u003ebone(mHip)-\u003ebone(mRoot);\n\n\tmRoot-\u003esetGlobalPosition(ofVec3f(0));\n\t\n\tmHip-\u003esetGlobalPosition(ofVec3f(0,100,0));\n\tmKnee-\u003esetGlobalPosition(ofVec3f(0,50,0));\n\tmFoot-\u003esetGlobalPosition(ofVec3f(0,-50,0));\n\n## Example Projects\n\n2 included. \n\n![image](http://poniesandlight.co.uk/img/ref-render-ofxSkeleton.png \"ofxSkeleton Reference Render\")\n\n## Dependencies\n\n* ♥ openframeworks \u003e= 0.8.0\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftgfrerer%2Fofxskeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftgfrerer%2Fofxskeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftgfrerer%2Fofxskeleton/lists"}