Python client library for compute.rhino3d web service
Project description
compute_rhino3d
Python package providing convenience functions to call compute.rhino3d.com geometry web services
Project Hompage at: https://github.com/mcneel/compute.rhino3d
Supported platforms
- This is a pure python package and should work on all versions of python
Test
- start
python
>>> from rhino3dm import *
>>> import compute_rhino3d.Util
>>> import compute_rhino3d.Mesh
>>>
>>> center = Point3d(250, 250, 0)
>>> sphere = Sphere(center, 100)
>>> brep = sphere.ToBrep()
>>> compute_rhino3d.Util.authToken = AUTH_TOKEN_FROM (rhino3d.com/compute/login)
>>> response = compute_rhino3d.Mesh.CreateFromBrep(brep)
>>> mesh = CommonObject.Decode(response[0])
>>> print("Computed mesh with {} faces".format(len(mesh.Faces))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
compute_rhino3d-0.0.4.tar.gz
(10.2 kB
view hashes)