├── .gitattributes ├── .gitignore ├── .nuspec ├── API ├── SketchUpAPI.dll ├── SketchUpAPI.lib ├── SketchUpAPI │ ├── application │ │ ├── application.h │ │ └── ruby_api.h │ ├── color.h │ ├── common.h │ ├── defs.h │ ├── extension_license.h │ ├── geometry.h │ ├── geometry │ │ ├── bounding_box.h │ │ ├── plane3d.h │ │ ├── point2d.h │ │ ├── point3d.h │ │ ├── ray3d.h │ │ ├── transformation.h │ │ ├── transformation2d.h │ │ ├── vector2d.h │ │ └── vector3d.h │ ├── import_export │ │ ├── modelexporterplugin.h │ │ ├── modelimporterplugin.h │ │ └── pluginprogresscallback.h │ ├── initialize.h │ ├── length_formatter.h │ ├── model │ │ ├── arccurve.h │ │ ├── arrow_type.h │ │ ├── attribute_dictionary.h │ │ ├── axes.h │ │ ├── camera.h │ │ ├── classification_attribute.h │ │ ├── classification_info.h │ │ ├── classifications.h │ │ ├── component_definition.h │ │ ├── component_instance.h │ │ ├── curve.h │ │ ├── defs.h │ │ ├── dimension.h │ │ ├── dimension_linear.h │ │ ├── dimension_radial.h │ │ ├── dimension_style.h │ │ ├── drawing_element.h │ │ ├── dynamic_component_attribute.h │ │ ├── dynamic_component_info.h │ │ ├── edge.h │ │ ├── edge_use.h │ │ ├── entities.h │ │ ├── entity.h │ │ ├── entity_list.h │ │ ├── entity_list_iterator.h │ │ ├── face.h │ │ ├── font.h │ │ ├── geometry.h │ │ ├── geometry_input.h │ │ ├── group.h │ │ ├── guide_line.h │ │ ├── guide_point.h │ │ ├── image.h │ │ ├── image_rep.h │ │ ├── instancepath.h │ │ ├── layer.h │ │ ├── layer_folder.h │ │ ├── line_style.h │ │ ├── line_styles.h │ │ ├── location.h │ │ ├── loop.h │ │ ├── material.h │ │ ├── mesh_helper.h │ │ ├── model.h │ │ ├── opening.h │ │ ├── options_manager.h │ │ ├── options_provider.h │ │ ├── polyline3d.h │ │ ├── rendering_options.h │ │ ├── scene.h │ │ ├── schema.h │ │ ├── schema_type.h │ │ ├── section_plane.h │ │ ├── selection.h │ │ ├── shadow_info.h │ │ ├── skp.h │ │ ├── style.h │ │ ├── styles.h │ │ ├── text.h │ │ ├── texture.h │ │ ├── texture_writer.h │ │ ├── typed_value.h │ │ ├── uv_helper.h │ │ └── vertex.h │ ├── sketchup.h │ ├── sketchup_info.h │ ├── slapi.h │ ├── transformation.h │ ├── unicodestring.h │ └── utils │ │ └── math_helpers.h ├── SketchUpCommonPreferences.dll └── sketchup.lib ├── Icons ├── ReadSKP.png ├── ReadSKPSmall.png ├── SKP.png ├── SKPSmall.png ├── WriteSKP.png └── WriteSKPSmall.png ├── LICENSE ├── README.md ├── SketchUpForDynamo ├── Material.cs ├── Properties │ └── AssemblyInfo.cs ├── SketchUp.cs ├── SketchUpForDynamo.csproj ├── SketchUpForDynamoImages.resources └── SketchUpForDynamoImages.resx ├── SketchUpForGrasshopper ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Skp.png ├── SketchUp.cs └── SketchUpForGrasshopper.csproj ├── SketchUpNET.Unittest ├── BasicTests.cs ├── Properties │ └── AssemblyInfo.cs └── SketchUpNET.Unittest.csproj ├── SketchUpNET.sln ├── SketchUpNET ├── Color.cpp ├── Color.h ├── Component.cpp ├── Component.h ├── Curve.cpp ├── Curve.h ├── Edge.cpp ├── Edge.h ├── Group.cpp ├── Group.h ├── Instance.cpp ├── Instance.h ├── Layer.cpp ├── Layer.h ├── Loop.cpp ├── Loop.h ├── Material.cpp ├── Material.h ├── Mesh.cpp ├── Mesh.h ├── MeshFace.cpp ├── MeshFace.h ├── Opening.cpp ├── SketchUpNET.cpp ├── SketchUpNET.rc ├── SketchUpNET.vcxproj ├── SketchUpNET.vcxproj.filters ├── Surface.cpp ├── Surface.h ├── Texture.cpp ├── Texture.h ├── Transform.cpp ├── Transform.h ├── Utilities.cpp ├── Utilities.h ├── Vector.cpp ├── Vector.h ├── Vertex.cpp ├── Vertex.h └── resource.h ├── SketchUpNETConsole ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── SketchUpNETConsole.csproj ├── SketchUpTest └── SketchUpTest.vcxproj └── Testfiles ├── NewFile.skp ├── TestDefinition.gh ├── TestModel.skb ├── TestModel.skp ├── TestModel~.skp ├── TestReadDefinition.dyn ├── TestWriteDefinition.dyn └── Überß.skp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/.nuspec -------------------------------------------------------------------------------- /API/SketchUpAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI.dll -------------------------------------------------------------------------------- /API/SketchUpAPI.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI.lib -------------------------------------------------------------------------------- /API/SketchUpAPI/application/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/application/application.h -------------------------------------------------------------------------------- /API/SketchUpAPI/application/ruby_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/application/ruby_api.h -------------------------------------------------------------------------------- /API/SketchUpAPI/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/color.h -------------------------------------------------------------------------------- /API/SketchUpAPI/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/common.h -------------------------------------------------------------------------------- /API/SketchUpAPI/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/defs.h -------------------------------------------------------------------------------- /API/SketchUpAPI/extension_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/extension_license.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/bounding_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/bounding_box.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/plane3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/plane3d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/point2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/point2d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/point3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/point3d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/ray3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/ray3d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/transformation.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/transformation2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/transformation2d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/vector2d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/geometry/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/geometry/vector3d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/import_export/modelexporterplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/import_export/modelexporterplugin.h -------------------------------------------------------------------------------- /API/SketchUpAPI/import_export/modelimporterplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/import_export/modelimporterplugin.h -------------------------------------------------------------------------------- /API/SketchUpAPI/import_export/pluginprogresscallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/import_export/pluginprogresscallback.h -------------------------------------------------------------------------------- /API/SketchUpAPI/initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/initialize.h -------------------------------------------------------------------------------- /API/SketchUpAPI/length_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/length_formatter.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/arccurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/arccurve.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/arrow_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/arrow_type.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/attribute_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/attribute_dictionary.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/axes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/axes.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/camera.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/classification_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/classification_attribute.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/classification_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/classification_info.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/classifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/classifications.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/component_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/component_definition.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/component_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/component_instance.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/curve.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/defs.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/dimension.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/dimension_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/dimension_linear.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/dimension_radial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/dimension_radial.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/dimension_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/dimension_style.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/drawing_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/drawing_element.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/dynamic_component_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/dynamic_component_attribute.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/dynamic_component_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/dynamic_component_info.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/edge.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/edge_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/edge_use.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/entities.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/entity.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/entity_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/entity_list.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/entity_list_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/entity_list_iterator.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/face.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/font.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/geometry.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/geometry_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/geometry_input.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/group.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/guide_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/guide_line.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/guide_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/guide_point.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/image.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/image_rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/image_rep.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/instancepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/instancepath.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/layer.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/layer_folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/layer_folder.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/line_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/line_style.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/line_styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/line_styles.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/location.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/loop.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/material.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/mesh_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/mesh_helper.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/model.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/opening.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/opening.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/options_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/options_manager.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/options_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/options_provider.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/polyline3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/polyline3d.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/rendering_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/rendering_options.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/scene.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/schema.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/schema_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/schema_type.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/section_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/section_plane.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/selection.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/shadow_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/shadow_info.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/skp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/skp.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/style.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/styles.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/text.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/texture.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/texture_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/texture_writer.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/typed_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/typed_value.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/uv_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/uv_helper.h -------------------------------------------------------------------------------- /API/SketchUpAPI/model/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/model/vertex.h -------------------------------------------------------------------------------- /API/SketchUpAPI/sketchup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/sketchup.h -------------------------------------------------------------------------------- /API/SketchUpAPI/sketchup_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/sketchup_info.h -------------------------------------------------------------------------------- /API/SketchUpAPI/slapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/slapi.h -------------------------------------------------------------------------------- /API/SketchUpAPI/transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/transformation.h -------------------------------------------------------------------------------- /API/SketchUpAPI/unicodestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/unicodestring.h -------------------------------------------------------------------------------- /API/SketchUpAPI/utils/math_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpAPI/utils/math_helpers.h -------------------------------------------------------------------------------- /API/SketchUpCommonPreferences.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/SketchUpCommonPreferences.dll -------------------------------------------------------------------------------- /API/sketchup.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/API/sketchup.lib -------------------------------------------------------------------------------- /Icons/ReadSKP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Icons/ReadSKP.png -------------------------------------------------------------------------------- /Icons/ReadSKPSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Icons/ReadSKPSmall.png -------------------------------------------------------------------------------- /Icons/SKP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Icons/SKP.png -------------------------------------------------------------------------------- /Icons/SKPSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Icons/SKPSmall.png -------------------------------------------------------------------------------- /Icons/WriteSKP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Icons/WriteSKP.png -------------------------------------------------------------------------------- /Icons/WriteSKPSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Icons/WriteSKPSmall.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/README.md -------------------------------------------------------------------------------- /SketchUpForDynamo/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForDynamo/Material.cs -------------------------------------------------------------------------------- /SketchUpForDynamo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForDynamo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SketchUpForDynamo/SketchUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForDynamo/SketchUp.cs -------------------------------------------------------------------------------- /SketchUpForDynamo/SketchUpForDynamo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForDynamo/SketchUpForDynamo.csproj -------------------------------------------------------------------------------- /SketchUpForDynamo/SketchUpForDynamoImages.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForDynamo/SketchUpForDynamoImages.resources -------------------------------------------------------------------------------- /SketchUpForDynamo/SketchUpForDynamoImages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForDynamo/SketchUpForDynamoImages.resx -------------------------------------------------------------------------------- /SketchUpForGrasshopper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForGrasshopper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SketchUpForGrasshopper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForGrasshopper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SketchUpForGrasshopper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForGrasshopper/Properties/Resources.resx -------------------------------------------------------------------------------- /SketchUpForGrasshopper/Resources/Skp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForGrasshopper/Resources/Skp.png -------------------------------------------------------------------------------- /SketchUpForGrasshopper/SketchUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForGrasshopper/SketchUp.cs -------------------------------------------------------------------------------- /SketchUpForGrasshopper/SketchUpForGrasshopper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpForGrasshopper/SketchUpForGrasshopper.csproj -------------------------------------------------------------------------------- /SketchUpNET.Unittest/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET.Unittest/BasicTests.cs -------------------------------------------------------------------------------- /SketchUpNET.Unittest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET.Unittest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SketchUpNET.Unittest/SketchUpNET.Unittest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET.Unittest/SketchUpNET.Unittest.csproj -------------------------------------------------------------------------------- /SketchUpNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET.sln -------------------------------------------------------------------------------- /SketchUpNET/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Color.cpp -------------------------------------------------------------------------------- /SketchUpNET/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Color.h -------------------------------------------------------------------------------- /SketchUpNET/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Component.cpp -------------------------------------------------------------------------------- /SketchUpNET/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Component.h -------------------------------------------------------------------------------- /SketchUpNET/Curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Curve.cpp -------------------------------------------------------------------------------- /SketchUpNET/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Curve.h -------------------------------------------------------------------------------- /SketchUpNET/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Edge.cpp -------------------------------------------------------------------------------- /SketchUpNET/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Edge.h -------------------------------------------------------------------------------- /SketchUpNET/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Group.cpp -------------------------------------------------------------------------------- /SketchUpNET/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Group.h -------------------------------------------------------------------------------- /SketchUpNET/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Instance.cpp -------------------------------------------------------------------------------- /SketchUpNET/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Instance.h -------------------------------------------------------------------------------- /SketchUpNET/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Layer.cpp -------------------------------------------------------------------------------- /SketchUpNET/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Layer.h -------------------------------------------------------------------------------- /SketchUpNET/Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Loop.cpp -------------------------------------------------------------------------------- /SketchUpNET/Loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Loop.h -------------------------------------------------------------------------------- /SketchUpNET/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Material.cpp -------------------------------------------------------------------------------- /SketchUpNET/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Material.h -------------------------------------------------------------------------------- /SketchUpNET/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Mesh.cpp -------------------------------------------------------------------------------- /SketchUpNET/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Mesh.h -------------------------------------------------------------------------------- /SketchUpNET/MeshFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/MeshFace.cpp -------------------------------------------------------------------------------- /SketchUpNET/MeshFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/MeshFace.h -------------------------------------------------------------------------------- /SketchUpNET/Opening.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Opening.cpp -------------------------------------------------------------------------------- /SketchUpNET/SketchUpNET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/SketchUpNET.cpp -------------------------------------------------------------------------------- /SketchUpNET/SketchUpNET.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/SketchUpNET.rc -------------------------------------------------------------------------------- /SketchUpNET/SketchUpNET.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/SketchUpNET.vcxproj -------------------------------------------------------------------------------- /SketchUpNET/SketchUpNET.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/SketchUpNET.vcxproj.filters -------------------------------------------------------------------------------- /SketchUpNET/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Surface.cpp -------------------------------------------------------------------------------- /SketchUpNET/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Surface.h -------------------------------------------------------------------------------- /SketchUpNET/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Texture.cpp -------------------------------------------------------------------------------- /SketchUpNET/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Texture.h -------------------------------------------------------------------------------- /SketchUpNET/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Transform.cpp -------------------------------------------------------------------------------- /SketchUpNET/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Transform.h -------------------------------------------------------------------------------- /SketchUpNET/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Utilities.cpp -------------------------------------------------------------------------------- /SketchUpNET/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Utilities.h -------------------------------------------------------------------------------- /SketchUpNET/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Vector.cpp -------------------------------------------------------------------------------- /SketchUpNET/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Vector.h -------------------------------------------------------------------------------- /SketchUpNET/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Vertex.cpp -------------------------------------------------------------------------------- /SketchUpNET/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/Vertex.h -------------------------------------------------------------------------------- /SketchUpNET/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNET/resource.h -------------------------------------------------------------------------------- /SketchUpNETConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNETConsole/App.config -------------------------------------------------------------------------------- /SketchUpNETConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNETConsole/Program.cs -------------------------------------------------------------------------------- /SketchUpNETConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNETConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SketchUpNETConsole/SketchUpNETConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpNETConsole/SketchUpNETConsole.csproj -------------------------------------------------------------------------------- /SketchUpTest/SketchUpTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/SketchUpTest/SketchUpTest.vcxproj -------------------------------------------------------------------------------- /Testfiles/NewFile.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/NewFile.skp -------------------------------------------------------------------------------- /Testfiles/TestDefinition.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/TestDefinition.gh -------------------------------------------------------------------------------- /Testfiles/TestModel.skb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/TestModel.skb -------------------------------------------------------------------------------- /Testfiles/TestModel.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/TestModel.skp -------------------------------------------------------------------------------- /Testfiles/TestModel~.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/TestModel~.skp -------------------------------------------------------------------------------- /Testfiles/TestReadDefinition.dyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/TestReadDefinition.dyn -------------------------------------------------------------------------------- /Testfiles/TestWriteDefinition.dyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/TestWriteDefinition.dyn -------------------------------------------------------------------------------- /Testfiles/Überß.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moethu/SketchUpNET/HEAD/Testfiles/Überß.skp --------------------------------------------------------------------------------