sketchup-api-stubs 0.1.2 → 0.2.0
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/SketchUp/Geom/BoundingBox.rb +17 -20
- data/SketchUp/Geom/Bounds2d.rb +172 -0
- data/SketchUp/Geom/LatLong.rb +31 -16
- data/SketchUp/Geom/OrientedBounds2d.rb +102 -0
- data/SketchUp/Geom/Point2d.rb +365 -0
- data/SketchUp/Geom/Point3d.rb +121 -110
- data/SketchUp/Geom/PolygonMesh.rb +30 -21
- data/SketchUp/Geom/Transformation.rb +8 -4
- data/SketchUp/Geom/Transformation2d.rb +125 -0
- data/SketchUp/Geom/UTM.rb +43 -37
- data/SketchUp/Geom/Vector2d.rb +497 -0
- data/SketchUp/Geom/Vector3d.rb +143 -131
- data/SketchUp/Layout.rb +25 -0
- data/SketchUp/Layout/AngularDimension.rb +569 -0
- data/SketchUp/Layout/AutoTextDefinition.rb +417 -0
- data/SketchUp/Layout/AutoTextDefinitions.rb +186 -0
- data/SketchUp/Layout/ConnectionPoint.rb +70 -0
- data/SketchUp/Layout/Document.rb +458 -0
- data/SketchUp/Layout/Ellipse.rb +29 -0
- data/SketchUp/Layout/Entities.rb +155 -0
- data/SketchUp/Layout/Entity.rb +363 -0
- data/SketchUp/Layout/FormattedText.rb +349 -0
- data/SketchUp/Layout/Grid.rb +131 -0
- data/SketchUp/Layout/Group.rb +261 -0
- data/SketchUp/Layout/Image.rb +86 -0
- data/SketchUp/Layout/Label.rb +371 -0
- data/SketchUp/Layout/Layer.rb +222 -0
- data/SketchUp/Layout/LayerInstance.rb +128 -0
- data/SketchUp/Layout/Layers.rb +232 -0
- data/SketchUp/Layout/LinearDimension.rb +563 -0
- data/SketchUp/Layout/LockedEntityError.rb +10 -0
- data/SketchUp/Layout/LockedLayerError.rb +11 -0
- data/SketchUp/Layout/Page.rb +187 -0
- data/SketchUp/Layout/PageInfo.rb +393 -0
- data/SketchUp/Layout/Pages.rb +216 -0
- data/SketchUp/Layout/Path.rb +326 -0
- data/SketchUp/Layout/Rectangle.rb +174 -0
- data/SketchUp/Layout/SketchUpModel.rb +522 -0
- data/SketchUp/Layout/Style.rb +1520 -0
- data/SketchUp/Layout/Table.rb +290 -0
- data/SketchUp/Layout/TableCell.rb +149 -0
- data/SketchUp/Layout/TableColumn.rb +139 -0
- data/SketchUp/Layout/TableRow.rb +135 -0
- data/SketchUp/Sketchup/Animation.rb +7 -4
- data/SketchUp/Sketchup/ArcCurve.rb +10 -10
- data/SketchUp/Sketchup/AttributeDictionaries.rb +13 -4
- data/SketchUp/Sketchup/AttributeDictionary.rb +12 -12
- data/SketchUp/Sketchup/Color.rb +68 -78
- data/SketchUp/Sketchup/ComponentDefinition.rb +60 -60
- data/SketchUp/Sketchup/ComponentInstance.rb +57 -55
- data/SketchUp/Sketchup/DefinitionList.rb +34 -17
- data/SketchUp/Sketchup/Drawingelement.rb +19 -21
- data/SketchUp/Sketchup/Edge.rb +22 -24
- data/SketchUp/Sketchup/Entities.rb +173 -162
- data/SketchUp/Sketchup/Entity.rb +71 -55
- data/SketchUp/Sketchup/Face.rb +45 -44
- data/SketchUp/Sketchup/Group.rb +47 -49
- data/SketchUp/Sketchup/Image.rb +16 -0
- data/SketchUp/Sketchup/ImageRep.rb +226 -0
- data/SketchUp/Sketchup/InstancePath.rb +13 -13
- data/SketchUp/Sketchup/Layer.rb +15 -17
- data/SketchUp/Sketchup/Material.rb +40 -30
- data/SketchUp/Sketchup/Materials.rb +40 -22
- data/SketchUp/Sketchup/Menu.rb +5 -5
- data/SketchUp/Sketchup/Model.rb +230 -228
- data/SketchUp/Sketchup/Page.rb +32 -0
- data/SketchUp/Sketchup/Pages.rb +3 -4
- data/SketchUp/Sketchup/RenderingOptions.rb +21 -16
- data/SketchUp/Sketchup/SectionPlane.rb +64 -0
- data/SketchUp/Sketchup/Selection.rb +20 -28
- data/SketchUp/Sketchup/ShadowInfo.rb +14 -14
- data/SketchUp/Sketchup/Text.rb +24 -26
- data/SketchUp/Sketchup/Texture.rb +28 -12
- data/SketchUp/Sketchup/Vertex.rb +14 -11
- data/SketchUp/Sketchup/View.rb +126 -116
- data/SketchUp/UI/Command.rb +17 -17
- data/SketchUp/UI/HtmlDialog.rb +8 -5
- data/SketchUp/UI/Notification.rb +1 -1
- data/SketchUp/UI/Toolbar.rb +13 -14
- data/SketchUp/UI/WebDialog.rb +55 -59
- data/SketchUp/_top_level.rb +139 -27
- data/SketchUp/{Array.rb → array.rb} +167 -30
- data/SketchUp/{Geom.rb → geom.rb} +9 -7
- data/SketchUp/{LanguageHandler.rb → languagehandler.rb} +15 -15
- data/SketchUp/{Length.rb → length.rb} +15 -15
- data/SketchUp/{Numeric.rb → numeric.rb} +19 -19
- data/SketchUp/sketchup.rb +167 -156
- data/SketchUp/{SketchupExtension.rb → sketchupextension.rb} +27 -27
- data/SketchUp/{String.rb → string.rb} +1 -1
- data/SketchUp/ui.rb +113 -87
- metadata +46 -9
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sketchup-api-stubs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Trimble Inc, SketchUp Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -44,18 +44,49 @@ executables: []
|
|
44
44
|
extensions: []
|
45
45
|
extra_rdoc_files: []
|
46
46
|
files:
|
47
|
-
- SketchUp/Array.rb
|
48
|
-
- SketchUp/Geom.rb
|
49
47
|
- SketchUp/Geom/BoundingBox.rb
|
48
|
+
- SketchUp/Geom/Bounds2d.rb
|
50
49
|
- SketchUp/Geom/LatLong.rb
|
50
|
+
- SketchUp/Geom/OrientedBounds2d.rb
|
51
|
+
- SketchUp/Geom/Point2d.rb
|
51
52
|
- SketchUp/Geom/Point3d.rb
|
52
53
|
- SketchUp/Geom/PolygonMesh.rb
|
53
54
|
- SketchUp/Geom/Transformation.rb
|
55
|
+
- SketchUp/Geom/Transformation2d.rb
|
54
56
|
- SketchUp/Geom/UTM.rb
|
57
|
+
- SketchUp/Geom/Vector2d.rb
|
55
58
|
- SketchUp/Geom/Vector3d.rb
|
56
|
-
- SketchUp/
|
57
|
-
- SketchUp/
|
58
|
-
- SketchUp/
|
59
|
+
- SketchUp/Layout.rb
|
60
|
+
- SketchUp/Layout/AngularDimension.rb
|
61
|
+
- SketchUp/Layout/AutoTextDefinition.rb
|
62
|
+
- SketchUp/Layout/AutoTextDefinitions.rb
|
63
|
+
- SketchUp/Layout/ConnectionPoint.rb
|
64
|
+
- SketchUp/Layout/Document.rb
|
65
|
+
- SketchUp/Layout/Ellipse.rb
|
66
|
+
- SketchUp/Layout/Entities.rb
|
67
|
+
- SketchUp/Layout/Entity.rb
|
68
|
+
- SketchUp/Layout/FormattedText.rb
|
69
|
+
- SketchUp/Layout/Grid.rb
|
70
|
+
- SketchUp/Layout/Group.rb
|
71
|
+
- SketchUp/Layout/Image.rb
|
72
|
+
- SketchUp/Layout/Label.rb
|
73
|
+
- SketchUp/Layout/Layer.rb
|
74
|
+
- SketchUp/Layout/LayerInstance.rb
|
75
|
+
- SketchUp/Layout/Layers.rb
|
76
|
+
- SketchUp/Layout/LinearDimension.rb
|
77
|
+
- SketchUp/Layout/LockedEntityError.rb
|
78
|
+
- SketchUp/Layout/LockedLayerError.rb
|
79
|
+
- SketchUp/Layout/Page.rb
|
80
|
+
- SketchUp/Layout/PageInfo.rb
|
81
|
+
- SketchUp/Layout/Pages.rb
|
82
|
+
- SketchUp/Layout/Path.rb
|
83
|
+
- SketchUp/Layout/Rectangle.rb
|
84
|
+
- SketchUp/Layout/SketchUpModel.rb
|
85
|
+
- SketchUp/Layout/Style.rb
|
86
|
+
- SketchUp/Layout/Table.rb
|
87
|
+
- SketchUp/Layout/TableCell.rb
|
88
|
+
- SketchUp/Layout/TableColumn.rb
|
89
|
+
- SketchUp/Layout/TableRow.rb
|
59
90
|
- SketchUp/Sketchup/Animation.rb
|
60
91
|
- SketchUp/Sketchup/AppObserver.rb
|
61
92
|
- SketchUp/Sketchup/ArcCurve.rb
|
@@ -95,6 +126,7 @@ files:
|
|
95
126
|
- SketchUp/Sketchup/Http/Request.rb
|
96
127
|
- SketchUp/Sketchup/Http/Response.rb
|
97
128
|
- SketchUp/Sketchup/Image.rb
|
129
|
+
- SketchUp/Sketchup/ImageRep.rb
|
98
130
|
- SketchUp/Sketchup/Importer.rb
|
99
131
|
- SketchUp/Sketchup/InputPoint.rb
|
100
132
|
- SketchUp/Sketchup/InstanceObserver.rb
|
@@ -139,15 +171,20 @@ files:
|
|
139
171
|
- SketchUp/Sketchup/Vertex.rb
|
140
172
|
- SketchUp/Sketchup/View.rb
|
141
173
|
- SketchUp/Sketchup/ViewObserver.rb
|
142
|
-
- SketchUp/SketchupExtension.rb
|
143
|
-
- SketchUp/String.rb
|
144
174
|
- SketchUp/UI/Command.rb
|
145
175
|
- SketchUp/UI/HtmlDialog.rb
|
146
176
|
- SketchUp/UI/Notification.rb
|
147
177
|
- SketchUp/UI/Toolbar.rb
|
148
178
|
- SketchUp/UI/WebDialog.rb
|
149
179
|
- SketchUp/_top_level.rb
|
180
|
+
- SketchUp/array.rb
|
181
|
+
- SketchUp/geom.rb
|
182
|
+
- SketchUp/languagehandler.rb
|
183
|
+
- SketchUp/length.rb
|
184
|
+
- SketchUp/numeric.rb
|
150
185
|
- SketchUp/sketchup.rb
|
186
|
+
- SketchUp/sketchupextension.rb
|
187
|
+
- SketchUp/string.rb
|
151
188
|
- SketchUp/ui.rb
|
152
189
|
homepage: https://github.com/SketchUp/ruby-api-stubs
|
153
190
|
licenses:
|