{"id":20885819,"url":"https://github.com/compas-dev/compas_nurbs","last_synced_at":"2026-03-11T13:16:30.529Z","repository":{"id":60721990,"uuid":"281727656","full_name":"compas-dev/compas_nurbs","owner":"compas-dev","description":"NURBS for COMPAS","archived":false,"fork":false,"pushed_at":"2025-10-29T17:03:42.000Z","size":6816,"stargazers_count":12,"open_issues_count":16,"forks_count":6,"subscribers_count":14,"default_branch":"main","last_synced_at":"2026-01-06T08:22:17.769Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gramaziokohler.github.io/compas_nurbs/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/compas-dev.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-22T16:23:21.000Z","updated_at":"2025-11-06T10:51:11.000Z","dependencies_parsed_at":"2022-10-03T20:31:15.616Z","dependency_job_id":null,"html_url":"https://github.com/compas-dev/compas_nurbs","commit_stats":null,"previous_names":["gramaziokohler/compas_nurbs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/compas-dev/compas_nurbs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compas-dev%2Fcompas_nurbs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compas-dev%2Fcompas_nurbs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compas-dev%2Fcompas_nurbs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compas-dev%2Fcompas_nurbs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/compas-dev","download_url":"https://codeload.github.com/compas-dev/compas_nurbs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/compas-dev%2Fcompas_nurbs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30382657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T12:49:11.341Z","status":"ssl_error","status_checked_at":"2026-03-11T12:46:41.342Z","response_time":84,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-18T08:14:43.751Z","updated_at":"2026-03-11T13:16:30.512Z","avatar_url":"https://github.com/compas-dev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"============================================================\nNURBS for COMPAS\n============================================================\n\n.. start-badges\n\n.. image:: https://img.shields.io/badge/License-MIT-blue.svg\n    :target: https://github.com/gramaziokohler/compas_nurbs/blob/main/LICENSE\n    :alt: License MIT\n\n.. image:: https://github.com/gramaziokohler/compas_nurbs/workflows/build/badge.svg\n    :target: https://github.com/gramaziokohler/compas_nurbs/actions\n    :alt: Github Actions\n\n.. end-badges\n\nThis package is inspired by the NURBS-Python_ package, however uses a NumPy_-based backend for better performance.\n\n``Curve``, and ``Surface`` are non-uniform non-rational B-Spline geometries (NUBS), ``RationalCurve``, and ``RationalSurface`` are\nnon-uniform rational B-Spline Geometries (NURBS). They all built upon the class ``BSpline``.\nCoordinates have to be in 3D space (x, y, z).\n\nPlease refer to the Documentation_ for details.\n\n.. _NURBS-Python: https://github.com/orbingol/NURBS-Python\n.. _NumPy: https://numpy.org/\n.. _Documentation: https://gramaziokohler.github.io/compas_nurbs/latest/\n\n**COMPAS NURBS** runs on Python x.x and x.x.\n\n\nGetting Started\n---------------\n\nThe recommended way to install **COMPAS NURBS** is to use a `Anaconda/conda \u003chttps://conda.io/docs/\u003e`_ environment:\n\n::\n\n    conda config --add channels conda-forge\n    conda create -n ENV_NAME compas\n    conda activate ENV_NAME\n    pip install compas_nurbs\n\n\nOnce the installation is completed, you can verify your setup.\nStart Python from the command prompt and run the following:\n\n::\n\n    \u003e\u003e\u003e import compas_nurbs\n\nYou are ready to use **COMPAS NURBS**!\n\nContributing\n------------\n\nMake sure you setup your local development environment correctly:\n\n* Clone the `compas_nurbs \u003chttps://github.com/gramaziokohler/compas_nurbs\u003e`_ repository.\n* Install development dependencies and make the project accessible from Rhino:\n\n::\n\n    pip install -r requirements-dev.txt\n    python -m compas_rhino.install\n\n**You're ready to start working!**\n\nDuring development, use tasks on the\ncommand line to ease recurring operations:\n\n* ``invoke clean``: Clean all generated artifacts.\n* ``invoke check``: Run various code and documentation style checks.\n* ``invoke docs``: Generate documentation.\n* ``invoke test``: Run all tests and checks in one swift command.\n* ``invoke``: Show available tasks.\n\nFor more details, check the `Contributor's Guide \u003cCONTRIBUTING.rst\u003e`_.\n\n\nReleasing this project\n----------------------\n\nReady to release a new version of **COMPAS NURBS**? Here's how to do it:\n\n* We use `semver \u003chttps://semver.org/\u003e`_, i.e. we bump versions as follows:\n\n  * ``patch``: bugfixes.\n  * ``minor``: backwards-compatible features added.\n  * ``major``: backwards-incompatible changes.\n\n* Update the ``CHANGELOG.rst`` with all novelty!\n* Ready? Release everything in one command:\n\n::\n\n    invoke release [patch|minor|major]\n\n* Celebrate! 💃\n\nCredits\n-------------\n\nThis package was created by Romana Rust \u003crust@arch.ethz.ch\u003e `@romanarust \u003chttps://github.com/romanarust\u003e`_ at `@gramaziokohler \u003chttps://github.com/gramaziokohler\u003e`_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcompas-dev%2Fcompas_nurbs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcompas-dev%2Fcompas_nurbs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcompas-dev%2Fcompas_nurbs/lists"}