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.
Files changed (133) hide show
  1. checksums.yaml +4 -4
  2. data/ext/entity.c +3 -0
  3. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonGeometry.dylib +0 -0
  4. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/{Libraries → Frameworks}/libCommonGeoutils.dylib +0 -0
  5. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/{Libraries → Frameworks}/libCommonImage.dylib +0 -0
  6. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonPreferences.dylib +0 -0
  7. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonUnits.dylib +0 -0
  8. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonUtils.dylib +0 -0
  9. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Frameworks/libCommonZip.dylib +0 -0
  10. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/model.h +4 -4
  11. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/application/overlay.h +20 -6
  12. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/common.h +9 -9
  13. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/extension_license.h +9 -1
  14. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/point2d.h +2 -2
  15. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/point3d.h +2 -2
  16. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/transformation2d.h +3 -3
  17. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/vector2d.h +5 -5
  18. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry/vector3d.h +4 -4
  19. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/geometry.h +9 -7
  20. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/import_export/modelimporterplugin.h +8 -4
  21. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/attribute_dictionary.h +4 -4
  22. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_definition.h +74 -33
  23. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_definition_snap_to_behavior_private.h +46 -0
  24. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/component_instance.h +11 -11
  25. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/curve.h +4 -4
  26. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/defs.h +7 -2
  27. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/dimension.h +2 -0
  28. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/drawing_element.h +11 -11
  29. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/edge.h +7 -7
  30. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entities.h +106 -61
  31. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/entity.h +7 -4
  32. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/environment.h +382 -0
  33. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/environments.h +133 -0
  34. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/face.h +43 -27
  35. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/geometry_input.h +126 -116
  36. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/group.h +9 -8
  37. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/image.h +6 -5
  38. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/layer.h +3 -3
  39. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/material.h +432 -25
  40. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model.h +263 -100
  41. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/model_entity_type_private.h +44 -0
  42. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/rendering_options.h +82 -81
  43. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/scene.h +222 -42
  44. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/snap.h +183 -0
  45. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/space.h +26 -0
  46. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/styles.h +29 -27
  47. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/text.h +14 -6
  48. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/texture.h +23 -1
  49. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/typed_value.h +26 -26
  50. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/model/vertex.h +2 -2
  51. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/sketchup.h +4 -1
  52. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Headers/unicodestring.h +7 -7
  53. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Resources/Info.plist +8 -8
  54. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/SketchUpAPI +0 -0
  55. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/_CodeSignature/CodeResources +144 -88
  56. data/sketchup-sdk-win/binaries/layout/x64/LayOutAPI.dll +0 -0
  57. data/sketchup-sdk-win/binaries/layout/x64/LayOutAPI.lib +0 -0
  58. data/sketchup-sdk-win/binaries/layout/x64/LayOutControllers.dll +0 -0
  59. data/sketchup-sdk-win/binaries/layout/x64/LayOutModel.dll +0 -0
  60. data/sketchup-sdk-win/binaries/layout/x64/LayOutRTF.dll +0 -0
  61. data/sketchup-sdk-win/binaries/layout/x64/LayOutUtils.dll +0 -0
  62. data/sketchup-sdk-win/binaries/layout/x64/LayOutView.dll +0 -0
  63. data/sketchup-sdk-win/binaries/layout/x64/SketchUpCommonPreferences.dll +0 -0
  64. data/sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.dll +0 -0
  65. data/sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.lib +0 -0
  66. data/sketchup-sdk-win/binaries/layout/x64/pdflib.dll +0 -0
  67. data/sketchup-sdk-win/binaries/sketchup/x64/SketchUpAPI.dll +0 -0
  68. data/sketchup-sdk-win/binaries/sketchup/x64/SketchUpAPI.lib +0 -0
  69. data/sketchup-sdk-win/binaries/sketchup/x64/SketchUpCommonPreferences.dll +0 -0
  70. data/sketchup-sdk-win/binaries/sketchup/x64/sketchup.lib +0 -0
  71. data/sketchup-sdk-win/headers/LayOutAPI/application/application.h +14 -14
  72. data/sketchup-sdk-win/headers/LayOutAPI/layout.h +1 -1
  73. data/sketchup-sdk-win/headers/LayOutAPI/model/dictionary.h +1 -1
  74. data/sketchup-sdk-win/headers/LayOutAPI/model/document.h +73 -0
  75. data/sketchup-sdk-win/headers/LayOutAPI/model/documentexportoptions.h +21 -2
  76. data/sketchup-sdk-win/headers/LayOutAPI/model/entity.h +72 -0
  77. data/sketchup-sdk-win/headers/LayOutAPI/model/group.h +2 -1
  78. data/sketchup-sdk-win/headers/LayOutAPI/model/lineardimension.h +54 -2
  79. data/sketchup-sdk-win/headers/LayOutAPI/model/page.h +70 -0
  80. data/sketchup-sdk-win/headers/LayOutAPI/model/sketchupmodel.h +58 -1
  81. data/sketchup-sdk-win/headers/LayOutAPI/model/style.h +39 -3
  82. data/sketchup-sdk-win/headers/LayOutAPI/model/table.h +2 -0
  83. data/sketchup-sdk-win/headers/LayOutAPI/model/typed_value.h +25 -1
  84. data/sketchup-sdk-win/headers/SketchUpAPI/application/model.h +4 -4
  85. data/sketchup-sdk-win/headers/SketchUpAPI/application/overlay.h +20 -6
  86. data/sketchup-sdk-win/headers/SketchUpAPI/common.h +9 -9
  87. data/sketchup-sdk-win/headers/SketchUpAPI/extension_license.h +9 -1
  88. data/sketchup-sdk-win/headers/SketchUpAPI/geometry/point2d.h +2 -2
  89. data/sketchup-sdk-win/headers/SketchUpAPI/geometry/point3d.h +2 -2
  90. data/sketchup-sdk-win/headers/SketchUpAPI/geometry/transformation2d.h +3 -3
  91. data/sketchup-sdk-win/headers/SketchUpAPI/geometry/vector2d.h +5 -5
  92. data/sketchup-sdk-win/headers/SketchUpAPI/geometry/vector3d.h +4 -4
  93. data/sketchup-sdk-win/headers/SketchUpAPI/geometry.h +9 -7
  94. data/sketchup-sdk-win/headers/SketchUpAPI/import_export/modelimporterplugin.h +8 -4
  95. data/sketchup-sdk-win/headers/SketchUpAPI/model/attribute_dictionary.h +4 -4
  96. data/sketchup-sdk-win/headers/SketchUpAPI/model/component_definition.h +74 -33
  97. data/sketchup-sdk-win/headers/SketchUpAPI/model/component_definition_snap_to_behavior_private.h +46 -0
  98. data/sketchup-sdk-win/headers/SketchUpAPI/model/component_instance.h +11 -11
  99. data/sketchup-sdk-win/headers/SketchUpAPI/model/curve.h +4 -4
  100. data/sketchup-sdk-win/headers/SketchUpAPI/model/defs.h +7 -2
  101. data/sketchup-sdk-win/headers/SketchUpAPI/model/dimension.h +2 -0
  102. data/sketchup-sdk-win/headers/SketchUpAPI/model/drawing_element.h +11 -11
  103. data/sketchup-sdk-win/headers/SketchUpAPI/model/edge.h +7 -7
  104. data/sketchup-sdk-win/headers/SketchUpAPI/model/entities.h +106 -61
  105. data/sketchup-sdk-win/headers/SketchUpAPI/model/entity.h +7 -4
  106. data/sketchup-sdk-win/headers/SketchUpAPI/model/environment.h +382 -0
  107. data/sketchup-sdk-win/headers/SketchUpAPI/model/environments.h +133 -0
  108. data/sketchup-sdk-win/headers/SketchUpAPI/model/face.h +43 -27
  109. data/sketchup-sdk-win/headers/SketchUpAPI/model/geometry_input.h +126 -116
  110. data/sketchup-sdk-win/headers/SketchUpAPI/model/group.h +9 -8
  111. data/sketchup-sdk-win/headers/SketchUpAPI/model/image.h +6 -5
  112. data/sketchup-sdk-win/headers/SketchUpAPI/model/layer.h +3 -3
  113. data/sketchup-sdk-win/headers/SketchUpAPI/model/material.h +432 -25
  114. data/sketchup-sdk-win/headers/SketchUpAPI/model/model.h +263 -100
  115. data/sketchup-sdk-win/headers/SketchUpAPI/model/model_entity_type_private.h +44 -0
  116. data/sketchup-sdk-win/headers/SketchUpAPI/model/rendering_options.h +82 -81
  117. data/sketchup-sdk-win/headers/SketchUpAPI/model/scene.h +222 -42
  118. data/sketchup-sdk-win/headers/SketchUpAPI/model/snap.h +183 -0
  119. data/sketchup-sdk-win/headers/SketchUpAPI/model/space.h +26 -0
  120. data/sketchup-sdk-win/headers/SketchUpAPI/model/styles.h +29 -27
  121. data/sketchup-sdk-win/headers/SketchUpAPI/model/text.h +14 -6
  122. data/sketchup-sdk-win/headers/SketchUpAPI/model/texture.h +23 -1
  123. data/sketchup-sdk-win/headers/SketchUpAPI/model/typed_value.h +26 -26
  124. data/sketchup-sdk-win/headers/SketchUpAPI/model/vertex.h +2 -2
  125. data/sketchup-sdk-win/headers/SketchUpAPI/sketchup.h +4 -1
  126. data/sketchup-sdk-win/headers/SketchUpAPI/unicodestring.h +7 -7
  127. metadata +22 -10
  128. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonGeometry.dylib +0 -0
  129. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonPreferences.dylib +0 -0
  130. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUnits.dylib +0 -0
  131. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonUtils.dylib +0 -0
  132. data/sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Libraries/libCommonZip.dylib +0 -0
  133. 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.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-08 00:00:00.000000000 Z
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
@@ -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_