scriptup 2026.0.0 → 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/ext/entity.c +3 -0
- 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 +22 -10
- 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: 2026.0.
|
4
|
+
version: 2026.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Noel Warren
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-10-
|
11
|
+
date: 2025-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -87,6 +87,13 @@ files:
|
|
87
87
|
- ext/typed_value.h
|
88
88
|
- ext/utils.h
|
89
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
|
90
97
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/application.h
|
91
98
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/model.h
|
92
99
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/overlay.h
|
@@ -119,6 +126,7 @@ files:
|
|
119
126
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/classification_info.h
|
120
127
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/classifications.h
|
121
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
|
122
130
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_instance.h
|
123
131
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/curve.h
|
124
132
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/defs.h
|
@@ -135,6 +143,8 @@ files:
|
|
135
143
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity.h
|
136
144
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity_list.h
|
137
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
|
138
148
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/face.h
|
139
149
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/font.h
|
140
150
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/geometry.h
|
@@ -154,6 +164,7 @@ files:
|
|
154
164
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/material.h
|
155
165
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/mesh_helper.h
|
156
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
|
157
168
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model_version.h
|
158
169
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/opening.h
|
159
170
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/options_manager.h
|
@@ -167,6 +178,8 @@ files:
|
|
167
178
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/selection.h
|
168
179
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/shadow_info.h
|
169
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
|
170
183
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/style.h
|
171
184
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/styles.h
|
172
185
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/text.h
|
@@ -181,13 +194,6 @@ files:
|
|
181
194
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/transformation.h
|
182
195
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/unicodestring.h
|
183
196
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/utils/math_helpers.h
|
184
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonGeometry.dylib
|
185
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonGeoutils.dylib
|
186
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonImage.dylib
|
187
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonPreferences.dylib
|
188
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUnits.dylib
|
189
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUtils.dylib
|
190
|
-
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonZip.dylib
|
191
197
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Resources/Info.plist
|
192
198
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/SketchUpAPI
|
193
199
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/_CodeSignature/CodeResources
|
@@ -197,6 +203,7 @@ files:
|
|
197
203
|
- sketchup-sdk-win/binaries/layout/x64/LayOutModel.dll
|
198
204
|
- sketchup-sdk-win/binaries/layout/x64/LayOutRTF.dll
|
199
205
|
- sketchup-sdk-win/binaries/layout/x64/LayOutUtils.dll
|
206
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutView.dll
|
200
207
|
- sketchup-sdk-win/binaries/layout/x64/SketchUpCommonPreferences.dll
|
201
208
|
- sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.dll
|
202
209
|
- sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.lib
|
@@ -239,7 +246,6 @@ files:
|
|
239
246
|
- sketchup-sdk-win/headers/LayOutAPI/model/rectangle.h
|
240
247
|
- sketchup-sdk-win/headers/LayOutAPI/model/referenceentity.h
|
241
248
|
- sketchup-sdk-win/headers/LayOutAPI/model/sketchupmodel.h
|
242
|
-
- sketchup-sdk-win/headers/LayOutAPI/model/skpfilereference.h
|
243
249
|
- sketchup-sdk-win/headers/LayOutAPI/model/style.h
|
244
250
|
- sketchup-sdk-win/headers/LayOutAPI/model/table.h
|
245
251
|
- sketchup-sdk-win/headers/LayOutAPI/model/typed_value.h
|
@@ -275,6 +281,7 @@ files:
|
|
275
281
|
- sketchup-sdk-win/headers/SketchUpAPI/model/classification_info.h
|
276
282
|
- sketchup-sdk-win/headers/SketchUpAPI/model/classifications.h
|
277
283
|
- sketchup-sdk-win/headers/SketchUpAPI/model/component_definition.h
|
284
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/component_definition_snap_to_behavior_private.h
|
278
285
|
- sketchup-sdk-win/headers/SketchUpAPI/model/component_instance.h
|
279
286
|
- sketchup-sdk-win/headers/SketchUpAPI/model/curve.h
|
280
287
|
- sketchup-sdk-win/headers/SketchUpAPI/model/defs.h
|
@@ -291,6 +298,8 @@ files:
|
|
291
298
|
- sketchup-sdk-win/headers/SketchUpAPI/model/entity.h
|
292
299
|
- sketchup-sdk-win/headers/SketchUpAPI/model/entity_list.h
|
293
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
|
294
303
|
- sketchup-sdk-win/headers/SketchUpAPI/model/face.h
|
295
304
|
- sketchup-sdk-win/headers/SketchUpAPI/model/font.h
|
296
305
|
- sketchup-sdk-win/headers/SketchUpAPI/model/geometry.h
|
@@ -310,6 +319,7 @@ files:
|
|
310
319
|
- sketchup-sdk-win/headers/SketchUpAPI/model/material.h
|
311
320
|
- sketchup-sdk-win/headers/SketchUpAPI/model/mesh_helper.h
|
312
321
|
- sketchup-sdk-win/headers/SketchUpAPI/model/model.h
|
322
|
+
- sketchup-sdk-win/headers/SketchUpAPI/model/model_entity_type_private.h
|
313
323
|
- sketchup-sdk-win/headers/SketchUpAPI/model/model_version.h
|
314
324
|
- sketchup-sdk-win/headers/SketchUpAPI/model/opening.h
|
315
325
|
- sketchup-sdk-win/headers/SketchUpAPI/model/options_manager.h
|
@@ -323,6 +333,8 @@ files:
|
|
323
333
|
- sketchup-sdk-win/headers/SketchUpAPI/model/selection.h
|
324
334
|
- sketchup-sdk-win/headers/SketchUpAPI/model/shadow_info.h
|
325
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
|
326
338
|
- sketchup-sdk-win/headers/SketchUpAPI/model/style.h
|
327
339
|
- sketchup-sdk-win/headers/SketchUpAPI/model/styles.h
|
328
340
|
- sketchup-sdk-win/headers/SketchUpAPI/model/text.h
|
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_
|