{"id":18581700,"url":"https://github.com/jpablo/superficie","last_synced_at":"2025-05-16T04:07:57.733Z","repository":{"id":68198903,"uuid":"1643874","full_name":"jpablo/superficie","owner":"jpablo","description":"Superficie is a Python library for creating beautiful 3D graphics","archived":false,"fork":false,"pushed_at":"2013-07-08T03:31:51.000Z","size":5667,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-17T16:19:38.214Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://jpablo.github.com/superficie/","language":"Python","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/jpablo.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":"2011-04-21T04:55:34.000Z","updated_at":"2022-02-10T05:36:07.000Z","dependencies_parsed_at":"2023-02-21T03:01:22.710Z","dependency_job_id":null,"html_url":"https://github.com/jpablo/superficie","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/jpablo%2Fsuperficie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpablo%2Fsuperficie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpablo%2Fsuperficie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpablo%2Fsuperficie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpablo","download_url":"https://codeload.github.com/jpablo/superficie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254464898,"owners_count":22075571,"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-11-07T00:06:44.194Z","updated_at":"2025-05-16T04:07:52.725Z","avatar_url":"https://github.com/jpablo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"superficie\n==========\n\nSuperficie is a python library for creating 3D graphics.\n\nIt is build upon Pivy (OpenInventor), and Qt4\n\nIt support several classes of objects:\n\n* Simple objects: lines, planes, polygons, arrow, etc\n* 3d charts: plot3d, parametric plots, etc.\n* animations\n\nThe objects can be organized hierarchically via a book-like object, which has containers resembling chapters and pages.\n\n\n## Quick start\n\n```python\nimport sys\nfrom PyQt4 import QtGui\nfrom superficie.plots import Plot3D\nfrom superficie.viewer import MinimalViewer\n\napp = QtGui.QApplication(sys.argv)\nviewer = MinimalViewer()\n\nplot = Plot3D(lambda x, y: .5 * x ** 3 - .5 * 3 * x * y ** 2 + 2.5, (-1, 1), (-1, 1))\n\nviewer.addChild(plot)\nviewer.resize(400, 400)\nviewer.show()\nviewer.viewAll()\nsys.exit(app.exec_())\n```\n\n\n![Plot3D](http://jpablo.github.com/superficie/images/plot3d.jpeg)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpablo%2Fsuperficie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpablo%2Fsuperficie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpablo%2Fsuperficie/lists"}