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
@@ -3,7 +3,7 @@
|
|
3
3
|
<plist version="1.0">
|
4
4
|
<dict>
|
5
5
|
<key>BuildMachineOSBuild</key>
|
6
|
-
<string>
|
6
|
+
<string>24G90</string>
|
7
7
|
<key>CFBundleDevelopmentRegion</key>
|
8
8
|
<string>English</string>
|
9
9
|
<key>CFBundleDisplayName</key>
|
@@ -31,20 +31,20 @@
|
|
31
31
|
<key>DTCompiler</key>
|
32
32
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
33
33
|
<key>DTPlatformBuild</key>
|
34
|
-
<string
|
34
|
+
<string>24C94</string>
|
35
35
|
<key>DTPlatformName</key>
|
36
36
|
<string>macosx</string>
|
37
37
|
<key>DTPlatformVersion</key>
|
38
|
-
<string>
|
38
|
+
<string>15.2</string>
|
39
39
|
<key>DTSDKBuild</key>
|
40
|
-
<string>
|
40
|
+
<string>24C94</string>
|
41
41
|
<key>DTSDKName</key>
|
42
|
-
<string>
|
42
|
+
<string>macosx15.2</string>
|
43
43
|
<key>DTXcode</key>
|
44
|
-
<string>
|
44
|
+
<string>1620</string>
|
45
45
|
<key>DTXcodeBuild</key>
|
46
|
-
<string>
|
46
|
+
<string>16C5032a</string>
|
47
47
|
<key>LSMinimumSystemVersion</key>
|
48
|
-
<string>
|
48
|
+
<string>13.0</string>
|
49
49
|
</dict>
|
50
50
|
</plist>
|
Binary file
|
@@ -6,11 +6,74 @@
|
|
6
6
|
<dict>
|
7
7
|
<key>Resources/Info.plist</key>
|
8
8
|
<data>
|
9
|
-
|
9
|
+
YGTt5BSbRg3rRl1qWtl/o3O1z7c=
|
10
10
|
</data>
|
11
11
|
</dict>
|
12
12
|
<key>files2</key>
|
13
13
|
<dict>
|
14
|
+
<key>Frameworks/libCommonGeometry.dylib</key>
|
15
|
+
<dict>
|
16
|
+
<key>cdhash</key>
|
17
|
+
<data>
|
18
|
+
nq3w8YTP0wWtbkxmpzkAqusEO6A=
|
19
|
+
</data>
|
20
|
+
<key>requirement</key>
|
21
|
+
<string>identifier libCommonGeometry and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
22
|
+
</dict>
|
23
|
+
<key>Frameworks/libCommonGeoutils.dylib</key>
|
24
|
+
<dict>
|
25
|
+
<key>cdhash</key>
|
26
|
+
<data>
|
27
|
+
lbNGVGYQME0YeWBwokcbIsSG+2Q=
|
28
|
+
</data>
|
29
|
+
<key>requirement</key>
|
30
|
+
<string>identifier libCommonGeoutils and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
31
|
+
</dict>
|
32
|
+
<key>Frameworks/libCommonImage.dylib</key>
|
33
|
+
<dict>
|
34
|
+
<key>cdhash</key>
|
35
|
+
<data>
|
36
|
+
I6k8+ywHcc8cV5vC2og2JfkhvVc=
|
37
|
+
</data>
|
38
|
+
<key>requirement</key>
|
39
|
+
<string>identifier libCommonImage and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
40
|
+
</dict>
|
41
|
+
<key>Frameworks/libCommonPreferences.dylib</key>
|
42
|
+
<dict>
|
43
|
+
<key>cdhash</key>
|
44
|
+
<data>
|
45
|
+
dwwlhq8bjBA7ulVmS8D7foTq7BY=
|
46
|
+
</data>
|
47
|
+
<key>requirement</key>
|
48
|
+
<string>identifier libCommonPreferences and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
49
|
+
</dict>
|
50
|
+
<key>Frameworks/libCommonUnits.dylib</key>
|
51
|
+
<dict>
|
52
|
+
<key>cdhash</key>
|
53
|
+
<data>
|
54
|
+
9+cmVuAO5cXVXFHTgVN9Rd1hkew=
|
55
|
+
</data>
|
56
|
+
<key>requirement</key>
|
57
|
+
<string>identifier libCommonUnits and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
58
|
+
</dict>
|
59
|
+
<key>Frameworks/libCommonUtils.dylib</key>
|
60
|
+
<dict>
|
61
|
+
<key>cdhash</key>
|
62
|
+
<data>
|
63
|
+
hk2MQUl3C4wUJg9XtLjsyGKSqjU=
|
64
|
+
</data>
|
65
|
+
<key>requirement</key>
|
66
|
+
<string>identifier libCommonUtils and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
67
|
+
</dict>
|
68
|
+
<key>Frameworks/libCommonZip.dylib</key>
|
69
|
+
<dict>
|
70
|
+
<key>cdhash</key>
|
71
|
+
<data>
|
72
|
+
2/xRjFHWy9t9nT+J8EUy3x5JJj4=
|
73
|
+
</data>
|
74
|
+
<key>requirement</key>
|
75
|
+
<string>identifier libCommonZip and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = J8PVMCY7KL</string>
|
76
|
+
</dict>
|
14
77
|
<key>Headers/application/application.h</key>
|
15
78
|
<dict>
|
16
79
|
<key>hash2</key>
|
@@ -22,14 +85,14 @@
|
|
22
85
|
<dict>
|
23
86
|
<key>hash2</key>
|
24
87
|
<data>
|
25
|
-
|
88
|
+
pf9mlnL93z2+6lMEXQA76l76Nag+GkUiz8w/VbgL1KA=
|
26
89
|
</data>
|
27
90
|
</dict>
|
28
91
|
<key>Headers/application/overlay.h</key>
|
29
92
|
<dict>
|
30
93
|
<key>hash2</key>
|
31
94
|
<data>
|
32
|
-
|
95
|
+
PiIKFPfRMFiouAVhxmfLI8g5pxiy2QxgFDFJbTHIsYM=
|
33
96
|
</data>
|
34
97
|
</dict>
|
35
98
|
<key>Headers/application/ruby_api.h</key>
|
@@ -50,7 +113,7 @@
|
|
50
113
|
<dict>
|
51
114
|
<key>hash2</key>
|
52
115
|
<data>
|
53
|
-
|
116
|
+
XkdQhJizXE5KIDTbg0or+kYlv7P2Y4WMJytarAYsTqE=
|
54
117
|
</data>
|
55
118
|
</dict>
|
56
119
|
<key>Headers/defs.h</key>
|
@@ -64,14 +127,14 @@
|
|
64
127
|
<dict>
|
65
128
|
<key>hash2</key>
|
66
129
|
<data>
|
67
|
-
|
130
|
+
e8Vo1a48uQNxWyWiAtESUT6lWQHtU8To1Yh4KyIyIY0=
|
68
131
|
</data>
|
69
132
|
</dict>
|
70
133
|
<key>Headers/geometry.h</key>
|
71
134
|
<dict>
|
72
135
|
<key>hash2</key>
|
73
136
|
<data>
|
74
|
-
|
137
|
+
Cbb7oQDry+6beT9blyuh0D4icNSCO5cww/WUGL+xN6M=
|
75
138
|
</data>
|
76
139
|
</dict>
|
77
140
|
<key>Headers/geometry/bounding_box.h</key>
|
@@ -92,14 +155,14 @@
|
|
92
155
|
<dict>
|
93
156
|
<key>hash2</key>
|
94
157
|
<data>
|
95
|
-
|
158
|
+
/aMVAYttMo4e+RFZIlEW0nEmZUzMsIOdgDG14hKGK+k=
|
96
159
|
</data>
|
97
160
|
</dict>
|
98
161
|
<key>Headers/geometry/point3d.h</key>
|
99
162
|
<dict>
|
100
163
|
<key>hash2</key>
|
101
164
|
<data>
|
102
|
-
|
165
|
+
1hI7RDuM1fg0JZuejnVdF9KqAiDk7IxT2EMiVEICcgw=
|
103
166
|
</data>
|
104
167
|
</dict>
|
105
168
|
<key>Headers/geometry/ray3d.h</key>
|
@@ -120,21 +183,21 @@
|
|
120
183
|
<dict>
|
121
184
|
<key>hash2</key>
|
122
185
|
<data>
|
123
|
-
|
186
|
+
gww4u5y0ZbU+OAtEV7A1yqla74XRVMfICsuIKkI6aJM=
|
124
187
|
</data>
|
125
188
|
</dict>
|
126
189
|
<key>Headers/geometry/vector2d.h</key>
|
127
190
|
<dict>
|
128
191
|
<key>hash2</key>
|
129
192
|
<data>
|
130
|
-
|
193
|
+
ocdVHAYmRa3uLgs0RrwsdTHEAtOfGlMLnfg64d353xQ=
|
131
194
|
</data>
|
132
195
|
</dict>
|
133
196
|
<key>Headers/geometry/vector3d.h</key>
|
134
197
|
<dict>
|
135
198
|
<key>hash2</key>
|
136
199
|
<data>
|
137
|
-
|
200
|
+
peS2w4jfICuB86Ieosi9GQfQEpbuBVF+1MtkdYIODxM=
|
138
201
|
</data>
|
139
202
|
</dict>
|
140
203
|
<key>Headers/import_export/modelexporterplugin.h</key>
|
@@ -148,7 +211,7 @@
|
|
148
211
|
<dict>
|
149
212
|
<key>hash2</key>
|
150
213
|
<data>
|
151
|
-
|
214
|
+
DcJ8zzZVzlNawcGrf1w3t+agb3PSwsq/0qr1lOAVm84=
|
152
215
|
</data>
|
153
216
|
</dict>
|
154
217
|
<key>Headers/import_export/pluginprogresscallback.h</key>
|
@@ -190,7 +253,7 @@
|
|
190
253
|
<dict>
|
191
254
|
<key>hash2</key>
|
192
255
|
<data>
|
193
|
-
|
256
|
+
HJ33LoUsR/mVYROhU/pvcd3BHBOAIpOXzNIxuHqc/xg=
|
194
257
|
</data>
|
195
258
|
</dict>
|
196
259
|
<key>Headers/model/axes.h</key>
|
@@ -232,35 +295,42 @@
|
|
232
295
|
<dict>
|
233
296
|
<key>hash2</key>
|
234
297
|
<data>
|
235
|
-
|
298
|
+
ayjIAuG9ftF8+PyYKO1ij52FT7949y8PIS4qD+yfre0=
|
299
|
+
</data>
|
300
|
+
</dict>
|
301
|
+
<key>Headers/model/component_definition_snap_to_behavior_private.h</key>
|
302
|
+
<dict>
|
303
|
+
<key>hash2</key>
|
304
|
+
<data>
|
305
|
+
RlS/H+Wcd6tj3s8chnguGi7xE8VPddBybAQJ/5XMetg=
|
236
306
|
</data>
|
237
307
|
</dict>
|
238
308
|
<key>Headers/model/component_instance.h</key>
|
239
309
|
<dict>
|
240
310
|
<key>hash2</key>
|
241
311
|
<data>
|
242
|
-
|
312
|
+
oabfcmvsChoPAL+X8wrrCUJx1rLXHZpRUplWKeUwF8o=
|
243
313
|
</data>
|
244
314
|
</dict>
|
245
315
|
<key>Headers/model/curve.h</key>
|
246
316
|
<dict>
|
247
317
|
<key>hash2</key>
|
248
318
|
<data>
|
249
|
-
|
319
|
+
/mFrkK+V59Rga8RohQvZhDDyVnZPuEC9EOHtSAFenBY=
|
250
320
|
</data>
|
251
321
|
</dict>
|
252
322
|
<key>Headers/model/defs.h</key>
|
253
323
|
<dict>
|
254
324
|
<key>hash2</key>
|
255
325
|
<data>
|
256
|
-
|
326
|
+
rMxUwpYDUzMMQgwuy/5uSJ2g3YN3paMX0/6+YGP2VHE=
|
257
327
|
</data>
|
258
328
|
</dict>
|
259
329
|
<key>Headers/model/dimension.h</key>
|
260
330
|
<dict>
|
261
331
|
<key>hash2</key>
|
262
332
|
<data>
|
263
|
-
|
333
|
+
VdOFHZghc+ZW+uaTb0zcezLQ/86gncjFV+Jaatwf7q0=
|
264
334
|
</data>
|
265
335
|
</dict>
|
266
336
|
<key>Headers/model/dimension_linear.h</key>
|
@@ -288,7 +358,7 @@
|
|
288
358
|
<dict>
|
289
359
|
<key>hash2</key>
|
290
360
|
<data>
|
291
|
-
|
361
|
+
TTcvXGHTYodY1EAGd+lFsCo7nUKGN7fqR5Rx+ni1DWU=
|
292
362
|
</data>
|
293
363
|
</dict>
|
294
364
|
<key>Headers/model/dynamic_component_attribute.h</key>
|
@@ -309,7 +379,7 @@
|
|
309
379
|
<dict>
|
310
380
|
<key>hash2</key>
|
311
381
|
<data>
|
312
|
-
|
382
|
+
UJ6nzv/dM5HkOxAKRbstFboFsLnRmhrfo1Y7vIKK0+Y=
|
313
383
|
</data>
|
314
384
|
</dict>
|
315
385
|
<key>Headers/model/edge_use.h</key>
|
@@ -323,14 +393,14 @@
|
|
323
393
|
<dict>
|
324
394
|
<key>hash2</key>
|
325
395
|
<data>
|
326
|
-
|
396
|
+
JmXSnWAjPbuSGuaAny2FRWR0zrvCpUXB9gbbjGvazB8=
|
327
397
|
</data>
|
328
398
|
</dict>
|
329
399
|
<key>Headers/model/entity.h</key>
|
330
400
|
<dict>
|
331
401
|
<key>hash2</key>
|
332
402
|
<data>
|
333
|
-
|
403
|
+
n//0ZzhS6t96qMXwwSC6QDSXlkaxiarUQXbSJ0kQL0Y=
|
334
404
|
</data>
|
335
405
|
</dict>
|
336
406
|
<key>Headers/model/entity_list.h</key>
|
@@ -347,11 +417,25 @@
|
|
347
417
|
is/1lJPT+oWtkFa3kQh2njkJmxr5DcGB159TfwpPr1s=
|
348
418
|
</data>
|
349
419
|
</dict>
|
420
|
+
<key>Headers/model/environment.h</key>
|
421
|
+
<dict>
|
422
|
+
<key>hash2</key>
|
423
|
+
<data>
|
424
|
+
Ig3Jqwztq55IWTzZehYWIbp0JEGSHDfDQwElVCarGGo=
|
425
|
+
</data>
|
426
|
+
</dict>
|
427
|
+
<key>Headers/model/environments.h</key>
|
428
|
+
<dict>
|
429
|
+
<key>hash2</key>
|
430
|
+
<data>
|
431
|
+
xUrpvawYdBTeA/JhMlthNjsOJhas9eNlIpiHfnSEHhQ=
|
432
|
+
</data>
|
433
|
+
</dict>
|
350
434
|
<key>Headers/model/face.h</key>
|
351
435
|
<dict>
|
352
436
|
<key>hash2</key>
|
353
437
|
<data>
|
354
|
-
|
438
|
+
2s+R4PtbqCyOlqYo241JbZlsF5UjC4flhGGPNiBwPz0=
|
355
439
|
</data>
|
356
440
|
</dict>
|
357
441
|
<key>Headers/model/font.h</key>
|
@@ -372,14 +456,14 @@
|
|
372
456
|
<dict>
|
373
457
|
<key>hash2</key>
|
374
458
|
<data>
|
375
|
-
|
459
|
+
DJWB4dV6fYXLa8r+3xN9i0RCH10q1zecIqptFjiSyfI=
|
376
460
|
</data>
|
377
461
|
</dict>
|
378
462
|
<key>Headers/model/group.h</key>
|
379
463
|
<dict>
|
380
464
|
<key>hash2</key>
|
381
465
|
<data>
|
382
|
-
|
466
|
+
qO5QAk4pp0AGtAajw3/pYWwHMDAvxiDlVmUgPV0BAgQ=
|
383
467
|
</data>
|
384
468
|
</dict>
|
385
469
|
<key>Headers/model/guide_line.h</key>
|
@@ -400,7 +484,7 @@
|
|
400
484
|
<dict>
|
401
485
|
<key>hash2</key>
|
402
486
|
<data>
|
403
|
-
|
487
|
+
fdrQVvIiHRz4k1hTD6HJyRXOV+ya4+z6iQEzHv4VQTU=
|
404
488
|
</data>
|
405
489
|
</dict>
|
406
490
|
<key>Headers/model/image_rep.h</key>
|
@@ -421,7 +505,7 @@
|
|
421
505
|
<dict>
|
422
506
|
<key>hash2</key>
|
423
507
|
<data>
|
424
|
-
|
508
|
+
3bWfXAKEkRyUO/lXFQ4RHiGfU/mmnNOCOdIpqLMcj80=
|
425
509
|
</data>
|
426
510
|
</dict>
|
427
511
|
<key>Headers/model/layer_folder.h</key>
|
@@ -463,7 +547,7 @@
|
|
463
547
|
<dict>
|
464
548
|
<key>hash2</key>
|
465
549
|
<data>
|
466
|
-
|
550
|
+
Iqgp0gPA2cY2HXUCtzPO4VMZAkUFgdRFpQ3yUGCY2WI=
|
467
551
|
</data>
|
468
552
|
</dict>
|
469
553
|
<key>Headers/model/mesh_helper.h</key>
|
@@ -477,7 +561,14 @@
|
|
477
561
|
<dict>
|
478
562
|
<key>hash2</key>
|
479
563
|
<data>
|
480
|
-
|
564
|
+
tkVq6WLGG6KDxB8DryHAwDv8GdO5xphRcJmx5z6xgjI=
|
565
|
+
</data>
|
566
|
+
</dict>
|
567
|
+
<key>Headers/model/model_entity_type_private.h</key>
|
568
|
+
<dict>
|
569
|
+
<key>hash2</key>
|
570
|
+
<data>
|
571
|
+
OT76Lxa61pH8mQIxnPwN4KDEGERzFgRmXeYJsHJsxiQ=
|
481
572
|
</data>
|
482
573
|
</dict>
|
483
574
|
<key>Headers/model/model_version.h</key>
|
@@ -519,14 +610,14 @@
|
|
519
610
|
<dict>
|
520
611
|
<key>hash2</key>
|
521
612
|
<data>
|
522
|
-
|
613
|
+
7D7lKvuQ9irZpCDHgG+dDSEZxOFhiryEtmf4Mk4CBTk=
|
523
614
|
</data>
|
524
615
|
</dict>
|
525
616
|
<key>Headers/model/scene.h</key>
|
526
617
|
<dict>
|
527
618
|
<key>hash2</key>
|
528
619
|
<data>
|
529
|
-
|
620
|
+
xUSRKUmvP+aJbnEE3bCZzzphwnb6bLRXMGipht9JrDQ=
|
530
621
|
</data>
|
531
622
|
</dict>
|
532
623
|
<key>Headers/model/schema.h</key>
|
@@ -571,6 +662,20 @@
|
|
571
662
|
mcHVOJlT/dfjNI/IKxyk+MnxDOuqweh7kKVJjwcpryc=
|
572
663
|
</data>
|
573
664
|
</dict>
|
665
|
+
<key>Headers/model/snap.h</key>
|
666
|
+
<dict>
|
667
|
+
<key>hash2</key>
|
668
|
+
<data>
|
669
|
+
vhzYgKxfoxdiSi6b5dR5IKgUPDTfrMMMOsWwF1Vmwc4=
|
670
|
+
</data>
|
671
|
+
</dict>
|
672
|
+
<key>Headers/model/space.h</key>
|
673
|
+
<dict>
|
674
|
+
<key>hash2</key>
|
675
|
+
<data>
|
676
|
+
n2l9ISAU3smzLC8GvmQ6+sKr0Hkm7g8BjLeRNOS9pMg=
|
677
|
+
</data>
|
678
|
+
</dict>
|
574
679
|
<key>Headers/model/style.h</key>
|
575
680
|
<dict>
|
576
681
|
<key>hash2</key>
|
@@ -582,21 +687,21 @@
|
|
582
687
|
<dict>
|
583
688
|
<key>hash2</key>
|
584
689
|
<data>
|
585
|
-
|
690
|
+
rVnFABG3mp3L671Au5gK8PWKtZGTzZZuA5swgqMsrsU=
|
586
691
|
</data>
|
587
692
|
</dict>
|
588
693
|
<key>Headers/model/text.h</key>
|
589
694
|
<dict>
|
590
695
|
<key>hash2</key>
|
591
696
|
<data>
|
592
|
-
|
697
|
+
loiIqG4VhZo2oEo9unj8R6xSRMq4Yhtw3H7Izn22ycw=
|
593
698
|
</data>
|
594
699
|
</dict>
|
595
700
|
<key>Headers/model/texture.h</key>
|
596
701
|
<dict>
|
597
702
|
<key>hash2</key>
|
598
703
|
<data>
|
599
|
-
|
704
|
+
My37X8Vrc4y4MzBMwHcrDqO9WUP/ceCnsxogpVLyIXI=
|
600
705
|
</data>
|
601
706
|
</dict>
|
602
707
|
<key>Headers/model/texture_writer.h</key>
|
@@ -610,7 +715,7 @@
|
|
610
715
|
<dict>
|
611
716
|
<key>hash2</key>
|
612
717
|
<data>
|
613
|
-
|
718
|
+
AhEB58zmgx8m+pP3Wm91xTzW3fcIQEfd4d+S8ZRQb9Y=
|
614
719
|
</data>
|
615
720
|
</dict>
|
616
721
|
<key>Headers/model/uv_helper.h</key>
|
@@ -624,14 +729,14 @@
|
|
624
729
|
<dict>
|
625
730
|
<key>hash2</key>
|
626
731
|
<data>
|
627
|
-
|
732
|
+
zwcYn/+huyeey6vMz1prAarOfru/XIfjX6fg7Wp9bIw=
|
628
733
|
</data>
|
629
734
|
</dict>
|
630
735
|
<key>Headers/sketchup.h</key>
|
631
736
|
<dict>
|
632
737
|
<key>hash2</key>
|
633
738
|
<data>
|
634
|
-
|
739
|
+
rgoBsZfm1/fs2P+v5LlHSZf6JioskP8zPeWouke+PV4=
|
635
740
|
</data>
|
636
741
|
</dict>
|
637
742
|
<key>Headers/sketchup_info.h</key>
|
@@ -659,7 +764,7 @@
|
|
659
764
|
<dict>
|
660
765
|
<key>hash2</key>
|
661
766
|
<data>
|
662
|
-
|
767
|
+
nVXZDGm41B3GPYG3E/dXpVQidG3DlUFVtfg3O2LlCwU=
|
663
768
|
</data>
|
664
769
|
</dict>
|
665
770
|
<key>Headers/utils/math_helpers.h</key>
|
@@ -669,60 +774,11 @@
|
|
669
774
|
Ie5CVpvSnF5Eha661/oRWsJ42WBjSS7dAGkKze9CGxQ=
|
670
775
|
</data>
|
671
776
|
</dict>
|
672
|
-
<key>Libraries/libCommonGeometry.dylib</key>
|
673
|
-
<dict>
|
674
|
-
<key>hash2</key>
|
675
|
-
<data>
|
676
|
-
8eTHfkPZRbLZ1OFkEVdNbU+JhRqnuQ+UTaO3Qzb0nQ0=
|
677
|
-
</data>
|
678
|
-
</dict>
|
679
|
-
<key>Libraries/libCommonGeoutils.dylib</key>
|
680
|
-
<dict>
|
681
|
-
<key>hash2</key>
|
682
|
-
<data>
|
683
|
-
Di3i0yX+8VAfU2k5zO1to/uxdODGbpcM2DGn7Pe+Wh0=
|
684
|
-
</data>
|
685
|
-
</dict>
|
686
|
-
<key>Libraries/libCommonImage.dylib</key>
|
687
|
-
<dict>
|
688
|
-
<key>hash2</key>
|
689
|
-
<data>
|
690
|
-
en2F1astNQP2gEg2t+s3ho+gPp7bHEmThR+yKqJqjmg=
|
691
|
-
</data>
|
692
|
-
</dict>
|
693
|
-
<key>Libraries/libCommonPreferences.dylib</key>
|
694
|
-
<dict>
|
695
|
-
<key>hash2</key>
|
696
|
-
<data>
|
697
|
-
hYoyLBpgMRjS5rlID6fytWgo3qqYVCu/WeQR21Er3pU=
|
698
|
-
</data>
|
699
|
-
</dict>
|
700
|
-
<key>Libraries/libCommonUnits.dylib</key>
|
701
|
-
<dict>
|
702
|
-
<key>hash2</key>
|
703
|
-
<data>
|
704
|
-
4Uj7yOM1mccZSyw4BHpgggiuSxZq3xCWohC1jUB5Kkg=
|
705
|
-
</data>
|
706
|
-
</dict>
|
707
|
-
<key>Libraries/libCommonUtils.dylib</key>
|
708
|
-
<dict>
|
709
|
-
<key>hash2</key>
|
710
|
-
<data>
|
711
|
-
vKyB5eifczLDNOBS8n7IYlbfwy2nBIet9gEyWZOgCKc=
|
712
|
-
</data>
|
713
|
-
</dict>
|
714
|
-
<key>Libraries/libCommonZip.dylib</key>
|
715
|
-
<dict>
|
716
|
-
<key>hash2</key>
|
717
|
-
<data>
|
718
|
-
hK9eljYZbzpu3qdGQzTl4w+fSXEGyyMyx7+yq2aZ7pc=
|
719
|
-
</data>
|
720
|
-
</dict>
|
721
777
|
<key>Resources/Info.plist</key>
|
722
778
|
<dict>
|
723
779
|
<key>hash2</key>
|
724
780
|
<data>
|
725
|
-
|
781
|
+
24vCOkChhONYbTaza+o3j+ahINWlJXk9RjA/AG1U8Vk=
|
726
782
|
</data>
|
727
783
|
</dict>
|
728
784
|
</dict>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Copyright 2014-
|
1
|
+
// Copyright 2014-2025 Trimble Inc. All Rights Reserved.
|
2
2
|
|
3
3
|
#ifndef LAYOUT_APPLICATION_APPLICATION_H_
|
4
4
|
#define LAYOUT_APPLICATION_APPLICATION_H_
|
@@ -39,11 +39,12 @@ LO_RESULT LOApplicationGetApplication(LOApplicationRef* app);
|
|
39
39
|
@param[out] document The active document.
|
40
40
|
@return
|
41
41
|
- \ref SU_ERROR_NONE on success
|
42
|
-
- \ref SU_ERROR_INVALID_INPUT if app is not a valid object
|
43
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if document is NULL
|
42
|
+
- \ref SU_ERROR_INVALID_INPUT if \p app is not a valid object
|
43
|
+
- \ref SU_ERROR_NULL_POINTER_OUTPUT if \p document is NULL
|
44
44
|
*/
|
45
45
|
LO_RESULT LOApplicationGetActiveDocument(LOApplicationRef app, LODocumentRef* document);
|
46
46
|
|
47
|
+
|
47
48
|
/**
|
48
49
|
@brief Gets the major/minor version number as a string.
|
49
50
|
@since LayOut 2018, API 3.0
|
@@ -51,8 +52,8 @@ LO_RESULT LOApplicationGetActiveDocument(LOApplicationRef app, LODocumentRef* do
|
|
51
52
|
@param[out] version The current version of the application.
|
52
53
|
@return
|
53
54
|
- \ref SU_ERROR_NONE on success
|
54
|
-
- \ref SU_ERROR_INVALID_INPUT if app is not a valid object
|
55
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if version is NULL
|
55
|
+
- \ref SU_ERROR_INVALID_INPUT if \p app is not a valid object
|
56
|
+
- \ref SU_ERROR_NULL_POINTER_OUTPUT if \p version is NULL
|
56
57
|
*/
|
57
58
|
LO_RESULT LOApplicationGetVersion(LOApplicationRef app, SUStringRef* version);
|
58
59
|
|
@@ -63,8 +64,8 @@ LO_RESULT LOApplicationGetVersion(LOApplicationRef app, SUStringRef* version);
|
|
63
64
|
@param[out] version The current version of the application.
|
64
65
|
@return
|
65
66
|
- \ref SU_ERROR_NONE on success
|
66
|
-
- \ref SU_ERROR_INVALID_INPUT if app is not a valid object
|
67
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if version is NULL
|
67
|
+
- \ref SU_ERROR_INVALID_INPUT if \p app is not a valid object
|
68
|
+
- \ref SU_ERROR_NULL_POINTER_OUTPUT if \p version is NULL
|
68
69
|
*/
|
69
70
|
LO_RESULT LOApplicationGetVersionNumber(LOApplicationRef app, unsigned int* version);
|
70
71
|
|
@@ -75,8 +76,8 @@ LO_RESULT LOApplicationGetVersionNumber(LOApplicationRef app, unsigned int* vers
|
|
75
76
|
@param[out] is_online True if the application is connected to the internet.
|
76
77
|
@return
|
77
78
|
- \ref SU_ERROR_NONE on success
|
78
|
-
- \ref SU_ERROR_INVALID_INPUT if app is not a valid object
|
79
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if is_online is NULL
|
79
|
+
- \ref SU_ERROR_INVALID_INPUT if \p app is not a valid object
|
80
|
+
- \ref SU_ERROR_NULL_POINTER_OUTPUT if \p is_online is NULL
|
80
81
|
*/
|
81
82
|
LO_RESULT LOApplicationGetOnline(LOApplicationRef app, bool* is_online);
|
82
83
|
|
@@ -88,22 +89,21 @@ LO_RESULT LOApplicationGetOnline(LOApplicationRef app, bool* is_online);
|
|
88
89
|
@param[out] document A reference to the opened document if successful.
|
89
90
|
@return
|
90
91
|
- \ref SU_ERROR_NONE on success
|
91
|
-
- \ref SU_ERROR_INVALID_INPUT if app is not a valid object
|
92
|
-
- \ref SU_ERROR_NULL_POINTER_INPUT if file_path is NULL
|
93
|
-
- \ref SU_ERROR_NULL_POINTER_OUTPUT if document is NULL
|
92
|
+
- \ref SU_ERROR_INVALID_INPUT if \p app is not a valid object
|
93
|
+
- \ref SU_ERROR_NULL_POINTER_INPUT if \p file_path is NULL
|
94
|
+
- \ref SU_ERROR_NULL_POINTER_OUTPUT if \p document is NULL
|
94
95
|
- \ref SU_ERROR_SERIALIZATION if the document fails to open
|
95
96
|
*/
|
96
97
|
LO_RESULT LOApplicationOpenDocument(
|
97
98
|
LOApplicationRef app, const char* file_path, LODocumentRef* document);
|
98
99
|
|
99
|
-
|
100
100
|
/**
|
101
101
|
@brief Quits the application.
|
102
102
|
@since LayOut 2018, API 3.0
|
103
103
|
@param[in] app The application instance.
|
104
104
|
@return
|
105
105
|
- \ref SU_ERROR_NONE on success
|
106
|
-
- \ref SU_ERROR_INVALID_INPUT if app is not a valid object
|
106
|
+
- \ref SU_ERROR_INVALID_INPUT if \p app is not a valid object
|
107
107
|
*/
|
108
108
|
LO_RESULT LOApplicationQuit(LOApplicationRef app);
|
109
109
|
|
@@ -63,7 +63,7 @@ LO_RESULT LODictionaryGetValue(LODictionaryRef dictionary, const char* key, LOTy
|
|
63
63
|
@param[in] value The value of the key-value pair.
|
64
64
|
@return
|
65
65
|
- \ref SU_ERROR_NONE on success
|
66
|
-
- \ref SU_ERROR_INVALID_INPUT if dictionary
|
66
|
+
- \ref SU_ERROR_INVALID_INPUT if dictionary is an invalid object
|
67
67
|
- \ref SU_ERROR_NULL_POINTER_INPUT if key is NULL
|
68
68
|
*/
|
69
69
|
LO_RESULT LODictionarySetValue(LODictionaryRef dictionary, const char* key, LOTypedValueRef value);
|