scriptup 2024.0.7 → 2026.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/ext/attribute_dictionaries.h +6 -1
- data/ext/attribute_dictionary.c +1 -0
- data/ext/attribute_dictionary.h +6 -1
- data/ext/behavior.h +6 -1
- data/ext/color.h +6 -1
- data/ext/component_definition.h +6 -1
- data/ext/component_instance.h +6 -1
- data/ext/definition_list.h +6 -1
- data/ext/drawing_element.c +135 -0
- data/ext/drawing_element.h +6 -1
- data/ext/entities.c +13 -0
- data/ext/entities.h +6 -1
- data/ext/entity.c +3 -0
- data/ext/entity.h +6 -1
- data/ext/material.h +6 -1
- data/ext/materials.h +6 -1
- data/ext/model.h +6 -1
- data/ext/not_implemented.c +88 -0
- data/ext/not_implemented.h +20 -0
- data/ext/sketchup.c +15 -0
- data/ext/sketchup.h +6 -1
- data/ext/texture.c +99 -0
- data/ext/texture.h +6 -1
- data/ext/typed_value.h +6 -0
- data/ext/utils.h +34 -3
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonGeometry.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/{Libraries → Frameworks}/libCommonGeoutils.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/{Libraries → Frameworks}/libCommonImage.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonPreferences.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonUnits.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonUtils.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonZip.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/model.h +4 -4
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/overlay.h +20 -6
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/common.h +9 -9
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/extension_license.h +9 -1
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/point2d.h +2 -2
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/point3d.h +2 -2
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/transformation2d.h +3 -3
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/vector2d.h +5 -5
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/vector3d.h +4 -4
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry.h +9 -7
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/import_export/modelimporterplugin.h +8 -4
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/attribute_dictionary.h +4 -4
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_definition.h +74 -33
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_definition_snap_to_behavior_private.h +46 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_instance.h +11 -11
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/curve.h +4 -4
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/defs.h +7 -2
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/dimension.h +2 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/drawing_element.h +11 -11
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/edge.h +7 -7
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entities.h +106 -61
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity.h +7 -4
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/environment.h +382 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/environments.h +133 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/face.h +43 -27
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/geometry_input.h +126 -116
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/group.h +9 -8
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/image.h +6 -5
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/layer.h +3 -3
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/material.h +432 -25
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model.h +263 -100
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model_entity_type_private.h +44 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/rendering_options.h +82 -81
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/scene.h +222 -42
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/snap.h +183 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/space.h +26 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/styles.h +29 -27
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/text.h +14 -6
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/texture.h +23 -1
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/typed_value.h +26 -26
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/vertex.h +2 -2
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/sketchup.h +4 -1
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/unicodestring.h +7 -7
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Resources/Info.plist +8 -8
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/SketchUpAPI +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/_CodeSignature/CodeResources +144 -88
- data/sketchup-sdk-win/binaries/layout/x64/LayOutAPI.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutAPI.lib +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutControllers.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutModel.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutRTF.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutUtils.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutView.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/SketchUpCommonPreferences.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.lib +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/pdflib.dll +0 -0
- data/sketchup-sdk-win/binaries/sketchup/x64/SketchUpAPI.dll +0 -0
- data/sketchup-sdk-win/binaries/sketchup/x64/SketchUpAPI.lib +0 -0
- data/sketchup-sdk-win/binaries/sketchup/x64/SketchUpCommonPreferences.dll +0 -0
- data/sketchup-sdk-win/binaries/sketchup/x64/sketchup.lib +0 -0
- data/sketchup-sdk-win/headers/LayOutAPI/application/application.h +14 -14
- data/sketchup-sdk-win/headers/LayOutAPI/layout.h +1 -1
- data/sketchup-sdk-win/headers/LayOutAPI/model/dictionary.h +1 -1
- data/sketchup-sdk-win/headers/LayOutAPI/model/document.h +73 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/documentexportoptions.h +21 -2
- data/sketchup-sdk-win/headers/LayOutAPI/model/entity.h +72 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/group.h +2 -1
- data/sketchup-sdk-win/headers/LayOutAPI/model/lineardimension.h +54 -2
- data/sketchup-sdk-win/headers/LayOutAPI/model/page.h +70 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/sketchupmodel.h +58 -1
- data/sketchup-sdk-win/headers/LayOutAPI/model/style.h +39 -3
- data/sketchup-sdk-win/headers/LayOutAPI/model/table.h +2 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/typed_value.h +25 -1
- data/sketchup-sdk-win/headers/SketchUpAPI/application/model.h +4 -4
- data/sketchup-sdk-win/headers/SketchUpAPI/application/overlay.h +20 -6
- data/sketchup-sdk-win/headers/SketchUpAPI/common.h +9 -9
- data/sketchup-sdk-win/headers/SketchUpAPI/extension_license.h +9 -1
- data/sketchup-sdk-win/headers/SketchUpAPI/geometry/point2d.h +2 -2
- data/sketchup-sdk-win/headers/SketchUpAPI/geometry/point3d.h +2 -2
- data/sketchup-sdk-win/headers/SketchUpAPI/geometry/transformation2d.h +3 -3
- data/sketchup-sdk-win/headers/SketchUpAPI/geometry/vector2d.h +5 -5
- data/sketchup-sdk-win/headers/SketchUpAPI/geometry/vector3d.h +4 -4
- data/sketchup-sdk-win/headers/SketchUpAPI/geometry.h +9 -7
- data/sketchup-sdk-win/headers/SketchUpAPI/import_export/modelimporterplugin.h +8 -4
- data/sketchup-sdk-win/headers/SketchUpAPI/model/attribute_dictionary.h +4 -4
- data/sketchup-sdk-win/headers/SketchUpAPI/model/component_definition.h +74 -33
- data/sketchup-sdk-win/headers/SketchUpAPI/model/component_definition_snap_to_behavior_private.h +46 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/component_instance.h +11 -11
- data/sketchup-sdk-win/headers/SketchUpAPI/model/curve.h +4 -4
- data/sketchup-sdk-win/headers/SketchUpAPI/model/defs.h +7 -2
- data/sketchup-sdk-win/headers/SketchUpAPI/model/dimension.h +2 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/drawing_element.h +11 -11
- data/sketchup-sdk-win/headers/SketchUpAPI/model/edge.h +7 -7
- data/sketchup-sdk-win/headers/SketchUpAPI/model/entities.h +106 -61
- data/sketchup-sdk-win/headers/SketchUpAPI/model/entity.h +7 -4
- data/sketchup-sdk-win/headers/SketchUpAPI/model/environment.h +382 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/environments.h +133 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/face.h +43 -27
- data/sketchup-sdk-win/headers/SketchUpAPI/model/geometry_input.h +126 -116
- data/sketchup-sdk-win/headers/SketchUpAPI/model/group.h +9 -8
- data/sketchup-sdk-win/headers/SketchUpAPI/model/image.h +6 -5
- data/sketchup-sdk-win/headers/SketchUpAPI/model/layer.h +3 -3
- data/sketchup-sdk-win/headers/SketchUpAPI/model/material.h +432 -25
- data/sketchup-sdk-win/headers/SketchUpAPI/model/model.h +263 -100
- data/sketchup-sdk-win/headers/SketchUpAPI/model/model_entity_type_private.h +44 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/rendering_options.h +82 -81
- data/sketchup-sdk-win/headers/SketchUpAPI/model/scene.h +222 -42
- data/sketchup-sdk-win/headers/SketchUpAPI/model/snap.h +183 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/space.h +26 -0
- data/sketchup-sdk-win/headers/SketchUpAPI/model/styles.h +29 -27
- data/sketchup-sdk-win/headers/SketchUpAPI/model/text.h +14 -6
- data/sketchup-sdk-win/headers/SketchUpAPI/model/texture.h +23 -1
- data/sketchup-sdk-win/headers/SketchUpAPI/model/typed_value.h +26 -26
- data/sketchup-sdk-win/headers/SketchUpAPI/model/vertex.h +2 -2
- data/sketchup-sdk-win/headers/SketchUpAPI/sketchup.h +4 -1
- data/sketchup-sdk-win/headers/SketchUpAPI/unicodestring.h +7 -7
- metadata +27 -13
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonGeometry.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonPreferences.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUnits.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUtils.dylib +0 -0
- data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonZip.dylib +0 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/skpfilereference.h +0 -94
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scriptup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2026.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Noel Warren
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -77,6 +77,8 @@ files:
|
|
77
77
|
- ext/materials.h
|
78
78
|
- ext/model.c
|
79
79
|
- ext/model.h
|
80
|
+
- ext/not_implemented.c
|
81
|
+
- ext/not_implemented.h
|
80
82
|
- ext/sketchup.c
|
81
83
|
- ext/sketchup.h
|
82
84
|
- ext/texture.c
|
@@ -85,6 +87,13 @@ files:
|
|
85
87
|
- ext/typed_value.h
|
86
88
|
- ext/utils.h
|
87
89
|
- lib/sketchup.rb
|
90
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonGeometry.dylib
|
91
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonGeoutils.dylib
|
92
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonImage.dylib
|
93
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonPreferences.dylib
|
94
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonUnits.dylib
|
95
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonUtils.dylib
|
96
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonZip.dylib
|
88
97
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/application.h
|
89
98
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/model.h
|
90
99
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/overlay.h
|
@@ -117,6 +126,7 @@ files:
|
|
117
126
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/classification_info.h
|
118
127
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/classifications.h
|
119
128
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_definition.h
|
129
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_definition_snap_to_behavior_private.h
|
120
130
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_instance.h
|
121
131
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/curve.h
|
122
132
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/defs.h
|
@@ -133,6 +143,8 @@ files:
|
|
133
143
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity.h
|
134
144
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity_list.h
|
135
145
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity_list_iterator.h
|
146
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/environment.h
|
147
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/environments.h
|
136
148
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/face.h
|
137
149
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/font.h
|
138
150
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/geometry.h
|
@@ -152,6 +164,7 @@ files:
|
|
152
164
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/material.h
|
153
165
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/mesh_helper.h
|
154
166
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model.h
|
167
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model_entity_type_private.h
|
155
168
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model_version.h
|
156
169
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/opening.h
|
157
170
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/options_manager.h
|
@@ -165,6 +178,8 @@ files:
|
|
165
178
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/selection.h
|
166
179
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/shadow_info.h
|
167
180
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/skp.h
|
181
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/snap.h
|
182
|
+
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/space.h
|
168
183
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/style.h
|
169
184
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/styles.h
|
170
185
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/text.h
|
@@ -179,13 +194,6 @@ files:
|
|
179
194
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/transformation.h
|
180
195
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/unicodestring.h
|
181
196
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/utils/math_helpers.h
|
182
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonGeometry.dylib
|
183
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonGeoutils.dylib
|
184
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonImage.dylib
|
185
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonPreferences.dylib
|
186
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUnits.dylib
|
187
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUtils.dylib
|
188
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonZip.dylib
|
189
197
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Resources/Info.plist
|
190
198
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/SketchUpAPI
|
191
199
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/_CodeSignature/CodeResources
|
@@ -195,6 +203,7 @@ files:
|
|
195
203
|
- sketchup-sdk-win/binaries/layout/x64/LayOutModel.dll
|
196
204
|
- sketchup-sdk-win/binaries/layout/x64/LayOutRTF.dll
|
197
205
|
- sketchup-sdk-win/binaries/layout/x64/LayOutUtils.dll
|
206
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutView.dll
|
198
207
|
- sketchup-sdk-win/binaries/layout/x64/SketchUpCommonPreferences.dll
|
199
208
|
- sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.dll
|
200
209
|
- sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.lib
|
@@ -237,7 +246,6 @@ files:
|
|
237
246
|
- sketchup-sdk-win/headers/LayOutAPI/model/rectangle.h
|
238
247
|
- sketchup-sdk-win/headers/LayOutAPI/model/referenceentity.h
|
239
248
|
- sketchup-sdk-win/headers/LayOutAPI/model/sketchupmodel.h
|
240
|
-
- sketchup-sdk-win/headers/LayOutAPI/model/skpfilereference.h
|
241
249
|
- sketchup-sdk-win/headers/LayOutAPI/model/style.h
|
242
250
|
- sketchup-sdk-win/headers/LayOutAPI/model/table.h
|
243
251
|
- sketchup-sdk-win/headers/LayOutAPI/model/typed_value.h
|
@@ -273,6 +281,7 @@ files:
|
|
273
281
|
- sketchup-sdk-win/headers/SketchUpAPI/model/classification_info.h
|
274
282
|
- sketchup-sdk-win/headers/SketchUpAPI/model/classifications.h
|
275
283
|
- sketchup-sdk-win/headers/SketchUpAPI/model/component_definition.h
|
284
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/component_definition_snap_to_behavior_private.h
|
276
285
|
- sketchup-sdk-win/headers/SketchUpAPI/model/component_instance.h
|
277
286
|
- sketchup-sdk-win/headers/SketchUpAPI/model/curve.h
|
278
287
|
- sketchup-sdk-win/headers/SketchUpAPI/model/defs.h
|
@@ -289,6 +298,8 @@ files:
|
|
289
298
|
- sketchup-sdk-win/headers/SketchUpAPI/model/entity.h
|
290
299
|
- sketchup-sdk-win/headers/SketchUpAPI/model/entity_list.h
|
291
300
|
- sketchup-sdk-win/headers/SketchUpAPI/model/entity_list_iterator.h
|
301
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/environment.h
|
302
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/environments.h
|
292
303
|
- sketchup-sdk-win/headers/SketchUpAPI/model/face.h
|
293
304
|
- sketchup-sdk-win/headers/SketchUpAPI/model/font.h
|
294
305
|
- sketchup-sdk-win/headers/SketchUpAPI/model/geometry.h
|
@@ -308,6 +319,7 @@ files:
|
|
308
319
|
- sketchup-sdk-win/headers/SketchUpAPI/model/material.h
|
309
320
|
- sketchup-sdk-win/headers/SketchUpAPI/model/mesh_helper.h
|
310
321
|
- sketchup-sdk-win/headers/SketchUpAPI/model/model.h
|
322
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/model_entity_type_private.h
|
311
323
|
- sketchup-sdk-win/headers/SketchUpAPI/model/model_version.h
|
312
324
|
- sketchup-sdk-win/headers/SketchUpAPI/model/opening.h
|
313
325
|
- sketchup-sdk-win/headers/SketchUpAPI/model/options_manager.h
|
@@ -321,6 +333,8 @@ files:
|
|
321
333
|
- sketchup-sdk-win/headers/SketchUpAPI/model/selection.h
|
322
334
|
- sketchup-sdk-win/headers/SketchUpAPI/model/shadow_info.h
|
323
335
|
- sketchup-sdk-win/headers/SketchUpAPI/model/skp.h
|
336
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/snap.h
|
337
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/space.h
|
324
338
|
- sketchup-sdk-win/headers/SketchUpAPI/model/style.h
|
325
339
|
- sketchup-sdk-win/headers/SketchUpAPI/model/styles.h
|
326
340
|
- sketchup-sdk-win/headers/SketchUpAPI/model/text.h
|
@@ -339,7 +353,7 @@ homepage: https://git.chaosgroup.com/sketchup/sketchup-ruby-bindings
|
|
339
353
|
licenses:
|
340
354
|
- BSD-3-Clause
|
341
355
|
metadata: {}
|
342
|
-
post_install_message:
|
356
|
+
post_install_message:
|
343
357
|
rdoc_options: []
|
344
358
|
require_paths:
|
345
359
|
- lib
|
@@ -355,7 +369,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
355
369
|
version: '0'
|
356
370
|
requirements: []
|
357
371
|
rubygems_version: 3.1.6
|
358
|
-
signing_key:
|
372
|
+
signing_key:
|
359
373
|
specification_version: 4
|
360
374
|
summary: Ruby bindings for the SketchUp C API
|
361
375
|
test_files: []
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,94 +0,0 @@
|
|
1
|
-
// Copyright 2017 Trimble Inc., All rights reserved.
|
2
|
-
|
3
|
-
#ifndef LAYOUT_MODEL_SKPFILEREFERENCE_H_
|
4
|
-
#define LAYOUT_MODEL_SKPFILEREFERENCE_H_
|
5
|
-
|
6
|
-
#include <LayOutAPI/common.h>
|
7
|
-
#include <LayOutAPI/geometry/geometry.h>
|
8
|
-
#include <LayOutAPI/model/defs.h>
|
9
|
-
#include <SketchUpAPI/model/defs.h>
|
10
|
-
|
11
|
-
/**
|
12
|
-
@struct LOSkpFileRef
|
13
|
-
@since LayOut 2018, API 3.0
|
14
|
-
@brief References a SketchUp file reference object.
|
15
|
-
*/
|
16
|
-
DEFINE_SU_TYPE(LOSkpFileRef)
|
17
|
-
|
18
|
-
#ifdef __cplusplus
|
19
|
-
extern "C" {
|
20
|
-
#endif // __cplusplus
|
21
|
-
|
22
|
-
/**
|
23
|
-
@brief Creates a SketchUp file reference object with a Skp model.
|
24
|
-
This function takes ownership of the given model. Upon success, user
|
25
|
-
should not release the model, or create another LOSkpFileRef with
|
26
|
-
the same model. The model is valid and mutable till the LOSkpFileRef is
|
27
|
-
released.
|
28
|
-
Do not use a model obtained by a 'Get' function such as the
|
29
|
-
\ref LOSketchUpModelGetModel() as the ownership cannot be transfered
|
30
|
-
to the file_ref.
|
31
|
-
@since LayOut 2018, API 3.0
|
32
|
-
@param[out] file_ref The file reference object to be created.
|
33
|
-
@param[in] model The SketchUp model.
|
34
|
-
@return
|
35
|
-
- \ref SU_ERROR_NONE on success
|
36
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if file_ref is NULL
|
37
|
-
- \ref SU_ERROR_OVERWRITE_VALID if *file_ref refers to a valid object
|
38
|
-
- \ref SU_ERROR_INVALID_INPUT if model does not refer to a valid object
|
39
|
-
*/
|
40
|
-
LO_RESULT LOSkpFileReferenceCreate(LOSkpFileRef* file_ref, SUModelRef model);
|
41
|
-
|
42
|
-
/**
|
43
|
-
@brief Releases a SketchUp file reference object.
|
44
|
-
@since LayOut 2018, API 3.0
|
45
|
-
@param[in] file_ref The SketchUp file reference object.
|
46
|
-
@return
|
47
|
-
- \ref SU_ERROR_NONE on success
|
48
|
-
- \ref SU_ERROR_NULL_POINTER_INPUT if file_ref is NULL
|
49
|
-
- \ref SU_ERROR_INVALID_INPUT if *file_ref does not refer to a valid object
|
50
|
-
*/
|
51
|
-
LO_RESULT LOSkpFileReferenceRelease(LOSkpFileRef* file_ref);
|
52
|
-
|
53
|
-
/**
|
54
|
-
@brief Creates a new SketchUp model object with the specified bounds and
|
55
|
-
file reference.
|
56
|
-
This function increases reference count on the given file reference.
|
57
|
-
@since LayOut 2018, API 3.0
|
58
|
-
@param[out] model The model entity to be created.
|
59
|
-
@param[in] file_ref The SketchUp file reference object.
|
60
|
-
@param[in] bounds The starting dimensions of the model entity.
|
61
|
-
@return
|
62
|
-
- \ref SU_ERROR_NONE on success
|
63
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if model is NULL
|
64
|
-
- \ref SU_ERROR_OVERWRITE_VALID if *model already refers to a valid object
|
65
|
-
- \ref SU_ERROR_INVALID_INPUT if file_ref is invalid
|
66
|
-
- \ref SU_ERROR_NULL_POINTER_INPUT if bounds is NULL
|
67
|
-
- \ref SU_ERROR_OUT_OF_RANGE if bounds has a width or height of zero
|
68
|
-
*/
|
69
|
-
LO_RESULT LOSketchUpModelCreateWithSkpFileRef(
|
70
|
-
LOSketchUpModelRef* model, LOSkpFileRef file_ref, const LOAxisAlignedRect2D* bounds);
|
71
|
-
|
72
|
-
/**
|
73
|
-
@brief Applies a clip mask to all entities inside a group. Entities outside
|
74
|
-
the clip mask will be removed from the document. Entities that cross
|
75
|
-
the clip mask boundary will be removed but may be replaced by new
|
76
|
-
entities. The clip_mask entity must be a \ref LORectangleRef,
|
77
|
-
\ref LOEllipseRef, or \ref LOPathRef.
|
78
|
-
@since LayOut 2018, API 3.0
|
79
|
-
@param[in] group The group to apply the clipmask to.
|
80
|
-
@param[in] clip_mask The entity to use as a clip mask.
|
81
|
-
@return
|
82
|
-
@return
|
83
|
-
- \ref SU_ERROR_NONE on success
|
84
|
-
- \ref SU_ERROR_ENTITY_LOCKED if group is locked
|
85
|
-
- \ref SU_ERROR_LAYER_LOCKED if group contains entities on locked layers
|
86
|
-
- \ref SU_ERROR_GENERIC if clipping algorithm fails
|
87
|
-
*/
|
88
|
-
LO_RESULT LOGroupClipChildren(LOGroupRef group, LOEntityRef clip_mask);
|
89
|
-
|
90
|
-
#ifdef __cplusplus
|
91
|
-
} // end extern "C"
|
92
|
-
#endif // __cplusplus
|
93
|
-
|
94
|
-
#endif // LAYOUT_MODEL_SKPFILEREFERENCE_H_
|