Metadata-Version: 2.1
Name: compute-rhino3d
Version: 0.11.0
Summary: Python client library for compute.rhino3d web service
Home-page: https://github.com/mcneel/compute.rhino3d
Author: Robert McNeel & Associates
Author-email: steve@mcneel.com
License: UNKNOWN
Description: 
        # compute_rhino3d
        Python package providing convenience functions to call compute.rhino3d.com
        geometry web services
        
        Project Hompage: 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
        >>>
        >>> compute_rhino3d.Util.authToken = AUTH_TOKEN_FROM (rhino3d.com/compute/login)
        >>> center = Point3d(250, 250, 0)
        >>> sphere = Sphere(center, 100)
        >>> brep = sphere.ToBrep()
        >>> meshes = compute_rhino3d.Mesh.CreateFromBrep(brep)
        >>> print("Computed mesh with {} faces".format(len(meshes[0].Faces))
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
