Metadata-Version: 2.1
Name: rhinoinside
Version: 0.6.0
Summary: Embed Rhino in CPython
Home-page: https://github.com/mcneel/rhino.inside/tree/master/CPython
Author: Robert McNeel & Associates
Author-email: steve@mcneel.com
License: UNKNOWN
Description: # rhinoinside python package
        Embed Rhino in CPython
        
        `pip install --user rhinoinside`
        
        ## Requirements:
        - Rhino 7
        - Windows
        - 64 bit version of CPython (2.7, 3.5, 3.6, 3.7)
        
        ## Join the discussion
        
        https://discourse.mcneel.com/t/rhino-inside-python/78987
        
        ## How to use
        ```
        import rhinoinside
        rhinoinside.load()
        import System
        import Rhino
        
        # for now, you need to explicitly use floating point
        # numbers in Point3d constructor
        pts = System.Collections.Generic.List[Rhino.Geometry.Point3d]()
        pts.Add(Rhino.Geometry.Point3d(0.0,0.0,0.0))
        pts.Add(Rhino.Geometry.Point3d(1.0,0.0,0.0))
        pts.Add(Rhino.Geometry.Point3d(1.5,2.0,0.0))
        
        crv = Rhino.Geometry.Curve.CreateInterpolatedCurve(pts,3)
        print (crv.GetLength())
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
