├── .devcontainer.json ├── .github └── workflows │ ├── workflow_ci.yml │ └── workflow_release.yml ├── .gitignore ├── .gitmodules ├── .nojekyll ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Current_Development_Tools.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── .nojekyll ├── data │ └── json │ │ └── nurbscurve.json ├── debugging.md ├── dotnet │ ├── README.md │ └── RHINO3DM-BUILD.CS.md ├── images │ └── rhino3dm_rhinologo.png ├── javascript │ ├── RHINO3DM-BUILD.JS.md │ ├── RHINO3DM.JS.md │ ├── api │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AnnotationBase.html │ │ │ ├── Arc.html │ │ │ ├── ArcCurve.html │ │ │ ├── ArchivableDictionary.html │ │ │ ├── Arrowhead.html │ │ │ ├── BezierCurve.html │ │ │ ├── Bitmap.html │ │ │ ├── BoundingBox.html │ │ │ ├── Box.html │ │ │ ├── Brep.html │ │ │ ├── BrepEdge.html │ │ │ ├── BrepEdgeList.html │ │ │ ├── BrepFace.html │ │ │ ├── BrepFaceList.html │ │ │ ├── BrepSurfaceList.html │ │ │ ├── BrepVertex.html │ │ │ ├── BrepVertexList.html │ │ │ ├── CachedTextureCoordinates.html │ │ │ ├── Centermark.html │ │ │ ├── Circle.html │ │ │ ├── CommonObject.html │ │ │ ├── ComponentIndex.html │ │ │ ├── Cone.html │ │ │ ├── ConstructionPlane.html │ │ │ ├── Curve.html │ │ │ ├── CurvePiping.html │ │ │ ├── CurveProxy.html │ │ │ ├── Cylinder.html │ │ │ ├── Decal.html │ │ │ ├── DimAngular.html │ │ │ ├── DimLinear.html │ │ │ ├── DimOrdinate.html │ │ │ ├── DimRadial.html │ │ │ ├── Dimension.html │ │ │ ├── DimensionStyle.html │ │ │ ├── Displacement.html │ │ │ ├── Dithering.html │ │ │ ├── DracoCompression.html │ │ │ ├── DracoCompressionOptions.html │ │ │ ├── EarthAnchorPoint.html │ │ │ ├── EdgeSoftening.html │ │ │ ├── Ellipse.html │ │ │ ├── EmbeddedFile.html │ │ │ ├── Environment.html │ │ │ ├── Extrusion.html │ │ │ ├── File3dm.html │ │ │ ├── File3dmBitmapTable.html │ │ │ ├── File3dmDecalTable.html │ │ │ ├── File3dmDimStyleTable.html │ │ │ ├── File3dmEmbeddedFileTable.html │ │ │ ├── File3dmGroupTable.html │ │ │ ├── File3dmInstanceDefinitionTable.html │ │ │ ├── File3dmLayerTable.html │ │ │ ├── File3dmLinetypeTable.html │ │ │ ├── File3dmMaterialTable.html │ │ │ ├── File3dmMeshModifiers.html │ │ │ ├── File3dmObject.html │ │ │ ├── File3dmObjectTable.html │ │ │ ├── File3dmPlugInData.html │ │ │ ├── File3dmPlugInDataTable.html │ │ │ ├── File3dmPostEffectTable.html │ │ │ ├── File3dmRdkDocumentData.html │ │ │ ├── File3dmRenderContentTable.html │ │ │ ├── File3dmSettings.html │ │ │ ├── File3dmShutLiningCurveTable.html │ │ │ ├── File3dmStringTable.html │ │ │ ├── File3dmViewTable.html │ │ │ ├── File3dmWriteOptions.html │ │ │ ├── FileReference.html │ │ │ ├── Font.html │ │ │ ├── GeometryBase.html │ │ │ ├── GroundPlane.html │ │ │ ├── Group.html │ │ │ ├── Hatch.html │ │ │ ├── InstanceDefinition.html │ │ │ ├── InstanceReference.html │ │ │ ├── Intersection.html │ │ │ ├── Layer.html │ │ │ ├── Leader.html │ │ │ ├── Light.html │ │ │ ├── Line.html │ │ │ ├── LineCurve.html │ │ │ ├── LinearWorkflow.html │ │ │ ├── Linetype.html │ │ │ ├── Material.html │ │ │ ├── Mesh.html │ │ │ ├── MeshFaceList.html │ │ │ ├── MeshNormalList.html │ │ │ ├── MeshTextureCoordinateList.html │ │ │ ├── MeshTopologyEdgeList.html │ │ │ ├── MeshVertexColorList.html │ │ │ ├── MeshVertexList.html │ │ │ ├── MeshingParameters.html │ │ │ ├── ModelComponent.html │ │ │ ├── NurbsCurve.html │ │ │ ├── NurbsCurveKnotList.html │ │ │ ├── NurbsCurvePointList.html │ │ │ ├── NurbsSurface.html │ │ │ ├── NurbsSurfaceKnotList.html │ │ │ ├── NurbsSurfacePointList.html │ │ │ ├── ObjectAttributes.html │ │ │ ├── PhysicallyBasedMaterial.html │ │ │ ├── Plane.html │ │ │ ├── PlaneSurface.html │ │ │ ├── Point.html │ │ │ ├── Point3d.html │ │ │ ├── Point3dList.html │ │ │ ├── PointCloud.html │ │ │ ├── PointCloudItem.html │ │ │ ├── PointGrid.html │ │ │ ├── PolyCurve.html │ │ │ ├── Polyline.html │ │ │ ├── PolylineCurve.html │ │ │ ├── PostEffect.html │ │ │ ├── RenderChannels.html │ │ │ ├── RenderContent.html │ │ │ ├── RenderEnvironment.html │ │ │ ├── RenderEnvironments.html │ │ │ ├── RenderMaterial.html │ │ │ ├── RenderSettings.html │ │ │ ├── RenderTexture.html │ │ │ ├── RevSurface.html │ │ │ ├── RhinoModule.html │ │ │ ├── SafeFrame.html │ │ │ ├── ShutLining.html │ │ │ ├── ShutLiningCurve.html │ │ │ ├── Skylight.html │ │ │ ├── Sphere.html │ │ │ ├── SubD.html │ │ │ ├── Sun.html │ │ │ ├── Surface.html │ │ │ ├── SurfaceProxy.html │ │ │ ├── Text.html │ │ │ ├── TextDot.html │ │ │ ├── Texture.html │ │ │ ├── TextureMapping.html │ │ │ ├── Thickening.html │ │ │ ├── Transform.html │ │ │ ├── ViewInfo.html │ │ │ └── ViewportInfo.html │ │ ├── enums │ │ │ ├── ActiveSpace.html │ │ │ ├── AnnotationType.html │ │ │ ├── ArrowheadTypes.html │ │ │ ├── BasepointZero.html │ │ │ ├── BlendContinuity.html │ │ │ ├── ComponentIndexType.html │ │ │ ├── CoordinateSystem.html │ │ │ ├── CurveEvaluationSide.html │ │ │ ├── CurveExtensionStyle.html │ │ │ ├── CurveKnotStyle.html │ │ │ ├── CurveOffsetCornerStyle.html │ │ │ ├── CurveOrientation.html │ │ │ ├── CurvePipingCapTypes.html │ │ │ ├── DecalMappings.html │ │ │ ├── DecalProjections.html │ │ │ ├── DisplacementSweepResolutionFormulas.html │ │ │ ├── DitheringMethods.html │ │ │ ├── EnvironmentBackgroundProjections.html │ │ │ ├── InstanceDefinitionUpdateType.html │ │ │ ├── LightStyle.html │ │ │ ├── LineCircleIntersection.html │ │ │ ├── LineCylinderIntersection.html │ │ │ ├── LineSphereIntersection.html │ │ │ ├── Mappings.html │ │ │ ├── MeshType.html │ │ │ ├── ObjectColorSource.html │ │ │ ├── ObjectDecoration.html │ │ │ ├── ObjectLinetypeSource.html │ │ │ ├── ObjectMaterialSource.html │ │ │ ├── ObjectMode.html │ │ │ ├── ObjectPlotColorSource.html │ │ │ ├── ObjectPlotWeightSource.html │ │ │ ├── ObjectType.html │ │ │ ├── PlaneSphereIntersection.html │ │ │ ├── PointContainment.html │ │ │ ├── PostEffectTypes.html │ │ │ ├── Projections.html │ │ │ ├── RegionContainment.html │ │ │ ├── RenderChannelsModes.html │ │ │ ├── SphereSphereIntersection.html │ │ │ ├── TextureType.html │ │ │ ├── TextureUvwWrapping.html │ │ │ ├── TransformRigidType.html │ │ │ ├── TransformSimilarityType.html │ │ │ └── UnitSystem.html │ │ ├── functions │ │ │ └── default.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ └── modules.html │ └── samples │ │ └── README.md ├── publishing.md ├── python │ ├── RHINO3DM-BUILD.PY.md │ ├── RHINO3DM.PY.md │ ├── api │ │ ├── .buildinfo │ │ ├── AnnotationBase.html │ │ ├── Arc.html │ │ ├── ArcCurve.html │ │ ├── ArchivableDictionary.html │ │ ├── Arrowhead.html │ │ ├── BezierCurve.html │ │ ├── Bitmap.html │ │ ├── BoundingBox.html │ │ ├── Box.html │ │ ├── Brep.html │ │ ├── BrepEdge.html │ │ ├── BrepEdgeList.html │ │ ├── BrepFace.html │ │ ├── BrepFaceList.html │ │ ├── BrepSurfaceList.html │ │ ├── BrepVertex.html │ │ ├── BrepVertexList.html │ │ ├── CachedTextureCoordinates.html │ │ ├── Centermark.html │ │ ├── Circle.html │ │ ├── CommonObject.html │ │ ├── ComponentIndex.html │ │ ├── Cone.html │ │ ├── ConstructionPlane.html │ │ ├── Curve.html │ │ ├── CurvePiping.html │ │ ├── CurveProxy.html │ │ ├── Cylinder.html │ │ ├── Decal.html │ │ ├── DimAngular.html │ │ ├── DimLinear.html │ │ ├── DimOrdinate.html │ │ ├── DimRadial.html │ │ ├── Dimension.html │ │ ├── DimensionStyle.html │ │ ├── Displacement.html │ │ ├── Dithering.html │ │ ├── DracoCompression.html │ │ ├── DracoCompressionOptions.html │ │ ├── EarthAnchorPoint.html │ │ ├── EdgeSoftening.html │ │ ├── Ellipse.html │ │ ├── EmbeddedFile.html │ │ ├── Environment.html │ │ ├── Extrusion.html │ │ ├── File3dm.html │ │ ├── File3dmBitmapTable.html │ │ ├── File3dmDecalTable.html │ │ ├── File3dmDimStyleTable.html │ │ ├── File3dmEmbeddedFileTable.html │ │ ├── File3dmGroupTable.html │ │ ├── File3dmInstanceDefinitionTable.html │ │ ├── File3dmLayerTable.html │ │ ├── File3dmLinetypeTable.html │ │ ├── File3dmMaterialTable.html │ │ ├── File3dmMeshModifiers.html │ │ ├── File3dmObject.html │ │ ├── File3dmObjectTable.html │ │ ├── File3dmPlugInData.html │ │ ├── File3dmPlugInDataTable.html │ │ ├── File3dmPostEffectTable.html │ │ ├── File3dmRdkDocumentData.html │ │ ├── File3dmRenderContentTable.html │ │ ├── File3dmSettings.html │ │ ├── File3dmShutLiningCurveTable.html │ │ ├── File3dmStringTable.html │ │ ├── File3dmViewTable.html │ │ ├── File3dmWriteOptions.html │ │ ├── FileReference.html │ │ ├── Font.html │ │ ├── GeometryBase.html │ │ ├── GroundPlane.html │ │ ├── Group.html │ │ ├── Hatch.html │ │ ├── InstanceDefinition.html │ │ ├── InstanceReference.html │ │ ├── Intersection.html │ │ ├── Interval.html │ │ ├── Layer.html │ │ ├── Leader.html │ │ ├── Light.html │ │ ├── Line.html │ │ ├── LineCurve.html │ │ ├── LinearWorkflow.html │ │ ├── Linetype.html │ │ ├── Material.html │ │ ├── Mesh.html │ │ ├── MeshFaceList.html │ │ ├── MeshNormalList.html │ │ ├── MeshTextureCoordinateList.html │ │ ├── MeshTopologyEdgeList.html │ │ ├── MeshVertexColorList.html │ │ ├── MeshVertexList.html │ │ ├── MeshingParameters.html │ │ ├── ModelComponent.html │ │ ├── NurbsCurve.html │ │ ├── NurbsCurveKnotList.html │ │ ├── NurbsCurvePointList.html │ │ ├── NurbsSurface.html │ │ ├── NurbsSurfaceKnotList.html │ │ ├── NurbsSurfacePointList.html │ │ ├── ObjectAttributes.html │ │ ├── PhysicallyBasedMaterial.html │ │ ├── Plane.html │ │ ├── PlaneSurface.html │ │ ├── Point.html │ │ ├── Point2d.html │ │ ├── Point2f.html │ │ ├── Point3d.html │ │ ├── Point3dList.html │ │ ├── Point3f.html │ │ ├── Point4d.html │ │ ├── PointCloud.html │ │ ├── PointCloudItem.html │ │ ├── PointGrid.html │ │ ├── PolyCurve.html │ │ ├── Polyline.html │ │ ├── PolylineCurve.html │ │ ├── PostEffect.html │ │ ├── RenderChannels.html │ │ ├── RenderContent.html │ │ ├── RenderEnvironment.html │ │ ├── RenderEnvironments.html │ │ ├── RenderMaterial.html │ │ ├── RenderSettings.html │ │ ├── RenderTexture.html │ │ ├── RevSurface.html │ │ ├── SafeFrame.html │ │ ├── ShutLining.html │ │ ├── ShutLiningCurve.html │ │ ├── Skylight.html │ │ ├── Sphere.html │ │ ├── SubD.html │ │ ├── Sun.html │ │ ├── Surface.html │ │ ├── SurfaceProxy.html │ │ ├── Text.html │ │ ├── TextDot.html │ │ ├── Texture.html │ │ ├── TextureMapping.html │ │ ├── Thickening.html │ │ ├── Transform.html │ │ ├── Vector2d.html │ │ ├── Vector3d.html │ │ ├── Vector3f.html │ │ ├── ViewInfo.html │ │ ├── ViewportInfo.html │ │ ├── _sources │ │ │ ├── AnnotationBase.rst.txt │ │ │ ├── Arc.rst.txt │ │ │ ├── ArcCurve.rst.txt │ │ │ ├── ArchivableDictionary.rst.txt │ │ │ ├── Arrowhead.rst.txt │ │ │ ├── BezierCurve.rst.txt │ │ │ ├── Bitmap.rst.txt │ │ │ ├── BoundingBox.rst.txt │ │ │ ├── Box.rst.txt │ │ │ ├── Brep.rst.txt │ │ │ ├── BrepEdge.rst.txt │ │ │ ├── BrepEdgeList.rst.txt │ │ │ ├── BrepFace.rst.txt │ │ │ ├── BrepFaceList.rst.txt │ │ │ ├── BrepSurfaceList.rst.txt │ │ │ ├── BrepVertex.rst.txt │ │ │ ├── BrepVertexList.rst.txt │ │ │ ├── CachedTextureCoordinates.rst.txt │ │ │ ├── Centermark.rst.txt │ │ │ ├── Circle.rst.txt │ │ │ ├── CommonObject.rst.txt │ │ │ ├── ComponentIndex.rst.txt │ │ │ ├── Cone.rst.txt │ │ │ ├── ConstructionPlane.rst.txt │ │ │ ├── Curve.rst.txt │ │ │ ├── CurvePiping.rst.txt │ │ │ ├── CurveProxy.rst.txt │ │ │ ├── Cylinder.rst.txt │ │ │ ├── Decal.rst.txt │ │ │ ├── DimAngular.rst.txt │ │ │ ├── DimLinear.rst.txt │ │ │ ├── DimOrdinate.rst.txt │ │ │ ├── DimRadial.rst.txt │ │ │ ├── Dimension.rst.txt │ │ │ ├── DimensionStyle.rst.txt │ │ │ ├── Displacement.rst.txt │ │ │ ├── Dithering.rst.txt │ │ │ ├── DracoCompression.rst.txt │ │ │ ├── DracoCompressionOptions.rst.txt │ │ │ ├── EarthAnchorPoint.rst.txt │ │ │ ├── EdgeSoftening.rst.txt │ │ │ ├── Ellipse.rst.txt │ │ │ ├── EmbeddedFile.rst.txt │ │ │ ├── Environment.rst.txt │ │ │ ├── Extrusion.rst.txt │ │ │ ├── File3dm.rst.txt │ │ │ ├── File3dmBitmapTable.rst.txt │ │ │ ├── File3dmDecalTable.rst.txt │ │ │ ├── File3dmDimStyleTable.rst.txt │ │ │ ├── File3dmEmbeddedFileTable.rst.txt │ │ │ ├── File3dmGroupTable.rst.txt │ │ │ ├── File3dmInstanceDefinitionTable.rst.txt │ │ │ ├── File3dmLayerTable.rst.txt │ │ │ ├── File3dmLinetypeTable.rst.txt │ │ │ ├── File3dmMaterialTable.rst.txt │ │ │ ├── File3dmMeshModifiers.rst.txt │ │ │ ├── File3dmObject.rst.txt │ │ │ ├── File3dmObjectTable.rst.txt │ │ │ ├── File3dmPlugInData.rst.txt │ │ │ ├── File3dmPlugInDataTable.rst.txt │ │ │ ├── File3dmPostEffectTable.rst.txt │ │ │ ├── File3dmRdkDocumentData.rst.txt │ │ │ ├── File3dmRenderContentTable.rst.txt │ │ │ ├── File3dmSettings.rst.txt │ │ │ ├── File3dmShutLiningCurveTable.rst.txt │ │ │ ├── File3dmStringTable.rst.txt │ │ │ ├── File3dmViewTable.rst.txt │ │ │ ├── File3dmWriteOptions.rst.txt │ │ │ ├── FileReference.rst.txt │ │ │ ├── Font.rst.txt │ │ │ ├── GeometryBase.rst.txt │ │ │ ├── GroundPlane.rst.txt │ │ │ ├── Group.rst.txt │ │ │ ├── Hatch.rst.txt │ │ │ ├── InstanceDefinition.rst.txt │ │ │ ├── InstanceReference.rst.txt │ │ │ ├── Intersection.rst.txt │ │ │ ├── Interval.rst.txt │ │ │ ├── Layer.rst.txt │ │ │ ├── Leader.rst.txt │ │ │ ├── Light.rst.txt │ │ │ ├── Line.rst.txt │ │ │ ├── LineCurve.rst.txt │ │ │ ├── LinearWorkflow.rst.txt │ │ │ ├── Linetype.rst.txt │ │ │ ├── Material.rst.txt │ │ │ ├── Mesh.rst.txt │ │ │ ├── MeshFaceList.rst.txt │ │ │ ├── MeshNormalList.rst.txt │ │ │ ├── MeshTextureCoordinateList.rst.txt │ │ │ ├── MeshTopologyEdgeList.rst.txt │ │ │ ├── MeshVertexColorList.rst.txt │ │ │ ├── MeshVertexList.rst.txt │ │ │ ├── MeshingParameters.rst.txt │ │ │ ├── ModelComponent.rst.txt │ │ │ ├── NurbsCurve.rst.txt │ │ │ ├── NurbsCurveKnotList.rst.txt │ │ │ ├── NurbsCurvePointList.rst.txt │ │ │ ├── NurbsSurface.rst.txt │ │ │ ├── NurbsSurfaceKnotList.rst.txt │ │ │ ├── NurbsSurfacePointList.rst.txt │ │ │ ├── ObjectAttributes.rst.txt │ │ │ ├── PhysicallyBasedMaterial.rst.txt │ │ │ ├── Plane.rst.txt │ │ │ ├── PlaneSurface.rst.txt │ │ │ ├── Point.rst.txt │ │ │ ├── Point2d.rst.txt │ │ │ ├── Point2f.rst.txt │ │ │ ├── Point3d.rst.txt │ │ │ ├── Point3dList.rst.txt │ │ │ ├── Point3f.rst.txt │ │ │ ├── Point4d.rst.txt │ │ │ ├── PointCloud.rst.txt │ │ │ ├── PointCloudItem.rst.txt │ │ │ ├── PointGrid.rst.txt │ │ │ ├── Polycurve.rst.txt │ │ │ ├── Polyline.rst.txt │ │ │ ├── Polylinecurve.rst.txt │ │ │ ├── PostEffect.rst.txt │ │ │ ├── RenderChannels.rst.txt │ │ │ ├── RenderContent.rst.txt │ │ │ ├── RenderEnvironment.rst.txt │ │ │ ├── RenderEnvironments.rst.txt │ │ │ ├── RenderMaterial.rst.txt │ │ │ ├── RenderSettings.rst.txt │ │ │ ├── RenderTexture.rst.txt │ │ │ ├── RevSurface.rst.txt │ │ │ ├── SafeFrame.rst.txt │ │ │ ├── ShutLining.rst.txt │ │ │ ├── ShutLiningCurve.rst.txt │ │ │ ├── Skylight.rst.txt │ │ │ ├── Sphere.rst.txt │ │ │ ├── SubD.rst.txt │ │ │ ├── Sun.rst.txt │ │ │ ├── Surface.rst.txt │ │ │ ├── SurfaceProxy.rst.txt │ │ │ ├── Text.rst.txt │ │ │ ├── TextDot.rst.txt │ │ │ ├── Texture.rst.txt │ │ │ ├── TextureMapping.rst.txt │ │ │ ├── Thickening.rst.txt │ │ │ ├── Transform.rst.txt │ │ │ ├── Vector2d.rst.txt │ │ │ ├── Vector3d.rst.txt │ │ │ ├── Vector3f.rst.txt │ │ │ ├── ViewInfo.rst.txt │ │ │ ├── ViewportInfo.rst.txt │ │ │ └── index.rst.txt │ │ ├── _static │ │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ │ ├── basic.css │ │ │ ├── css │ │ │ │ ├── badge_only.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ │ ├── lato-normal.woff │ │ │ │ │ └── lato-normal.woff2 │ │ │ │ └── theme.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── file.png │ │ │ ├── jquery.js │ │ │ ├── js │ │ │ │ ├── badge_only.js │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ └── theme.js │ │ │ ├── language_data.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ └── sphinx_highlight.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ └── searchindex.js │ └── samples │ │ └── README.md └── testing.md ├── package.json ├── script ├── README.md ├── bootstrap.py ├── build.py ├── codesign-native.sh ├── notarize-native.sh └── setup.py ├── setup.py ├── src ├── CMakeLists.txt ├── bindings │ ├── .editorconfig │ ├── base64.cpp │ ├── base64.h │ ├── bindings.cpp │ ├── bindings.h │ ├── bnd_3dm_attributes.cpp │ ├── bnd_3dm_attributes.h │ ├── bnd_3dm_settings.cpp │ ├── bnd_3dm_settings.h │ ├── bnd_annotationbase.cpp │ ├── bnd_annotationbase.h │ ├── bnd_arc.cpp │ ├── bnd_arc.h │ ├── bnd_arccurve.cpp │ ├── bnd_arccurve.h │ ├── bnd_beam.cpp │ ├── bnd_beam.h │ ├── bnd_bezier.cpp │ ├── bnd_bezier.h │ ├── bnd_bitmap.cpp │ ├── bnd_bitmap.h │ ├── bnd_boundingbox.cpp │ ├── bnd_boundingbox.h │ ├── bnd_box.cpp │ ├── bnd_box.h │ ├── bnd_brep.cpp │ ├── bnd_brep.h │ ├── bnd_circle.cpp │ ├── bnd_circle.h │ ├── bnd_color.cpp │ ├── bnd_color.h │ ├── bnd_cone.cpp │ ├── bnd_cone.h │ ├── bnd_curve.cpp │ ├── bnd_curve.h │ ├── bnd_curveproxy.cpp │ ├── bnd_curveproxy.h │ ├── bnd_cylinder.cpp │ ├── bnd_cylinder.h │ ├── bnd_decals.cpp │ ├── bnd_decals.h │ ├── bnd_defines.cpp │ ├── bnd_defines.h │ ├── bnd_dimensionstyle.cpp │ ├── bnd_dimensionstyle.h │ ├── bnd_dithering.cpp │ ├── bnd_dithering.h │ ├── bnd_draco.cpp │ ├── bnd_draco.h │ ├── bnd_ellipse.cpp │ ├── bnd_ellipse.h │ ├── bnd_embedded_file.cpp │ ├── bnd_embedded_file.h │ ├── bnd_extensions.cpp │ ├── bnd_extensions.h │ ├── bnd_file_utilities.cpp │ ├── bnd_file_utilities.h │ ├── bnd_font.cpp │ ├── bnd_font.h │ ├── bnd_geometry.cpp │ ├── bnd_geometry.h │ ├── bnd_ground_plane.cpp │ ├── bnd_ground_plane.h │ ├── bnd_group.cpp │ ├── bnd_group.h │ ├── bnd_hatch.cpp │ ├── bnd_hatch.h │ ├── bnd_instance.cpp │ ├── bnd_instance.h │ ├── bnd_intersect.cpp │ ├── bnd_intersect.h │ ├── bnd_layer.cpp │ ├── bnd_layer.h │ ├── bnd_light.cpp │ ├── bnd_light.h │ ├── bnd_linear_workflow.cpp │ ├── bnd_linear_workflow.h │ ├── bnd_linecurve.cpp │ ├── bnd_linecurve.h │ ├── bnd_linetype.cpp │ ├── bnd_linetype.h │ ├── bnd_material.cpp │ ├── bnd_material.h │ ├── bnd_mesh.cpp │ ├── bnd_mesh.h │ ├── bnd_mesh_modifiers.cpp │ ├── bnd_mesh_modifiers.h │ ├── bnd_model_component.cpp │ ├── bnd_model_component.h │ ├── bnd_nurbscurve.cpp │ ├── bnd_nurbscurve.h │ ├── bnd_nurbssurface.cpp │ ├── bnd_nurbssurface.h │ ├── bnd_object.cpp │ ├── bnd_object.h │ ├── bnd_plane.cpp │ ├── bnd_plane.h │ ├── bnd_planesurface.cpp │ ├── bnd_planesurface.h │ ├── bnd_point.cpp │ ├── bnd_point.h │ ├── bnd_pointcloud.cpp │ ├── bnd_pointcloud.h │ ├── bnd_pointgeometry.cpp │ ├── bnd_pointgeometry.h │ ├── bnd_pointgrid.cpp │ ├── bnd_pointgrid.h │ ├── bnd_polycurve.cpp │ ├── bnd_polycurve.h │ ├── bnd_polyline.cpp │ ├── bnd_polyline.h │ ├── bnd_polylinecurve.cpp │ ├── bnd_polylinecurve.h │ ├── bnd_post_effects.cpp │ ├── bnd_post_effects.h │ ├── bnd_render_channels.cpp │ ├── bnd_render_channels.h │ ├── bnd_render_content.cpp │ ├── bnd_render_content.h │ ├── bnd_render_environments.cpp │ ├── bnd_render_environments.h │ ├── bnd_revsurface.cpp │ ├── bnd_revsurface.h │ ├── bnd_rhinosdkdoc.cpp │ ├── bnd_rhinosdkdoc.h │ ├── bnd_rtree.cpp │ ├── bnd_rtree.h │ ├── bnd_safe_frame.cpp │ ├── bnd_safe_frame.h │ ├── bnd_skylight.cpp │ ├── bnd_skylight.h │ ├── bnd_sphere.cpp │ ├── bnd_sphere.h │ ├── bnd_subd.cpp │ ├── bnd_subd.h │ ├── bnd_sun.cpp │ ├── bnd_sun.h │ ├── bnd_surface.cpp │ ├── bnd_surface.h │ ├── bnd_surfaceproxy.cpp │ ├── bnd_surfaceproxy.h │ ├── bnd_texture.cpp │ ├── bnd_texture.h │ ├── bnd_texture_mapping.cpp │ ├── bnd_texture_mapping.h │ ├── bnd_uuid.cpp │ ├── bnd_uuid.h │ ├── bnd_viewport.cpp │ ├── bnd_viewport.h │ ├── bnd_xform.cpp │ └── bnd_xform.h ├── build_dotnet.py ├── build_javascript.py ├── create_python_vcxproj.py ├── docgen │ ├── .editorconfig │ ├── App.config │ ├── BindingClass.cs │ ├── JavascriptClass.cs │ ├── JavascriptEnum.cs │ ├── Program.cs │ ├── PythonClass.cs │ ├── README.md │ ├── RhinoCommonClass.cs │ ├── RstFile.cs │ ├── conf.py │ ├── docgen.csproj │ ├── docgen.sln │ ├── jsdoc.conf │ ├── make_javascript_docs.bat │ ├── make_javascript_docs.sh │ └── make_sphinx_docs.bat ├── dotnet │ ├── ApiDefinition.cs │ ├── Import.cs │ ├── MonoHost.cs │ ├── NameSpaceDoc.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RDK │ │ ├── groundplane.cs │ │ ├── rdk_color.cs │ │ ├── rdk_content.cs │ │ ├── rdk_decals.cs │ │ ├── rdk_dithering.cs │ │ ├── rdk_doc_or_free_base.cs │ │ ├── rdk_linearworkflow.cs │ │ ├── rdk_pep.cs │ │ ├── rdk_variant.cs │ │ ├── safeframe.cs │ │ └── sun.cs │ ├── RDN_StrongName.snk │ ├── Rhino3dm.Android.csproj │ ├── Rhino3dm.Android.nuspec │ ├── Rhino3dm.csproj │ ├── Rhino3dm.iOS.csproj │ ├── Rhino3dm.iOS.nuspec │ ├── Rhino3dm.sln │ ├── RhinoMobile │ │ └── ColorExtensions.cs │ ├── Structs.cs │ ├── UI │ │ └── Localization.cs │ ├── UnsafeNativeMethods.cs │ ├── build │ │ └── net45 │ │ │ └── Rhino3dm.props │ ├── hostutils.cs │ ├── icon.png │ ├── interop.cs │ ├── librhino3dmio_native.linkwith.cs │ ├── monobuild.py │ ├── opennurbs │ │ ├── opennurbs_3dm.cs │ │ ├── opennurbs_3dm_attributes.cs │ │ ├── opennurbs_3dm_properties.cs │ │ ├── opennurbs_3dm_settings.cs │ │ ├── opennurbs_annotation.cs │ │ ├── opennurbs_annotation2.cs │ │ ├── opennurbs_annotationbase.cs │ │ ├── opennurbs_arc.cs │ │ ├── opennurbs_arccurve.cs │ │ ├── opennurbs_archive.cs │ │ ├── opennurbs_array.cs │ │ ├── opennurbs_base32.cs │ │ ├── opennurbs_base64.cs │ │ ├── opennurbs_beam.cs │ │ ├── opennurbs_bezier.cs │ │ ├── opennurbs_bitmap.cs │ │ ├── opennurbs_bounding_box.cs │ │ ├── opennurbs_box.cs │ │ ├── opennurbs_brep.cs │ │ ├── opennurbs_circle.cs │ │ ├── opennurbs_color.cs │ │ ├── opennurbs_compstat.cs │ │ ├── opennurbs_cone.cs │ │ ├── opennurbs_crc.cs │ │ ├── opennurbs_current_environment.cs │ │ ├── opennurbs_curve.cs │ │ ├── opennurbs_curveonsurface.cs │ │ ├── opennurbs_curveproxy.cs │ │ ├── opennurbs_cylinder.cs │ │ ├── opennurbs_decals.cs │ │ ├── opennurbs_defines.cs │ │ ├── opennurbs_detail.cs │ │ ├── opennurbs_dimension.cs │ │ ├── opennurbs_dimstyle.cs │ │ ├── opennurbs_dithering.cs │ │ ├── opennurbs_ellipse.cs │ │ ├── opennurbs_embedded_file.cs │ │ ├── opennurbs_environment.cs │ │ ├── opennurbs_error.cs │ │ ├── opennurbs_evaluate_nurbs.cs │ │ ├── opennurbs_extensions.cs │ │ ├── opennurbs_file_utilities.cs │ │ ├── opennurbs_font.cs │ │ ├── opennurbs_fpoint.cs │ │ ├── opennurbs_geometry.cs │ │ ├── opennurbs_ground_plane.cs │ │ ├── opennurbs_group.cs │ │ ├── opennurbs_hatch.cs │ │ ├── opennurbs_hiddenlinedrawing.cs │ │ ├── opennurbs_iepsiloncomparable.cs │ │ ├── opennurbs_instance.cs │ │ ├── opennurbs_intersect.cs │ │ ├── opennurbs_intersectionevents.cs │ │ ├── opennurbs_knot.cs │ │ ├── opennurbs_layer.cs │ │ ├── opennurbs_leader.cs │ │ ├── opennurbs_light.cs │ │ ├── opennurbs_line.cs │ │ ├── opennurbs_linear_workflow.cs │ │ ├── opennurbs_linecurve.cs │ │ ├── opennurbs_linestyle.cs │ │ ├── opennurbs_linetype.cs │ │ ├── opennurbs_list.cs │ │ ├── opennurbs_lookup.cs │ │ ├── opennurbs_mapchan.cs │ │ ├── opennurbs_massprop.cs │ │ ├── opennurbs_material.cs │ │ ├── opennurbs_math.cs │ │ ├── opennurbs_matrix.cs │ │ ├── opennurbs_memory.cs │ │ ├── opennurbs_mesh.cs │ │ ├── opennurbs_mesh_marker.cs │ │ ├── opennurbs_mesh_modifiers.cs │ │ ├── opennurbs_model_component.cs │ │ ├── opennurbs_nurbscurve.cs │ │ ├── opennurbs_nurbssurface.cs │ │ ├── opennurbs_object.cs │ │ ├── opennurbs_objref.cs │ │ ├── opennurbs_offsetsurface.cs │ │ ├── opennurbs_oject_history.cs │ │ ├── opennurbs_optimize.cs │ │ ├── opennurbs_parse.cs │ │ ├── opennurbs_plane.cs │ │ ├── opennurbs_planesurface.cs │ │ ├── opennurbs_pluginlist.cs │ │ ├── opennurbs_plus.cs │ │ ├── opennurbs_plus_registry.cs │ │ ├── opennurbs_plus_sil.cs │ │ ├── opennurbs_point.cs │ │ ├── opennurbs_pointcloud.cs │ │ ├── opennurbs_pointgeometry.cs │ │ ├── opennurbs_pointgrid.cs │ │ ├── opennurbs_polycurve.cs │ │ ├── opennurbs_polyedgecurve.cs │ │ ├── opennurbs_polyline.cs │ │ ├── opennurbs_polylinecurve.cs │ │ ├── opennurbs_post_effect.cs │ │ ├── opennurbs_progress_reporter.cs │ │ ├── opennurbs_quaternion.cs │ │ ├── opennurbs_rectangle.cs │ │ ├── opennurbs_render_channels.cs │ │ ├── opennurbs_render_content.cs │ │ ├── opennurbs_rendering.cs │ │ ├── opennurbs_revsurface.cs │ │ ├── opennurbs_rtree.cs │ │ ├── opennurbs_safe_frame.cs │ │ ├── opennurbs_sectionstyle.cs │ │ ├── opennurbs_skylight.cs │ │ ├── opennurbs_sphere.cs │ │ ├── opennurbs_squish.cs │ │ ├── opennurbs_string.cs │ │ ├── opennurbs_string_value.cs │ │ ├── opennurbs_subd.cs │ │ ├── opennurbs_sumsurface.cs │ │ ├── opennurbs_sun.cs │ │ ├── opennurbs_surface.cs │ │ ├── opennurbs_surfaceproxy.cs │ │ ├── opennurbs_system.cs │ │ ├── opennurbs_terminator.cs │ │ ├── opennurbs_text.cs │ │ ├── opennurbs_textlog.cs │ │ ├── opennurbs_texture.cs │ │ ├── opennurbs_texture_mapping.cs │ │ ├── opennurbs_torus.cs │ │ ├── opennurbs_userdata.cs │ │ ├── opennurbs_uuid.cs │ │ ├── opennurbs_version.cs │ │ ├── opennurbs_viewport.cs │ │ ├── opennurbs_workspace.cs │ │ ├── opennurbs_x.cs │ │ ├── opennurbs_xform.cs │ │ └── opennurbs_zlib.cs │ ├── postbuild.bat │ ├── postbuild_copy.txt │ ├── resolver.cs │ └── rhino │ │ ├── Interpolator.cs │ │ ├── RhinoColors.cs │ │ ├── persistentsettingshooks.cs │ │ ├── rhinofilewatcher.cs │ │ ├── rhinosdkadvancedsettings.cs │ │ ├── rhinosdkanalysismodes.cs │ │ ├── rhinosdkannotationobject.cs │ │ ├── rhinosdkapp.cs │ │ ├── rhinosdkappsettings.cs │ │ ├── rhinosdkbitmap.cs │ │ ├── rhinosdkbrepobject.cs │ │ ├── rhinosdkcageobject.cs │ │ ├── rhinosdkchannelattributes.cs │ │ ├── rhinosdkchecks.cs │ │ ├── rhinosdkclippingplane.cs │ │ ├── rhinosdkcolorbutton.cs │ │ ├── rhinosdkcommand.cs │ │ ├── rhinosdkcommandoption.cs │ │ ├── rhinosdkcommandoptionname.cs │ │ ├── rhinosdkcontextmenu.cs │ │ ├── rhinosdkcurveobject.cs │ │ ├── rhinosdkcurveseam.cs │ │ ├── rhinosdkdetailobject.cs │ │ ├── rhinosdkdialog.cs │ │ ├── rhinosdkdib.cs │ │ ├── rhinosdkdigitizerinfo.cs │ │ ├── rhinosdkdigitizermanager.cs │ │ ├── rhinosdkdimension.cs │ │ ├── rhinosdkdimstyle.cs │ │ ├── rhinosdkdimstylecombobox.cs │ │ ├── rhinosdkdirectorymanager.cs │ │ ├── rhinosdkdisplay.cs │ │ ├── rhinosdkdisplayattrsmgr.cs │ │ ├── rhinosdkdisplayconduit.cs │ │ ├── rhinosdkdisplayconduitutility.cs │ │ ├── rhinosdkdisplaydeviceinfo.cs │ │ ├── rhinosdkdisplayengine.cs │ │ ├── rhinosdkdisplaypipeline.cs │ │ ├── rhinosdkdisplaypipelineattributes.cs │ │ ├── rhinosdkdisplaypipelinematerial.cs │ │ ├── rhinosdkdoc.cs │ │ ├── rhinosdkdocproperties.cs │ │ ├── rhinosdkeventwatcher.cs │ │ ├── rhinosdkextrude.cs │ │ ├── rhinosdkextrusion.cs │ │ ├── rhinosdkfair.cs │ │ ├── rhinosdkfilemenu.cs │ │ ├── rhinosdkfileoptions.cs │ │ ├── rhinosdkfileutilities.cs │ │ ├── rhinosdkfont.cs │ │ ├── rhinosdkget.cs │ │ ├── rhinosdkgetarc.cs │ │ ├── rhinosdkgetcircle.cs │ │ ├── rhinosdkgetcone.cs │ │ ├── rhinosdkgetcylinder.cs │ │ ├── rhinosdkgetellipse.cs │ │ ├── rhinosdkgetellipsoid.cs │ │ ├── rhinosdkgetfiledialog.cs │ │ ├── rhinosdkgetline.cs │ │ ├── rhinosdkgetobject.cs │ │ ├── rhinosdkgetplane.cs │ │ ├── rhinosdkgetpoint.cs │ │ ├── rhinosdkgetpolyline.cs │ │ ├── rhinosdkgetsphere.cs │ │ ├── rhinosdkgetstring.cs │ │ ├── rhinosdkgettcone.cs │ │ ├── rhinosdkgettorus.cs │ │ ├── rhinosdkgetxform.cs │ │ ├── rhinosdkgrips.cs │ │ ├── rhinosdkgroup.cs │ │ ├── rhinosdkgroupobject.cs │ │ ├── rhinosdkgumball.cs │ │ ├── rhinosdkhatchobject.cs │ │ ├── rhinosdkhatchpattern.cs │ │ ├── rhinosdkhistoryrecordtable.cs │ │ ├── rhinosdkinstance.cs │ │ ├── rhinosdklayer.cs │ │ ├── rhinosdkleader.cs │ │ ├── rhinosdkleaderstyle.cs │ │ ├── rhinosdklight.cs │ │ ├── rhinosdklinetype.cs │ │ ├── rhinosdkloft.cs │ │ ├── rhinosdkmaterial.cs │ │ ├── rhinosdkmeshextruder.cs │ │ ├── rhinosdkmeshobject.cs │ │ ├── rhinosdkmeshunwrapper.cs │ │ ├── rhinosdkmouse.cs │ │ ├── rhinosdknurbsmultimatcher.cs │ │ ├── rhinosdkobject.cs │ │ ├── rhinosdkobjectattributes.cs │ │ ├── rhinosdkobjecthistory.cs │ │ ├── rhinosdkobjectmanager.cs │ │ ├── rhinosdkobjectpropertiesdialogpage.cs │ │ ├── rhinosdkoptionsdialogpage.cs │ │ ├── rhinosdkpagelayoutview.cs │ │ ├── rhinosdkpages.cs │ │ ├── rhinosdkpanels.cs │ │ ├── rhinosdkpick.cs │ │ ├── rhinosdkplugin.cs │ │ ├── rhinosdkpointobject.cs │ │ ├── rhinosdkpolyedge.cs │ │ ├── rhinosdkprintinfo.cs │ │ ├── rhinosdksnapshotsclient.cs │ │ ├── rhinosdkstackeddialogpage.cs │ │ ├── rhinosdksubdobject.cs │ │ ├── rhinosdksurfacefillet.cs │ │ ├── rhinosdksweep.cs │ │ ├── rhinosdktext.cs │ │ ├── rhinosdkuifile.cs │ │ ├── rhinosdkuiprofilecontext.cs │ │ ├── rhinosdkunrollsrf.cs │ │ ├── rhinosdkview.cs │ │ ├── rhinosdkviewport.cs │ │ └── rhinosdkworksession.cs ├── ios.toolchain.cmake ├── js │ ├── docs │ │ ├── package-lock.json │ │ └── package.json │ └── rhino3dm.d.ts ├── lib │ └── README.md ├── librhino3dm_native │ ├── CMakeLists.txt │ ├── Info.plist │ ├── base64.cpp │ ├── base64.h │ ├── curvedisplay.cpp │ ├── curvedisplay.h │ ├── glext.h │ ├── on_3dm_attributes.cpp │ ├── on_3dm_settings.cpp │ ├── on_annotation2.cpp │ ├── on_arc.cpp │ ├── on_arccurve.cpp │ ├── on_archivabledictionary.cpp │ ├── on_archive.cpp │ ├── on_array.cpp │ ├── on_beam.cpp │ ├── on_bezier.cpp │ ├── on_brep.cpp │ ├── on_circle.cpp │ ├── on_compstat.cpp │ ├── on_curve.cpp │ ├── on_decals.cpp │ ├── on_defines.cpp │ ├── on_detail.cpp │ ├── on_dimension.cpp │ ├── on_dimstyle.cpp │ ├── on_dithering.cpp │ ├── on_embedded_file.cpp │ ├── on_file_utilities.cpp │ ├── on_font.cpp │ ├── on_geometry.cpp │ ├── on_ground_plane.cpp │ ├── on_hatch.cpp │ ├── on_hiddenlinedrawing.cpp │ ├── on_instance.cpp │ ├── on_intersect.cpp │ ├── on_layer.cpp │ ├── on_leader.cpp │ ├── on_light.cpp │ ├── on_line.cpp │ ├── on_linear_workflow.cpp │ ├── on_linecurve.cpp │ ├── on_linetype.cpp │ ├── on_massprop.cpp │ ├── on_material.cpp │ ├── on_math.cpp │ ├── on_mesh.cpp │ ├── on_mesh_modifiers.cpp │ ├── on_model_component.cpp │ ├── on_nurbscurve.cpp │ ├── on_nurbssurface.cpp │ ├── on_object.cpp │ ├── on_parse.cpp │ ├── on_plane.cpp │ ├── on_planesurface.cpp │ ├── on_plus.cpp │ ├── on_point.cpp │ ├── on_pointcloud.cpp │ ├── on_pointgeometry.cpp │ ├── on_pointgrid.cpp │ ├── on_polycurve.cpp │ ├── on_polylinecurve.cpp │ ├── on_post_effect.cpp │ ├── on_progress_reporter.cpp │ ├── on_quaternion.cpp │ ├── on_render_channels.cpp │ ├── on_render_content.cpp │ ├── on_revsurface.cpp │ ├── on_rtree.cpp │ ├── on_safe_frame.cpp │ ├── on_skylight.cpp │ ├── on_sphere.cpp │ ├── on_string_value.cpp │ ├── on_subd.cpp │ ├── on_sun.cpp │ ├── on_surface.cpp │ ├── on_terminator.cpp │ ├── on_text.cpp │ ├── on_textlog.cpp │ ├── on_textstyle.cpp │ ├── on_userdata.cpp │ ├── on_validate.cpp │ ├── on_viewport.cpp │ ├── on_xform.cpp │ ├── plugin_linking_pragmas.h │ ├── rdk_content.cpp │ ├── rhcommon_c.h │ ├── rhcommon_c.rc │ ├── rhcommon_c │ │ └── rhcommon_c_api.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── stringholder.cpp ├── methodgen │ ├── CommandlineParser.cs │ ├── CppEnumImports.cs │ ├── NativeMethodDeclares.cs │ ├── Program.cs │ ├── methodgen.csproj │ └── methodgen.sln ├── py │ └── requirements.txt ├── rhino3dm │ ├── __init__.py │ ├── __init__.pyi │ └── py.typed ├── rhinocore_bindings │ ├── CMakeLists.txt │ ├── PropertySheets │ │ ├── BuildConfigurations │ │ │ ├── Rhino.Cpp.x64.Debug.PlugIn.props │ │ │ ├── Rhino.Cpp.x64.Debug.PlugInComponent.props │ │ │ ├── Rhino.Cpp.x64.Debug.props │ │ │ ├── Rhino.Cpp.x64.DebugRhino.PlugIn.props │ │ │ ├── Rhino.Cpp.x64.DebugRhino.PlugInComponent.props │ │ │ ├── Rhino.Cpp.x64.DebugRhino.props │ │ │ ├── Rhino.Cpp.x64.Release.PlugIn.props │ │ │ ├── Rhino.Cpp.x64.Release.PlugInComponent.props │ │ │ └── Rhino.Cpp.x64.Release.props │ │ ├── Rhino.Common.props │ │ ├── Rhino.Cpp.Common.props │ │ ├── Rhino.Cpp.PlugIn.props │ │ └── Rhino.Cpp.PlugInComponent.props │ ├── readme.md │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── version.txt └── tests ├── DotNetTester ├── DotNetTester.csproj ├── DotNetTester.sln ├── Program.cs ├── Properties │ └── launchSettings.json └── test_in.3dm ├── README.md ├── SampleCSAddGroup ├── Program.cs ├── SampleCSAddGroup.csproj └── SampleCSAddGroup.sln ├── SampleCppReadTextEntity ├── CMakeLists.txt ├── SampleCppReadTextEntity.cpp └── textEntities_r8.3dm ├── cpp ├── CMakeLists.txt └── ontest_view.cpp ├── dotnet ├── Usings.cs ├── annotation.cs ├── curve.cs ├── file3dm.LayerTable.cs ├── file3dm.ObjectTable.cs ├── file3dm.ViewTable.cs ├── lib │ └── .gitkeep ├── nurbsCurve.cs ├── object.cs ├── pointCloud.cs ├── polyline.cs ├── polylineCurve.cs ├── rhino3dm_test.csproj └── rhino3dm_test.sln ├── javascript ├── annotation.test.js ├── attributes.test.js ├── bezierCurve.test.js ├── brep.test.js ├── circle.test.js ├── curve.test.js ├── draco.test.js ├── extrusion.test.js ├── file3dm.BitmapTable.test.js ├── file3dm.DimStyleTable.test.js ├── file3dm.GroupTable.test.js ├── file3dm.LayerTable.test.js ├── file3dm.MaterialTable.test.js ├── file3dm.ObjectTable.test.js ├── file3dm.ViewTable.test.js ├── file3dm.test.js ├── instance.test.js ├── intersection.test.js ├── lib │ └── .gitkeep ├── light.test.js ├── lineType.test.js ├── mesh.test.js ├── nurbsCurve.test.js ├── nurbsSurface.test.js ├── object.test.js ├── package.json ├── pointcloud.test.js ├── polyCurve.test.js ├── polyline.test.js ├── polylineCurve.test.js ├── sphere.test.js ├── surface.test.js ├── version.test.js ├── viewport.test.js └── xform.test.js ├── models ├── blocks.3dm ├── file3dm_stuff.3dm ├── groups.3dm ├── light.3dm ├── mesh.3dm ├── object_UserStrings.3dm └── textEntities_r8.3dm ├── python ├── lib │ └── .gitkeep ├── test_Annotation.py ├── test_Attributes.py ├── test_BezierCurve.py ├── test_Brep.py ├── test_Circle.py ├── test_Curve.py ├── test_Draco.py ├── test_Extrusion.py ├── test_File3dm.py ├── test_File3dm_BitmapTable.py ├── test_File3dm_DimStyleTable.py ├── test_File3dm_GroupTable.py ├── test_File3dm_LayerTable.py ├── test_File3dm_MaterialTable.py ├── test_File3dm_ObjectTable.py ├── test_File3dm_RenderChannels.py ├── test_File3dm_StringTable.py ├── test_File3dm_ViewTable.py ├── test_Instance.py ├── test_Intersection.py ├── test_Light.py ├── test_Linetype.py ├── test_Mesh.py ├── test_NurbsCurve.py ├── test_NurbsSurface.py ├── test_Object.py ├── test_Object_UserString.py ├── test_PointCloud.py ├── test_PolyCurve.py ├── test_Polyline.py ├── test_PolylineCurve.py ├── test_Sphere.py ├── test_Surface.py ├── test_Version.py ├── test_Viewport.py └── test_Xform.py └── rhino3dmtests.py /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/workflow_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/.github/workflows/workflow_ci.yml -------------------------------------------------------------------------------- /.github/workflows/workflow_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/.github/workflows/workflow_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Current_Development_Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/Current_Development_Tools.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/data/json/nurbscurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/data/json/nurbscurve.json -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/dotnet/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/dotnet/RHINO3DM-BUILD.CS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/dotnet/RHINO3DM-BUILD.CS.md -------------------------------------------------------------------------------- /docs/images/rhino3dm_rhinologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/images/rhino3dm_rhinologo.png -------------------------------------------------------------------------------- /docs/javascript/RHINO3DM-BUILD.JS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/RHINO3DM-BUILD.JS.md -------------------------------------------------------------------------------- /docs/javascript/RHINO3DM.JS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/RHINO3DM.JS.md -------------------------------------------------------------------------------- /docs/javascript/api/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/.nojekyll -------------------------------------------------------------------------------- /docs/javascript/api/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/highlight.css -------------------------------------------------------------------------------- /docs/javascript/api/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/icons.js -------------------------------------------------------------------------------- /docs/javascript/api/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/icons.svg -------------------------------------------------------------------------------- /docs/javascript/api/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/main.js -------------------------------------------------------------------------------- /docs/javascript/api/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/navigation.js -------------------------------------------------------------------------------- /docs/javascript/api/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/search.js -------------------------------------------------------------------------------- /docs/javascript/api/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/assets/style.css -------------------------------------------------------------------------------- /docs/javascript/api/classes/Arc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Arc.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/ArcCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/ArcCurve.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Arrowhead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Arrowhead.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Bitmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Bitmap.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Box.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Brep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Brep.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/BrepEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/BrepEdge.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/BrepFace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/BrepFace.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/BrepVertex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/BrepVertex.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Centermark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Centermark.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Circle.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Cone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Cone.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Curve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Curve.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/CurveProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/CurveProxy.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Cylinder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Cylinder.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Decal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Decal.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/DimAngular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/DimAngular.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/DimLinear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/DimLinear.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/DimRadial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/DimRadial.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Dimension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Dimension.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Dithering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Dithering.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Ellipse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Ellipse.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Extrusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Extrusion.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/File3dm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/File3dm.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Font.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Group.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Hatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Hatch.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Layer.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Leader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Leader.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Light.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Line.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/LineCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/LineCurve.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Linetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Linetype.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Material.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Mesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Mesh.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/NurbsCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/NurbsCurve.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Plane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Plane.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Point.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Point3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Point3d.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/PointCloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/PointCloud.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/PointGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/PointGrid.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/PolyCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/PolyCurve.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Polyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Polyline.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/PostEffect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/PostEffect.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/RevSurface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/RevSurface.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/SafeFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/SafeFrame.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/ShutLining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/ShutLining.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Skylight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Skylight.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Sphere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Sphere.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/SubD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/SubD.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Sun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Sun.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Surface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Surface.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Text.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/TextDot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/TextDot.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Texture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Texture.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Thickening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Thickening.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/Transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/Transform.html -------------------------------------------------------------------------------- /docs/javascript/api/classes/ViewInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/classes/ViewInfo.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/ActiveSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/ActiveSpace.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/LightStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/LightStyle.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/Mappings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/Mappings.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/MeshType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/MeshType.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/ObjectMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/ObjectMode.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/ObjectType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/ObjectType.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/Projections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/Projections.html -------------------------------------------------------------------------------- /docs/javascript/api/enums/UnitSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/enums/UnitSystem.html -------------------------------------------------------------------------------- /docs/javascript/api/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/hierarchy.html -------------------------------------------------------------------------------- /docs/javascript/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/index.html -------------------------------------------------------------------------------- /docs/javascript/api/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/api/modules.html -------------------------------------------------------------------------------- /docs/javascript/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/javascript/samples/README.md -------------------------------------------------------------------------------- /docs/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/publishing.md -------------------------------------------------------------------------------- /docs/python/RHINO3DM-BUILD.PY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/RHINO3DM-BUILD.PY.md -------------------------------------------------------------------------------- /docs/python/RHINO3DM.PY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/RHINO3DM.PY.md -------------------------------------------------------------------------------- /docs/python/api/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/.buildinfo -------------------------------------------------------------------------------- /docs/python/api/AnnotationBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/AnnotationBase.html -------------------------------------------------------------------------------- /docs/python/api/Arc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Arc.html -------------------------------------------------------------------------------- /docs/python/api/ArcCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ArcCurve.html -------------------------------------------------------------------------------- /docs/python/api/ArchivableDictionary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ArchivableDictionary.html -------------------------------------------------------------------------------- /docs/python/api/Arrowhead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Arrowhead.html -------------------------------------------------------------------------------- /docs/python/api/BezierCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BezierCurve.html -------------------------------------------------------------------------------- /docs/python/api/Bitmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Bitmap.html -------------------------------------------------------------------------------- /docs/python/api/BoundingBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BoundingBox.html -------------------------------------------------------------------------------- /docs/python/api/Box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Box.html -------------------------------------------------------------------------------- /docs/python/api/Brep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Brep.html -------------------------------------------------------------------------------- /docs/python/api/BrepEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepEdge.html -------------------------------------------------------------------------------- /docs/python/api/BrepEdgeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepEdgeList.html -------------------------------------------------------------------------------- /docs/python/api/BrepFace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepFace.html -------------------------------------------------------------------------------- /docs/python/api/BrepFaceList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepFaceList.html -------------------------------------------------------------------------------- /docs/python/api/BrepSurfaceList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepSurfaceList.html -------------------------------------------------------------------------------- /docs/python/api/BrepVertex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepVertex.html -------------------------------------------------------------------------------- /docs/python/api/BrepVertexList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/BrepVertexList.html -------------------------------------------------------------------------------- /docs/python/api/Centermark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Centermark.html -------------------------------------------------------------------------------- /docs/python/api/Circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Circle.html -------------------------------------------------------------------------------- /docs/python/api/CommonObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/CommonObject.html -------------------------------------------------------------------------------- /docs/python/api/ComponentIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ComponentIndex.html -------------------------------------------------------------------------------- /docs/python/api/Cone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Cone.html -------------------------------------------------------------------------------- /docs/python/api/ConstructionPlane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ConstructionPlane.html -------------------------------------------------------------------------------- /docs/python/api/Curve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Curve.html -------------------------------------------------------------------------------- /docs/python/api/CurvePiping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/CurvePiping.html -------------------------------------------------------------------------------- /docs/python/api/CurveProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/CurveProxy.html -------------------------------------------------------------------------------- /docs/python/api/Cylinder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Cylinder.html -------------------------------------------------------------------------------- /docs/python/api/Decal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Decal.html -------------------------------------------------------------------------------- /docs/python/api/DimAngular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/DimAngular.html -------------------------------------------------------------------------------- /docs/python/api/DimLinear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/DimLinear.html -------------------------------------------------------------------------------- /docs/python/api/DimOrdinate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/DimOrdinate.html -------------------------------------------------------------------------------- /docs/python/api/DimRadial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/DimRadial.html -------------------------------------------------------------------------------- /docs/python/api/Dimension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Dimension.html -------------------------------------------------------------------------------- /docs/python/api/DimensionStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/DimensionStyle.html -------------------------------------------------------------------------------- /docs/python/api/Displacement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Displacement.html -------------------------------------------------------------------------------- /docs/python/api/Dithering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Dithering.html -------------------------------------------------------------------------------- /docs/python/api/DracoCompression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/DracoCompression.html -------------------------------------------------------------------------------- /docs/python/api/EarthAnchorPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/EarthAnchorPoint.html -------------------------------------------------------------------------------- /docs/python/api/EdgeSoftening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/EdgeSoftening.html -------------------------------------------------------------------------------- /docs/python/api/Ellipse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Ellipse.html -------------------------------------------------------------------------------- /docs/python/api/EmbeddedFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/EmbeddedFile.html -------------------------------------------------------------------------------- /docs/python/api/Environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Environment.html -------------------------------------------------------------------------------- /docs/python/api/Extrusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Extrusion.html -------------------------------------------------------------------------------- /docs/python/api/File3dm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dm.html -------------------------------------------------------------------------------- /docs/python/api/File3dmBitmapTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmBitmapTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmDecalTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmDecalTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmDimStyleTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmDimStyleTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmGroupTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmGroupTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmLayerTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmLayerTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmLinetypeTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmLinetypeTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmMaterialTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmMaterialTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmMeshModifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmMeshModifiers.html -------------------------------------------------------------------------------- /docs/python/api/File3dmObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmObject.html -------------------------------------------------------------------------------- /docs/python/api/File3dmObjectTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmObjectTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmPlugInData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmPlugInData.html -------------------------------------------------------------------------------- /docs/python/api/File3dmSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmSettings.html -------------------------------------------------------------------------------- /docs/python/api/File3dmStringTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmStringTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmViewTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmViewTable.html -------------------------------------------------------------------------------- /docs/python/api/File3dmWriteOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/File3dmWriteOptions.html -------------------------------------------------------------------------------- /docs/python/api/FileReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/FileReference.html -------------------------------------------------------------------------------- /docs/python/api/Font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Font.html -------------------------------------------------------------------------------- /docs/python/api/GeometryBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/GeometryBase.html -------------------------------------------------------------------------------- /docs/python/api/GroundPlane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/GroundPlane.html -------------------------------------------------------------------------------- /docs/python/api/Group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Group.html -------------------------------------------------------------------------------- /docs/python/api/Hatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Hatch.html -------------------------------------------------------------------------------- /docs/python/api/InstanceDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/InstanceDefinition.html -------------------------------------------------------------------------------- /docs/python/api/InstanceReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/InstanceReference.html -------------------------------------------------------------------------------- /docs/python/api/Intersection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Intersection.html -------------------------------------------------------------------------------- /docs/python/api/Interval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Interval.html -------------------------------------------------------------------------------- /docs/python/api/Layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Layer.html -------------------------------------------------------------------------------- /docs/python/api/Leader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Leader.html -------------------------------------------------------------------------------- /docs/python/api/Light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Light.html -------------------------------------------------------------------------------- /docs/python/api/Line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Line.html -------------------------------------------------------------------------------- /docs/python/api/LineCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/LineCurve.html -------------------------------------------------------------------------------- /docs/python/api/LinearWorkflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/LinearWorkflow.html -------------------------------------------------------------------------------- /docs/python/api/Linetype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Linetype.html -------------------------------------------------------------------------------- /docs/python/api/Material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Material.html -------------------------------------------------------------------------------- /docs/python/api/Mesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Mesh.html -------------------------------------------------------------------------------- /docs/python/api/MeshFaceList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/MeshFaceList.html -------------------------------------------------------------------------------- /docs/python/api/MeshNormalList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/MeshNormalList.html -------------------------------------------------------------------------------- /docs/python/api/MeshTopologyEdgeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/MeshTopologyEdgeList.html -------------------------------------------------------------------------------- /docs/python/api/MeshVertexColorList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/MeshVertexColorList.html -------------------------------------------------------------------------------- /docs/python/api/MeshVertexList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/MeshVertexList.html -------------------------------------------------------------------------------- /docs/python/api/MeshingParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/MeshingParameters.html -------------------------------------------------------------------------------- /docs/python/api/ModelComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ModelComponent.html -------------------------------------------------------------------------------- /docs/python/api/NurbsCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/NurbsCurve.html -------------------------------------------------------------------------------- /docs/python/api/NurbsCurveKnotList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/NurbsCurveKnotList.html -------------------------------------------------------------------------------- /docs/python/api/NurbsCurvePointList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/NurbsCurvePointList.html -------------------------------------------------------------------------------- /docs/python/api/NurbsSurface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/NurbsSurface.html -------------------------------------------------------------------------------- /docs/python/api/NurbsSurfaceKnotList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/NurbsSurfaceKnotList.html -------------------------------------------------------------------------------- /docs/python/api/ObjectAttributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ObjectAttributes.html -------------------------------------------------------------------------------- /docs/python/api/Plane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Plane.html -------------------------------------------------------------------------------- /docs/python/api/PlaneSurface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PlaneSurface.html -------------------------------------------------------------------------------- /docs/python/api/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point.html -------------------------------------------------------------------------------- /docs/python/api/Point2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point2d.html -------------------------------------------------------------------------------- /docs/python/api/Point2f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point2f.html -------------------------------------------------------------------------------- /docs/python/api/Point3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point3d.html -------------------------------------------------------------------------------- /docs/python/api/Point3dList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point3dList.html -------------------------------------------------------------------------------- /docs/python/api/Point3f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point3f.html -------------------------------------------------------------------------------- /docs/python/api/Point4d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Point4d.html -------------------------------------------------------------------------------- /docs/python/api/PointCloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PointCloud.html -------------------------------------------------------------------------------- /docs/python/api/PointCloudItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PointCloudItem.html -------------------------------------------------------------------------------- /docs/python/api/PointGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PointGrid.html -------------------------------------------------------------------------------- /docs/python/api/PolyCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PolyCurve.html -------------------------------------------------------------------------------- /docs/python/api/Polyline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Polyline.html -------------------------------------------------------------------------------- /docs/python/api/PolylineCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PolylineCurve.html -------------------------------------------------------------------------------- /docs/python/api/PostEffect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/PostEffect.html -------------------------------------------------------------------------------- /docs/python/api/RenderChannels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderChannels.html -------------------------------------------------------------------------------- /docs/python/api/RenderContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderContent.html -------------------------------------------------------------------------------- /docs/python/api/RenderEnvironment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderEnvironment.html -------------------------------------------------------------------------------- /docs/python/api/RenderEnvironments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderEnvironments.html -------------------------------------------------------------------------------- /docs/python/api/RenderMaterial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderMaterial.html -------------------------------------------------------------------------------- /docs/python/api/RenderSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderSettings.html -------------------------------------------------------------------------------- /docs/python/api/RenderTexture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RenderTexture.html -------------------------------------------------------------------------------- /docs/python/api/RevSurface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/RevSurface.html -------------------------------------------------------------------------------- /docs/python/api/SafeFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/SafeFrame.html -------------------------------------------------------------------------------- /docs/python/api/ShutLining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ShutLining.html -------------------------------------------------------------------------------- /docs/python/api/ShutLiningCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ShutLiningCurve.html -------------------------------------------------------------------------------- /docs/python/api/Skylight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Skylight.html -------------------------------------------------------------------------------- /docs/python/api/Sphere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Sphere.html -------------------------------------------------------------------------------- /docs/python/api/SubD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/SubD.html -------------------------------------------------------------------------------- /docs/python/api/Sun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Sun.html -------------------------------------------------------------------------------- /docs/python/api/Surface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Surface.html -------------------------------------------------------------------------------- /docs/python/api/SurfaceProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/SurfaceProxy.html -------------------------------------------------------------------------------- /docs/python/api/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Text.html -------------------------------------------------------------------------------- /docs/python/api/TextDot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/TextDot.html -------------------------------------------------------------------------------- /docs/python/api/Texture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Texture.html -------------------------------------------------------------------------------- /docs/python/api/TextureMapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/TextureMapping.html -------------------------------------------------------------------------------- /docs/python/api/Thickening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Thickening.html -------------------------------------------------------------------------------- /docs/python/api/Transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Transform.html -------------------------------------------------------------------------------- /docs/python/api/Vector2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Vector2d.html -------------------------------------------------------------------------------- /docs/python/api/Vector3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Vector3d.html -------------------------------------------------------------------------------- /docs/python/api/Vector3f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/Vector3f.html -------------------------------------------------------------------------------- /docs/python/api/ViewInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ViewInfo.html -------------------------------------------------------------------------------- /docs/python/api/ViewportInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/ViewportInfo.html -------------------------------------------------------------------------------- /docs/python/api/_sources/Arc.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Arc.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/ArcCurve.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/ArcCurve.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Bitmap.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Bitmap.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Box.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Box.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Brep.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Brep.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/BrepEdge.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/BrepEdge.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/BrepFace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/BrepFace.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Circle.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Circle.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Cone.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Cone.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Curve.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Curve.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Cylinder.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Cylinder.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Decal.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Decal.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Ellipse.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Ellipse.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/File3dm.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/File3dm.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Font.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Font.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Group.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Group.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Hatch.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Hatch.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Interval.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Interval.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Layer.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Layer.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Leader.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Leader.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Light.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Light.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Line.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Line.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Linetype.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Linetype.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Material.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Material.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Mesh.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Mesh.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Plane.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Plane.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Point.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Point.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Point2d.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Point2d.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Point2f.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Point2f.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Point3d.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Point3d.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Point3f.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Point3f.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Point4d.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Point4d.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Polyline.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Polyline.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Skylight.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Skylight.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Sphere.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Sphere.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/SubD.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/SubD.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Sun.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Sun.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Surface.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Surface.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Text.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Text.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/TextDot.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/TextDot.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Texture.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Texture.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Vector2d.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Vector2d.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Vector3d.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Vector3d.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/Vector3f.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/Vector3f.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/ViewInfo.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/ViewInfo.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/python/api/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/basic.css -------------------------------------------------------------------------------- /docs/python/api/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/css/theme.css -------------------------------------------------------------------------------- /docs/python/api/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/doctools.js -------------------------------------------------------------------------------- /docs/python/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/file.png -------------------------------------------------------------------------------- /docs/python/api/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/jquery.js -------------------------------------------------------------------------------- /docs/python/api/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/python/api/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/js/theme.js -------------------------------------------------------------------------------- /docs/python/api/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/language_data.js -------------------------------------------------------------------------------- /docs/python/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/minus.png -------------------------------------------------------------------------------- /docs/python/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/plus.png -------------------------------------------------------------------------------- /docs/python/api/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/pygments.css -------------------------------------------------------------------------------- /docs/python/api/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/_static/searchtools.js -------------------------------------------------------------------------------- /docs/python/api/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/genindex.html -------------------------------------------------------------------------------- /docs/python/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/index.html -------------------------------------------------------------------------------- /docs/python/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/objects.inv -------------------------------------------------------------------------------- /docs/python/api/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/py-modindex.html -------------------------------------------------------------------------------- /docs/python/api/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/search.html -------------------------------------------------------------------------------- /docs/python/api/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/python/api/searchindex.js -------------------------------------------------------------------------------- /docs/python/samples/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/docs/testing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/package.json -------------------------------------------------------------------------------- /script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/script/README.md -------------------------------------------------------------------------------- /script/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/script/bootstrap.py -------------------------------------------------------------------------------- /script/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/script/build.py -------------------------------------------------------------------------------- /script/codesign-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/script/codesign-native.sh -------------------------------------------------------------------------------- /script/notarize-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/script/notarize-native.sh -------------------------------------------------------------------------------- /script/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/script/setup.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/setup.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bindings/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/.editorconfig -------------------------------------------------------------------------------- /src/bindings/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/base64.cpp -------------------------------------------------------------------------------- /src/bindings/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/base64.h -------------------------------------------------------------------------------- /src/bindings/bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bindings.cpp -------------------------------------------------------------------------------- /src/bindings/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bindings.h -------------------------------------------------------------------------------- /src/bindings/bnd_3dm_attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_3dm_attributes.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_3dm_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_3dm_attributes.h -------------------------------------------------------------------------------- /src/bindings/bnd_3dm_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_3dm_settings.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_3dm_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_3dm_settings.h -------------------------------------------------------------------------------- /src/bindings/bnd_annotationbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_annotationbase.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_annotationbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_annotationbase.h -------------------------------------------------------------------------------- /src/bindings/bnd_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_arc.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_arc.h -------------------------------------------------------------------------------- /src/bindings/bnd_arccurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_arccurve.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_arccurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_arccurve.h -------------------------------------------------------------------------------- /src/bindings/bnd_beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_beam.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_beam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_beam.h -------------------------------------------------------------------------------- /src/bindings/bnd_bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_bezier.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_bezier.h -------------------------------------------------------------------------------- /src/bindings/bnd_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_bitmap.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_bitmap.h -------------------------------------------------------------------------------- /src/bindings/bnd_boundingbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_boundingbox.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_boundingbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_boundingbox.h -------------------------------------------------------------------------------- /src/bindings/bnd_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_box.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_box.h -------------------------------------------------------------------------------- /src/bindings/bnd_brep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_brep.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_brep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_brep.h -------------------------------------------------------------------------------- /src/bindings/bnd_circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_circle.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_circle.h -------------------------------------------------------------------------------- /src/bindings/bnd_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_color.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_color.h -------------------------------------------------------------------------------- /src/bindings/bnd_cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_cone.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_cone.h -------------------------------------------------------------------------------- /src/bindings/bnd_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_curve.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_curve.h -------------------------------------------------------------------------------- /src/bindings/bnd_curveproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_curveproxy.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_curveproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_curveproxy.h -------------------------------------------------------------------------------- /src/bindings/bnd_cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_cylinder.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_cylinder.h -------------------------------------------------------------------------------- /src/bindings/bnd_decals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_decals.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_decals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_decals.h -------------------------------------------------------------------------------- /src/bindings/bnd_defines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_defines.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_defines.h -------------------------------------------------------------------------------- /src/bindings/bnd_dimensionstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_dimensionstyle.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_dimensionstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_dimensionstyle.h -------------------------------------------------------------------------------- /src/bindings/bnd_dithering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_dithering.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_dithering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_dithering.h -------------------------------------------------------------------------------- /src/bindings/bnd_draco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_draco.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_draco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_draco.h -------------------------------------------------------------------------------- /src/bindings/bnd_ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_ellipse.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_ellipse.h -------------------------------------------------------------------------------- /src/bindings/bnd_embedded_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_embedded_file.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_embedded_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_embedded_file.h -------------------------------------------------------------------------------- /src/bindings/bnd_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_extensions.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_extensions.h -------------------------------------------------------------------------------- /src/bindings/bnd_file_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_file_utilities.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_file_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_file_utilities.h -------------------------------------------------------------------------------- /src/bindings/bnd_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_font.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_font.h -------------------------------------------------------------------------------- /src/bindings/bnd_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_geometry.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_geometry.h -------------------------------------------------------------------------------- /src/bindings/bnd_ground_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_ground_plane.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_ground_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_ground_plane.h -------------------------------------------------------------------------------- /src/bindings/bnd_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_group.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_group.h -------------------------------------------------------------------------------- /src/bindings/bnd_hatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_hatch.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_hatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_hatch.h -------------------------------------------------------------------------------- /src/bindings/bnd_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_instance.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_instance.h -------------------------------------------------------------------------------- /src/bindings/bnd_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_intersect.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_intersect.h -------------------------------------------------------------------------------- /src/bindings/bnd_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_layer.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_layer.h -------------------------------------------------------------------------------- /src/bindings/bnd_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_light.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_light.h -------------------------------------------------------------------------------- /src/bindings/bnd_linear_workflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_linear_workflow.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_linear_workflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_linear_workflow.h -------------------------------------------------------------------------------- /src/bindings/bnd_linecurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_linecurve.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_linecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_linecurve.h -------------------------------------------------------------------------------- /src/bindings/bnd_linetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_linetype.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_linetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_linetype.h -------------------------------------------------------------------------------- /src/bindings/bnd_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_material.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_material.h -------------------------------------------------------------------------------- /src/bindings/bnd_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_mesh.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_mesh.h -------------------------------------------------------------------------------- /src/bindings/bnd_mesh_modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_mesh_modifiers.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_mesh_modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_mesh_modifiers.h -------------------------------------------------------------------------------- /src/bindings/bnd_model_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_model_component.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_model_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_model_component.h -------------------------------------------------------------------------------- /src/bindings/bnd_nurbscurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_nurbscurve.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_nurbscurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_nurbscurve.h -------------------------------------------------------------------------------- /src/bindings/bnd_nurbssurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_nurbssurface.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_nurbssurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_nurbssurface.h -------------------------------------------------------------------------------- /src/bindings/bnd_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_object.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_object.h -------------------------------------------------------------------------------- /src/bindings/bnd_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_plane.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_plane.h -------------------------------------------------------------------------------- /src/bindings/bnd_planesurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_planesurface.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_planesurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_planesurface.h -------------------------------------------------------------------------------- /src/bindings/bnd_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_point.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_point.h -------------------------------------------------------------------------------- /src/bindings/bnd_pointcloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_pointcloud.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_pointcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_pointcloud.h -------------------------------------------------------------------------------- /src/bindings/bnd_pointgeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_pointgeometry.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_pointgeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_pointgeometry.h -------------------------------------------------------------------------------- /src/bindings/bnd_pointgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_pointgrid.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_pointgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_pointgrid.h -------------------------------------------------------------------------------- /src/bindings/bnd_polycurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_polycurve.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_polycurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_polycurve.h -------------------------------------------------------------------------------- /src/bindings/bnd_polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_polyline.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_polyline.h -------------------------------------------------------------------------------- /src/bindings/bnd_polylinecurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_polylinecurve.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_polylinecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_polylinecurve.h -------------------------------------------------------------------------------- /src/bindings/bnd_post_effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_post_effects.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_post_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_post_effects.h -------------------------------------------------------------------------------- /src/bindings/bnd_render_channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_render_channels.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_render_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_render_channels.h -------------------------------------------------------------------------------- /src/bindings/bnd_render_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_render_content.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_render_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_render_content.h -------------------------------------------------------------------------------- /src/bindings/bnd_render_environments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_render_environments.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_render_environments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_render_environments.h -------------------------------------------------------------------------------- /src/bindings/bnd_revsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_revsurface.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_revsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_revsurface.h -------------------------------------------------------------------------------- /src/bindings/bnd_rhinosdkdoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_rhinosdkdoc.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_rhinosdkdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_rhinosdkdoc.h -------------------------------------------------------------------------------- /src/bindings/bnd_rtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_rtree.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_rtree.h -------------------------------------------------------------------------------- /src/bindings/bnd_safe_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_safe_frame.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_safe_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_safe_frame.h -------------------------------------------------------------------------------- /src/bindings/bnd_skylight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_skylight.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_skylight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_skylight.h -------------------------------------------------------------------------------- /src/bindings/bnd_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_sphere.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_sphere.h -------------------------------------------------------------------------------- /src/bindings/bnd_subd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_subd.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_subd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_subd.h -------------------------------------------------------------------------------- /src/bindings/bnd_sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_sun.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_sun.h -------------------------------------------------------------------------------- /src/bindings/bnd_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_surface.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_surface.h -------------------------------------------------------------------------------- /src/bindings/bnd_surfaceproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_surfaceproxy.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_surfaceproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_surfaceproxy.h -------------------------------------------------------------------------------- /src/bindings/bnd_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_texture.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_texture.h -------------------------------------------------------------------------------- /src/bindings/bnd_texture_mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_texture_mapping.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_texture_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_texture_mapping.h -------------------------------------------------------------------------------- /src/bindings/bnd_uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_uuid.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_uuid.h -------------------------------------------------------------------------------- /src/bindings/bnd_viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_viewport.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_viewport.h -------------------------------------------------------------------------------- /src/bindings/bnd_xform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_xform.cpp -------------------------------------------------------------------------------- /src/bindings/bnd_xform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/bindings/bnd_xform.h -------------------------------------------------------------------------------- /src/build_dotnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/build_dotnet.py -------------------------------------------------------------------------------- /src/build_javascript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/build_javascript.py -------------------------------------------------------------------------------- /src/create_python_vcxproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/create_python_vcxproj.py -------------------------------------------------------------------------------- /src/docgen/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/.editorconfig -------------------------------------------------------------------------------- /src/docgen/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/App.config -------------------------------------------------------------------------------- /src/docgen/BindingClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/BindingClass.cs -------------------------------------------------------------------------------- /src/docgen/JavascriptClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/JavascriptClass.cs -------------------------------------------------------------------------------- /src/docgen/JavascriptEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/JavascriptEnum.cs -------------------------------------------------------------------------------- /src/docgen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/Program.cs -------------------------------------------------------------------------------- /src/docgen/PythonClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/PythonClass.cs -------------------------------------------------------------------------------- /src/docgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/README.md -------------------------------------------------------------------------------- /src/docgen/RhinoCommonClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/RhinoCommonClass.cs -------------------------------------------------------------------------------- /src/docgen/RstFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/RstFile.cs -------------------------------------------------------------------------------- /src/docgen/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/conf.py -------------------------------------------------------------------------------- /src/docgen/docgen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/docgen.csproj -------------------------------------------------------------------------------- /src/docgen/docgen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/docgen.sln -------------------------------------------------------------------------------- /src/docgen/jsdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/jsdoc.conf -------------------------------------------------------------------------------- /src/docgen/make_javascript_docs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/make_javascript_docs.bat -------------------------------------------------------------------------------- /src/docgen/make_javascript_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/make_javascript_docs.sh -------------------------------------------------------------------------------- /src/docgen/make_sphinx_docs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/docgen/make_sphinx_docs.bat -------------------------------------------------------------------------------- /src/dotnet/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/ApiDefinition.cs -------------------------------------------------------------------------------- /src/dotnet/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Import.cs -------------------------------------------------------------------------------- /src/dotnet/MonoHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/MonoHost.cs -------------------------------------------------------------------------------- /src/dotnet/NameSpaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/NameSpaceDoc.cs -------------------------------------------------------------------------------- /src/dotnet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/groundplane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/groundplane.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_color.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_content.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_decals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_decals.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_dithering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_dithering.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_doc_or_free_base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_doc_or_free_base.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_linearworkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_linearworkflow.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_pep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_pep.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/rdk_variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/rdk_variant.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/safeframe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/safeframe.cs -------------------------------------------------------------------------------- /src/dotnet/RDK/sun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDK/sun.cs -------------------------------------------------------------------------------- /src/dotnet/RDN_StrongName.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RDN_StrongName.snk -------------------------------------------------------------------------------- /src/dotnet/Rhino3dm.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Rhino3dm.Android.csproj -------------------------------------------------------------------------------- /src/dotnet/Rhino3dm.Android.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Rhino3dm.Android.nuspec -------------------------------------------------------------------------------- /src/dotnet/Rhino3dm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Rhino3dm.csproj -------------------------------------------------------------------------------- /src/dotnet/Rhino3dm.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Rhino3dm.iOS.csproj -------------------------------------------------------------------------------- /src/dotnet/Rhino3dm.iOS.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Rhino3dm.iOS.nuspec -------------------------------------------------------------------------------- /src/dotnet/Rhino3dm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/Rhino3dm.sln -------------------------------------------------------------------------------- /src/dotnet/RhinoMobile/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/RhinoMobile/ColorExtensions.cs -------------------------------------------------------------------------------- /src/dotnet/Structs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Rhino3dm.iOS 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/dotnet/UI/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/UI/Localization.cs -------------------------------------------------------------------------------- /src/dotnet/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /src/dotnet/build/net45/Rhino3dm.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/build/net45/Rhino3dm.props -------------------------------------------------------------------------------- /src/dotnet/hostutils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/hostutils.cs -------------------------------------------------------------------------------- /src/dotnet/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/icon.png -------------------------------------------------------------------------------- /src/dotnet/interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/interop.cs -------------------------------------------------------------------------------- /src/dotnet/monobuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/monobuild.py -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_3dm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_3dm.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_arc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_arc.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_archive.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_array.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_base32.cs: -------------------------------------------------------------------------------- 1 | // I'm not sure if this file needs to be wrapped -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_base64.cs: -------------------------------------------------------------------------------- 1 | // I'm not sure if this file needs to be wrapped -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_beam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_beam.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_bezier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_bezier.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_bitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_bitmap.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_box.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_brep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_brep.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_circle.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_color.cs: -------------------------------------------------------------------------------- 1 | // skip. Use System.Drawing.Color instead -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_cone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_cone.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_crc.cs: -------------------------------------------------------------------------------- 1 | // Implemented in RhinoMath. See opennurbs_defines.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_current_environment.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_curve.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_decals.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_defines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_defines.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_detail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_detail.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_dithering.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_ellipse.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_error.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_evaluate_nurbs.cs: -------------------------------------------------------------------------------- 1 | // skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_font.cs: -------------------------------------------------------------------------------- 1 | // try to use System.Drawing.Font if possible in place of ON_Font 2 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_fpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_fpoint.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_ground_plane.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_group.cs: -------------------------------------------------------------------------------- 1 | // public class ON_Group { } 2 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_hatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_hatch.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_knot.cs: -------------------------------------------------------------------------------- 1 | //skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_layer.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_leader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_leader.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_light.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_line.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_linear_workflow.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_list.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_lookup.cs: -------------------------------------------------------------------------------- 1 | // skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_mapchan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_mapchan.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_math.cs: -------------------------------------------------------------------------------- 1 | // skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_matrix.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_memory.cs: -------------------------------------------------------------------------------- 1 | // do not wrap this file -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_mesh.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_mesh_marker.cs: -------------------------------------------------------------------------------- 1 | // public class ON_MeshMarker { } 2 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_object.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_objref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_objref.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_offsetsurface.cs: -------------------------------------------------------------------------------- 1 | //skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_optimize.cs: -------------------------------------------------------------------------------- 1 | // skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_parse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_parse.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_plane.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_pluginlist.cs: -------------------------------------------------------------------------------- 1 | // skip for now -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_plus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_plus.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_plus_registry.cs: -------------------------------------------------------------------------------- 1 | // skip. Registry access is built into .NET framework -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_point.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_post_effect.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_render_channels.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_rtree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_rtree.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_safe_frame.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_skylight.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_sphere.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_squish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_squish.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_string.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_string.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_subd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_subd.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_sun.cs: -------------------------------------------------------------------------------- 1 | 2 | // OBSOLETE 3 | -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_surface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_surface.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_system.cs: -------------------------------------------------------------------------------- 1 | // do not wrap this file -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_text.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_textlog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_textlog.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_texture.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_torus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_torus.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_uuid.cs: -------------------------------------------------------------------------------- 1 | // no need to wrap -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_version.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_workspace.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_x.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_xform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/opennurbs/opennurbs_xform.cs -------------------------------------------------------------------------------- /src/dotnet/opennurbs/opennurbs_zlib.cs: -------------------------------------------------------------------------------- 1 | //public class ON_CompressedBuffer { } 2 | -------------------------------------------------------------------------------- /src/dotnet/postbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/postbuild.bat -------------------------------------------------------------------------------- /src/dotnet/postbuild_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/postbuild_copy.txt -------------------------------------------------------------------------------- /src/dotnet/resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/resolver.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/Interpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/Interpolator.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/RhinoColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/RhinoColors.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinofilewatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinofilewatcher.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkanalysismodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkanalysismodes.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkapp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkapp.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkappsettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkappsettings.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkbitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkbitmap.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkbrepobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkbrepobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcageobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkcageobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkchecks.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkclippingplane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkclippingplane.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcolorbutton.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkcommand.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcommandoption.cs: -------------------------------------------------------------------------------- 1 | //public class CommandOption { } 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcontextmenu.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcurveobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkcurveobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkcurveseam.cs: -------------------------------------------------------------------------------- 1 | // public class GetCurveSeam { } 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdetailobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdetailobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdialog.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdib.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdigitizerinfo.cs: -------------------------------------------------------------------------------- 1 | // public class DigitizerInfo { } 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdigitizermanager.cs: -------------------------------------------------------------------------------- 1 | // public class DigitizerManager { } 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdimension.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdimstyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdimstyle.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdimstylecombobox.cs: -------------------------------------------------------------------------------- 1 | //skip -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdirectorymanager.cs: -------------------------------------------------------------------------------- 1 | // public class DirectoryManager { } 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdisplay.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdisplayengine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdisplayengine.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdoc.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkdocproperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkdocproperties.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkeventwatcher.cs: -------------------------------------------------------------------------------- 1 | // All event watchers are implemented as delegates 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkextrude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkextrude.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkextrusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkextrusion.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkfair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkfair.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkfilemenu.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkfileoptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkfileoptions.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkfileutilities.cs: -------------------------------------------------------------------------------- 1 | // public class FileUtilities { } 2 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkfont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkfont.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkget.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetarc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetarc.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetcircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetcircle.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetcone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetcone.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetcylinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetcylinder.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetellipse.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetellipsoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetellipsoid.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetfiledialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetfiledialog.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetline.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetplane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetplane.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetpoint.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetpolyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetpolyline.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetsphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetsphere.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetstring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetstring.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgettcone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgettcone.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgettorus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgettorus.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgetxform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgetxform.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgrips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgrips.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgroup.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgroupobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgroupobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkgumball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkgumball.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkhatchobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkhatchobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkhatchpattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkhatchpattern.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkinstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkinstance.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdklayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdklayer.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkleader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkleader.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkleaderstyle.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdklight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdklight.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdklinetype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdklinetype.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkloft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkloft.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkmaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkmaterial.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkmeshextruder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkmeshextruder.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkmeshobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkmeshobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkmeshunwrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkmeshunwrapper.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkmouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkmouse.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkobjecthistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkobjecthistory.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkobjectmanager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkobjectmanager.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkpages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkpages.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkpanels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkpanels.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkpick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkpick.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkplugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkplugin.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkpointobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkpointobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkpolyedge.cs: -------------------------------------------------------------------------------- 1 | // skip -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkprintinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkprintinfo.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdksubdobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdksubdobject.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdksurfacefillet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdksurfacefillet.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdksweep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdksweep.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdktext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdktext.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkuifile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkuifile.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkunrollsrf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkunrollsrf.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkview.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkviewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkviewport.cs -------------------------------------------------------------------------------- /src/dotnet/rhino/rhinosdkworksession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/dotnet/rhino/rhinosdkworksession.cs -------------------------------------------------------------------------------- /src/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/ios.toolchain.cmake -------------------------------------------------------------------------------- /src/js/docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/js/docs/package-lock.json -------------------------------------------------------------------------------- /src/js/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/js/docs/package.json -------------------------------------------------------------------------------- /src/js/rhino3dm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/js/rhino3dm.d.ts -------------------------------------------------------------------------------- /src/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/lib/README.md -------------------------------------------------------------------------------- /src/librhino3dm_native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/CMakeLists.txt -------------------------------------------------------------------------------- /src/librhino3dm_native/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/Info.plist -------------------------------------------------------------------------------- /src/librhino3dm_native/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/base64.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/base64.h -------------------------------------------------------------------------------- /src/librhino3dm_native/curvedisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/curvedisplay.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/curvedisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/curvedisplay.h -------------------------------------------------------------------------------- /src/librhino3dm_native/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/glext.h -------------------------------------------------------------------------------- /src/librhino3dm_native/on_annotation2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_annotation2.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_arc.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_arccurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_arccurve.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_archive.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_array.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_beam.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_bezier.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_brep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_brep.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_circle.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_compstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_compstat.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_curve.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_decals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_decals.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_defines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_defines.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_detail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_detail.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_dimension.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_dimstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_dimstyle.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_dithering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_dithering.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_font.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_geometry.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_hatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_hatch.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_instance.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_intersect.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_layer.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_leader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_leader.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_light.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_line.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_linecurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_linecurve.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_linetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_linetype.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_massprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_massprop.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_material.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_math.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_mesh.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_nurbscurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_nurbscurve.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_object.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_parse.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_plane.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_plus.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_point.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_pointcloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_pointcloud.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_pointgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_pointgrid.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_polycurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_polycurve.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_post_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_post_effect.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_quaternion.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_revsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_revsurface.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_rtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_rtree.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_safe_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_safe_frame.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_skylight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_skylight.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_sphere.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_subd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_subd.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_sun.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_surface.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_terminator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_terminator.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_text.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_textlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_textlog.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_textstyle.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /src/librhino3dm_native/on_userdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_userdata.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_validate.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_viewport.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/on_xform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/on_xform.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/rdk_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/rdk_content.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/rhcommon_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/rhcommon_c.h -------------------------------------------------------------------------------- /src/librhino3dm_native/rhcommon_c.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/rhcommon_c.rc -------------------------------------------------------------------------------- /src/librhino3dm_native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/stdafx.cpp -------------------------------------------------------------------------------- /src/librhino3dm_native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/stdafx.h -------------------------------------------------------------------------------- /src/librhino3dm_native/stringholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/librhino3dm_native/stringholder.cpp -------------------------------------------------------------------------------- /src/methodgen/CommandlineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/methodgen/CommandlineParser.cs -------------------------------------------------------------------------------- /src/methodgen/CppEnumImports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/methodgen/CppEnumImports.cs -------------------------------------------------------------------------------- /src/methodgen/NativeMethodDeclares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/methodgen/NativeMethodDeclares.cs -------------------------------------------------------------------------------- /src/methodgen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/methodgen/Program.cs -------------------------------------------------------------------------------- /src/methodgen/methodgen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/methodgen/methodgen.csproj -------------------------------------------------------------------------------- /src/methodgen/methodgen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/methodgen/methodgen.sln -------------------------------------------------------------------------------- /src/py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/py/requirements.txt -------------------------------------------------------------------------------- /src/rhino3dm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhino3dm/__init__.py -------------------------------------------------------------------------------- /src/rhino3dm/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhino3dm/__init__.pyi -------------------------------------------------------------------------------- /src/rhino3dm/py.typed: -------------------------------------------------------------------------------- 1 | #marker file for PEP 561 -------------------------------------------------------------------------------- /src/rhinocore_bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhinocore_bindings/CMakeLists.txt -------------------------------------------------------------------------------- /src/rhinocore_bindings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhinocore_bindings/readme.md -------------------------------------------------------------------------------- /src/rhinocore_bindings/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhinocore_bindings/stdafx.cpp -------------------------------------------------------------------------------- /src/rhinocore_bindings/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhinocore_bindings/stdafx.h -------------------------------------------------------------------------------- /src/rhinocore_bindings/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/src/rhinocore_bindings/targetver.h -------------------------------------------------------------------------------- /src/version.txt: -------------------------------------------------------------------------------- 1 | 8.17.0 -------------------------------------------------------------------------------- /tests/DotNetTester/DotNetTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/DotNetTester/DotNetTester.csproj -------------------------------------------------------------------------------- /tests/DotNetTester/DotNetTester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/DotNetTester/DotNetTester.sln -------------------------------------------------------------------------------- /tests/DotNetTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/DotNetTester/Program.cs -------------------------------------------------------------------------------- /tests/DotNetTester/test_in.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/DotNetTester/test_in.3dm -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/SampleCSAddGroup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/SampleCSAddGroup/Program.cs -------------------------------------------------------------------------------- /tests/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cpp/ontest_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/cpp/ontest_view.cpp -------------------------------------------------------------------------------- /tests/dotnet/Usings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; -------------------------------------------------------------------------------- /tests/dotnet/annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/annotation.cs -------------------------------------------------------------------------------- /tests/dotnet/curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/curve.cs -------------------------------------------------------------------------------- /tests/dotnet/file3dm.LayerTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/file3dm.LayerTable.cs -------------------------------------------------------------------------------- /tests/dotnet/file3dm.ObjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/file3dm.ObjectTable.cs -------------------------------------------------------------------------------- /tests/dotnet/file3dm.ViewTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/file3dm.ViewTable.cs -------------------------------------------------------------------------------- /tests/dotnet/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dotnet/nurbsCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/nurbsCurve.cs -------------------------------------------------------------------------------- /tests/dotnet/object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/object.cs -------------------------------------------------------------------------------- /tests/dotnet/pointCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/pointCloud.cs -------------------------------------------------------------------------------- /tests/dotnet/polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/polyline.cs -------------------------------------------------------------------------------- /tests/dotnet/polylineCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/polylineCurve.cs -------------------------------------------------------------------------------- /tests/dotnet/rhino3dm_test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/rhino3dm_test.csproj -------------------------------------------------------------------------------- /tests/dotnet/rhino3dm_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/dotnet/rhino3dm_test.sln -------------------------------------------------------------------------------- /tests/javascript/annotation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/annotation.test.js -------------------------------------------------------------------------------- /tests/javascript/attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/attributes.test.js -------------------------------------------------------------------------------- /tests/javascript/bezierCurve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/bezierCurve.test.js -------------------------------------------------------------------------------- /tests/javascript/brep.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/brep.test.js -------------------------------------------------------------------------------- /tests/javascript/circle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/circle.test.js -------------------------------------------------------------------------------- /tests/javascript/curve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/curve.test.js -------------------------------------------------------------------------------- /tests/javascript/draco.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/draco.test.js -------------------------------------------------------------------------------- /tests/javascript/extrusion.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/extrusion.test.js -------------------------------------------------------------------------------- /tests/javascript/file3dm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/file3dm.test.js -------------------------------------------------------------------------------- /tests/javascript/instance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/instance.test.js -------------------------------------------------------------------------------- /tests/javascript/intersection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/intersection.test.js -------------------------------------------------------------------------------- /tests/javascript/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/javascript/light.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/light.test.js -------------------------------------------------------------------------------- /tests/javascript/lineType.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/lineType.test.js -------------------------------------------------------------------------------- /tests/javascript/mesh.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/mesh.test.js -------------------------------------------------------------------------------- /tests/javascript/nurbsCurve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/nurbsCurve.test.js -------------------------------------------------------------------------------- /tests/javascript/nurbsSurface.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/nurbsSurface.test.js -------------------------------------------------------------------------------- /tests/javascript/object.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/object.test.js -------------------------------------------------------------------------------- /tests/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/package.json -------------------------------------------------------------------------------- /tests/javascript/pointcloud.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/pointcloud.test.js -------------------------------------------------------------------------------- /tests/javascript/polyCurve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/polyCurve.test.js -------------------------------------------------------------------------------- /tests/javascript/polyline.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/polyline.test.js -------------------------------------------------------------------------------- /tests/javascript/polylineCurve.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/polylineCurve.test.js -------------------------------------------------------------------------------- /tests/javascript/sphere.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/sphere.test.js -------------------------------------------------------------------------------- /tests/javascript/surface.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/surface.test.js -------------------------------------------------------------------------------- /tests/javascript/version.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/version.test.js -------------------------------------------------------------------------------- /tests/javascript/viewport.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/viewport.test.js -------------------------------------------------------------------------------- /tests/javascript/xform.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/javascript/xform.test.js -------------------------------------------------------------------------------- /tests/models/blocks.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/blocks.3dm -------------------------------------------------------------------------------- /tests/models/file3dm_stuff.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/file3dm_stuff.3dm -------------------------------------------------------------------------------- /tests/models/groups.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/groups.3dm -------------------------------------------------------------------------------- /tests/models/light.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/light.3dm -------------------------------------------------------------------------------- /tests/models/mesh.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/mesh.3dm -------------------------------------------------------------------------------- /tests/models/object_UserStrings.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/object_UserStrings.3dm -------------------------------------------------------------------------------- /tests/models/textEntities_r8.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/models/textEntities_r8.3dm -------------------------------------------------------------------------------- /tests/python/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python/test_Annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Annotation.py -------------------------------------------------------------------------------- /tests/python/test_Attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Attributes.py -------------------------------------------------------------------------------- /tests/python/test_BezierCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_BezierCurve.py -------------------------------------------------------------------------------- /tests/python/test_Brep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Brep.py -------------------------------------------------------------------------------- /tests/python/test_Circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Circle.py -------------------------------------------------------------------------------- /tests/python/test_Curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Curve.py -------------------------------------------------------------------------------- /tests/python/test_Draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Draco.py -------------------------------------------------------------------------------- /tests/python/test_Extrusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Extrusion.py -------------------------------------------------------------------------------- /tests/python/test_File3dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm.py -------------------------------------------------------------------------------- /tests/python/test_File3dm_BitmapTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm_BitmapTable.py -------------------------------------------------------------------------------- /tests/python/test_File3dm_GroupTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm_GroupTable.py -------------------------------------------------------------------------------- /tests/python/test_File3dm_LayerTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm_LayerTable.py -------------------------------------------------------------------------------- /tests/python/test_File3dm_ObjectTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm_ObjectTable.py -------------------------------------------------------------------------------- /tests/python/test_File3dm_RenderChannels.py: -------------------------------------------------------------------------------- 1 | #TODO -------------------------------------------------------------------------------- /tests/python/test_File3dm_StringTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm_StringTable.py -------------------------------------------------------------------------------- /tests/python/test_File3dm_ViewTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_File3dm_ViewTable.py -------------------------------------------------------------------------------- /tests/python/test_Instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Instance.py -------------------------------------------------------------------------------- /tests/python/test_Intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Intersection.py -------------------------------------------------------------------------------- /tests/python/test_Light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Light.py -------------------------------------------------------------------------------- /tests/python/test_Linetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Linetype.py -------------------------------------------------------------------------------- /tests/python/test_Mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Mesh.py -------------------------------------------------------------------------------- /tests/python/test_NurbsCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_NurbsCurve.py -------------------------------------------------------------------------------- /tests/python/test_NurbsSurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_NurbsSurface.py -------------------------------------------------------------------------------- /tests/python/test_Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Object.py -------------------------------------------------------------------------------- /tests/python/test_Object_UserString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Object_UserString.py -------------------------------------------------------------------------------- /tests/python/test_PointCloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_PointCloud.py -------------------------------------------------------------------------------- /tests/python/test_PolyCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_PolyCurve.py -------------------------------------------------------------------------------- /tests/python/test_Polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Polyline.py -------------------------------------------------------------------------------- /tests/python/test_PolylineCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_PolylineCurve.py -------------------------------------------------------------------------------- /tests/python/test_Sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Sphere.py -------------------------------------------------------------------------------- /tests/python/test_Surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Surface.py -------------------------------------------------------------------------------- /tests/python/test_Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Version.py -------------------------------------------------------------------------------- /tests/python/test_Viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Viewport.py -------------------------------------------------------------------------------- /tests/python/test_Xform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/python/test_Xform.py -------------------------------------------------------------------------------- /tests/rhino3dmtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/rhino3dm/HEAD/tests/rhino3dmtests.py --------------------------------------------------------------------------------