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
@@ -0,0 +1,563 @@
|
|
1
|
+
# Copyright:: Copyright 2017 Trimble Inc.
|
2
|
+
# License:: The MIT License (MIT)
|
3
|
+
|
4
|
+
# References a linear dimension entity. A {Layout::LinearDimension} is composed
|
5
|
+
# of the following sub-entities:
|
6
|
+
# - two 'extension lines' that connect to the {Layout::Entity} being
|
7
|
+
# dimensioned.
|
8
|
+
# - a 'dimension line' connecting the ends of the leaders. This may be
|
9
|
+
# represented by one or two {Layout::Path}s depending on appearance.
|
10
|
+
# - an optional 'leader line' that is used for small {Layout::LinearDimension}s.
|
11
|
+
# - a 'dimension text' that displays the {Layout::LinearDimension}'s text.
|
12
|
+
#
|
13
|
+
# There are six points that may be modified for a {Layout::LinearDimension}:
|
14
|
+
# - two 'connection points' that define the start and end of the
|
15
|
+
# {Layout::LinearDimension}.
|
16
|
+
# - two 'extent points' that define the start and end of the dimension line and
|
17
|
+
# are the ends of the two extension lines.
|
18
|
+
# - two 'offset points' that define the starting points of the extension lines.
|
19
|
+
#
|
20
|
+
# @version LayOut 2018
|
21
|
+
class Layout::LinearDimension < Layout::Entity
|
22
|
+
|
23
|
+
# Constants
|
24
|
+
|
25
|
+
LEADER_LINE_TYPE_BEZIER = nil # Stub value.
|
26
|
+
LEADER_LINE_TYPE_HIDDEN = nil # Stub value.
|
27
|
+
LEADER_LINE_TYPE_SINGLE_SEGMENT = nil # Stub value.
|
28
|
+
LEADER_LINE_TYPE_TWO_SEGMENT = nil # Stub value.
|
29
|
+
|
30
|
+
# Instance Methods
|
31
|
+
|
32
|
+
# The {#auto_scale=} method sets whether the scale for the
|
33
|
+
# {Layout::LinearDimension} is set automatically.
|
34
|
+
#
|
35
|
+
# @example
|
36
|
+
# start_point = Geom::Point2d.new(1, 1)
|
37
|
+
# end_point = Geom::Point2d.new(5, 5)
|
38
|
+
# height = 1.0
|
39
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
40
|
+
# dim.auto_scale = true
|
41
|
+
#
|
42
|
+
# @param [Boolean] uses_auto_scale
|
43
|
+
#
|
44
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
45
|
+
#
|
46
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
47
|
+
# {Layout::Layer}
|
48
|
+
#
|
49
|
+
# @version LayOut 2018
|
50
|
+
def auto_scale=(uses_auto_scale)
|
51
|
+
end
|
52
|
+
|
53
|
+
# The {#auto_scale?} method returns whether the scale for the
|
54
|
+
# {Layout::LinearDimension} is set automatically.
|
55
|
+
#
|
56
|
+
# @example
|
57
|
+
# start_point = Geom::Point2d.new(1, 1)
|
58
|
+
# end_point = Geom::Point2d.new(5, 5)
|
59
|
+
# height = 1.0
|
60
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
61
|
+
# uses_auto_scale = dim.auto_scale?
|
62
|
+
#
|
63
|
+
# @return [Boolean]
|
64
|
+
#
|
65
|
+
# @version LayOut 2018
|
66
|
+
def auto_scale?
|
67
|
+
end
|
68
|
+
|
69
|
+
# The {#connect} method connects the {Layout::LinearDimension} to one or two
|
70
|
+
# {Layout::Entity}s using the provided {Layout::ConnectionPoint}s. The
|
71
|
+
# {Layout::LinearDimension} must be in the same {Layout::Document} as the
|
72
|
+
# {Layout::Entity}s, and on the same {Layout::Page} if the {Layout::Entity}s
|
73
|
+
# are on non-shared {Layout::Layer}s.
|
74
|
+
#
|
75
|
+
# @example
|
76
|
+
# doc = Layout::Document.open("C:/path/to/document.layout")
|
77
|
+
# point_1 = Geom::Point2d.new(5, 7.5)
|
78
|
+
# point_2 = Geom::Point2d.new(8.5, 9)
|
79
|
+
# table = Layout::Rectangle.new([point_1, point_2])
|
80
|
+
# doc.add_entity(table, @doc.layers.first, @doc.pages.first)
|
81
|
+
# start_point = Layout::ConnectionPoint.new(table, point_1)
|
82
|
+
# end_point = Layout::ConnectionPoint.new(table, point_2)
|
83
|
+
# height = 1.0
|
84
|
+
# dim = Layout::LinearDimension.new(Geom::Point2d.new(1, 1),
|
85
|
+
# Geom::Point2d.new(5, 5), height)
|
86
|
+
# dim.connect(start_point, end_point)
|
87
|
+
#
|
88
|
+
# @param [Layout::ConnectionPoint] start_connection
|
89
|
+
#
|
90
|
+
# @param [Layout::ConnectionPoint] end_connection
|
91
|
+
#
|
92
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
93
|
+
#
|
94
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
95
|
+
# {Layout::Layer}
|
96
|
+
#
|
97
|
+
# @version LayOut 2018
|
98
|
+
def connect(start_connection, end_connection)
|
99
|
+
end
|
100
|
+
|
101
|
+
# The {#custom_text=} method sets whether the {Layout::LinearDimension} uses
|
102
|
+
# custom text. When +true+, the {Layout::LinearDimension} will display a custom
|
103
|
+
# string that doesn't change. When +false+, it will display the length
|
104
|
+
# measurement and will update automatically.
|
105
|
+
#
|
106
|
+
# @example
|
107
|
+
# start_point = Geom::Point2d.new(1, 1)
|
108
|
+
# end_point = Geom::Point2d.new(5, 5)
|
109
|
+
# height = 1.0
|
110
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
111
|
+
# dim.custom_text = true
|
112
|
+
#
|
113
|
+
# @param [Boolean] uses_custom_text
|
114
|
+
#
|
115
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
116
|
+
#
|
117
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
118
|
+
# {Layout::Layer}
|
119
|
+
#
|
120
|
+
# @version LayOut 2018
|
121
|
+
def custom_text=(uses_custom_text)
|
122
|
+
end
|
123
|
+
|
124
|
+
# The {#custom_text?} method returns whether the {Layout::LinearDimension}
|
125
|
+
# uses custom text. When +true+, the {Layout::LinearDimension} will display a
|
126
|
+
# custom string that doesn't change. When +false+, it will display the length
|
127
|
+
# measurement and will update automatically.
|
128
|
+
#
|
129
|
+
# @example
|
130
|
+
# start_point = Geom::Point2d.new(1, 1)
|
131
|
+
# end_point = Geom::Point2d.new(5, 5)
|
132
|
+
# height = 1.0
|
133
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
134
|
+
# # returns false
|
135
|
+
# uses_custom_text = dim.custom_text?
|
136
|
+
#
|
137
|
+
# @return [Boolean]
|
138
|
+
#
|
139
|
+
# @version LayOut 2018
|
140
|
+
def custom_text?
|
141
|
+
end
|
142
|
+
|
143
|
+
# The {#disconnect} method disconnects the {Layout::LinearDimension} from its
|
144
|
+
# {Layout::ConnectionPoint}s. The dimension will not be adjusted by
|
145
|
+
# disconnecting from its {Layout::ConnectionPoint}s.
|
146
|
+
#
|
147
|
+
# @example
|
148
|
+
# start_point = Geom::Point2d.new(1, 1)
|
149
|
+
# end_point = Geom::Point2d.new(5, 5)
|
150
|
+
# height = 1.0
|
151
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
152
|
+
# dim.disconnect
|
153
|
+
#
|
154
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
155
|
+
# {Layout::Layer}
|
156
|
+
#
|
157
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
158
|
+
#
|
159
|
+
# @version LayOut 2018
|
160
|
+
def disconnect
|
161
|
+
end
|
162
|
+
|
163
|
+
# The {#end_connection_point} method returns the paper space location for the
|
164
|
+
# second connection.
|
165
|
+
#
|
166
|
+
# @example
|
167
|
+
# start_point = Geom::Point2d.new(1, 1)
|
168
|
+
# end_point = Geom::Point2d.new(5, 5)
|
169
|
+
# height = 1.0
|
170
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
171
|
+
# end_connection = dim.end_connection_point
|
172
|
+
#
|
173
|
+
# @return [Geom::Point2d]
|
174
|
+
#
|
175
|
+
# @version LayOut 2018
|
176
|
+
def end_connection_point
|
177
|
+
end
|
178
|
+
|
179
|
+
# The {#end_connection_point=} method sets the paper space location for the
|
180
|
+
# second connection.
|
181
|
+
#
|
182
|
+
# @example
|
183
|
+
# start_point = Geom::Point2d.new(1, 1)
|
184
|
+
# end_point = Geom::Point2d.new(5, 5)
|
185
|
+
# height = 1.0
|
186
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
187
|
+
# dim.end_connection_point = Geom::Point2d.new(6, 6)
|
188
|
+
#
|
189
|
+
# @param [Geom::Point2d] end_point
|
190
|
+
#
|
191
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
192
|
+
#
|
193
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
194
|
+
# {Layout::Layer}
|
195
|
+
#
|
196
|
+
# @version LayOut 2018
|
197
|
+
def end_connection_point=(end_point)
|
198
|
+
end
|
199
|
+
|
200
|
+
# The {#end_extent_point} method returns the paper space location for the
|
201
|
+
# end of the dimension line.
|
202
|
+
#
|
203
|
+
# @example
|
204
|
+
# start_point = Geom::Point2d.new(1, 1)
|
205
|
+
# end_point = Geom::Point2d.new(5, 5)
|
206
|
+
# height = 1.0
|
207
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
208
|
+
# end_ext_point = dim.end_extent_point
|
209
|
+
#
|
210
|
+
# @return [Geom::Point2d] end_extent
|
211
|
+
#
|
212
|
+
# @version LayOut 2018
|
213
|
+
def end_extent_point
|
214
|
+
end
|
215
|
+
|
216
|
+
# The {#end_extent_point=} method sets the paper space location for the
|
217
|
+
# end of the dimension line.
|
218
|
+
#
|
219
|
+
# @example
|
220
|
+
# start_point = Geom::Point2d.new(1, 1)
|
221
|
+
# end_point = Geom::Point2d.new(5, 5)
|
222
|
+
# height = 1.0
|
223
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
224
|
+
# end_ext_point = Geom::Point2d.new(5, 6)
|
225
|
+
# dim.end_extent_point = end_ext_point
|
226
|
+
#
|
227
|
+
# @param [Geom::Point2d] end_extent
|
228
|
+
#
|
229
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
230
|
+
#
|
231
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
232
|
+
# {Layout::Layer}
|
233
|
+
#
|
234
|
+
# @version LayOut 2018
|
235
|
+
def end_extent_point=(end_extent)
|
236
|
+
end
|
237
|
+
|
238
|
+
# The {#end_offset_length=} method sets the length of the offset from the
|
239
|
+
# second {Layout::ConnectionPoint} to the start of the second extension line.
|
240
|
+
# The {Layout::ConnectionPoint} and extent point will not move.
|
241
|
+
#
|
242
|
+
# @example
|
243
|
+
# start_point = Geom::Point2d.new(1, 1)
|
244
|
+
# end_point = Geom::Point2d.new(5, 5)
|
245
|
+
# height = 1.0
|
246
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
247
|
+
# end_ext_point = Geom::Point2d.new(5, 6)
|
248
|
+
# dim.end_offset_length = 0.5
|
249
|
+
#
|
250
|
+
# @param [Numeric] offset_length
|
251
|
+
#
|
252
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
253
|
+
#
|
254
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
255
|
+
# {Layout::Layer}
|
256
|
+
#
|
257
|
+
# @version LayOut 2018
|
258
|
+
def end_offset_length=(offset_length)
|
259
|
+
end
|
260
|
+
|
261
|
+
# The {#end_offset_point} method returns the paper space location for the
|
262
|
+
# end of the first extension line. The first extension line runs from this
|
263
|
+
# offset point to the end extent point.
|
264
|
+
#
|
265
|
+
# @example
|
266
|
+
# start_point = Geom::Point2d.new(1, 1)
|
267
|
+
# end_point = Geom::Point2d.new(5, 5)
|
268
|
+
# height = 1.0
|
269
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
270
|
+
# end_offset = dim.end_offset_point
|
271
|
+
#
|
272
|
+
# @return [Geom::Point2d] end_offset
|
273
|
+
#
|
274
|
+
# @version LayOut 2018
|
275
|
+
def end_offset_point
|
276
|
+
end
|
277
|
+
|
278
|
+
# The {#entities} method returns the {Layout::Entities} that represent the
|
279
|
+
# {Layout::LinearDimension} in its exploded form. Depending on the appearance
|
280
|
+
# of the {Layout::LinearDimension}, this may return anywhere from four to six
|
281
|
+
# {Layout::Entity}s: start extension line, end extension line, one or two
|
282
|
+
# dimension lines, dimension text, and optionally the leader line.
|
283
|
+
#
|
284
|
+
# @example
|
285
|
+
# start_point = Geom::Point2d.new(1, 1)
|
286
|
+
# end_point = Geom::Point2d.new(5, 5)
|
287
|
+
# height = 1.0
|
288
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
289
|
+
# entites = dim.entities
|
290
|
+
#
|
291
|
+
# @return [Layout::Entities]
|
292
|
+
#
|
293
|
+
# @version LayOut 2018
|
294
|
+
def entities
|
295
|
+
end
|
296
|
+
|
297
|
+
# The {#initialize} method creates a new disconnected {Layout::LinearDimension}.
|
298
|
+
#
|
299
|
+
# @example
|
300
|
+
# start_point = Geom::Point2d.new(1, 1)
|
301
|
+
# end_point = Geom::Point2d.new(5, 5)
|
302
|
+
# height = 1.0
|
303
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
304
|
+
#
|
305
|
+
# @param [Geom::Point2d] start_point
|
306
|
+
#
|
307
|
+
# @param [Geom::Point2d] end_point
|
308
|
+
#
|
309
|
+
# @param [Numeric] height
|
310
|
+
# Distance from the start and end points to the
|
311
|
+
# dimension line
|
312
|
+
#
|
313
|
+
# @return [Layout::LinearDimension]
|
314
|
+
#
|
315
|
+
# @version LayOut 2018
|
316
|
+
def initialize(start_point, end_point, height)
|
317
|
+
end
|
318
|
+
|
319
|
+
# The {#leader_line_type} method returns the type of leader line the
|
320
|
+
# {Layout::LinearDimension} is using.
|
321
|
+
#
|
322
|
+
# The leader line type can be one of the following:
|
323
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_SINGLE_SEGMENT+]
|
324
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_TWO_SEGMENT+]
|
325
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_BEZIER+]
|
326
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_HIDDEN+]
|
327
|
+
#
|
328
|
+
# @example
|
329
|
+
# start_point = Geom::Point2d.new(1, 1)
|
330
|
+
# end_point = Geom::Point2d.new(5, 5)
|
331
|
+
# height = 1.0
|
332
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
333
|
+
# type = dim.leader_line_type
|
334
|
+
#
|
335
|
+
# @return [Integer]
|
336
|
+
#
|
337
|
+
# @version LayOut 2018
|
338
|
+
def leader_line_type
|
339
|
+
end
|
340
|
+
|
341
|
+
# The {#leader_line_type=} method sets the type of leader line the
|
342
|
+
# {Layout::LinearDimension} is using.
|
343
|
+
#
|
344
|
+
# The leader line type can be one of the following:
|
345
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_SINGLE_SEGMENT+]
|
346
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_TWO_SEGMENT+]
|
347
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_BEZIER+]
|
348
|
+
# [+Layout::LinearDimension::LEADER_LINE_TYPE_HIDDEN+]
|
349
|
+
#
|
350
|
+
# @example
|
351
|
+
# start_point = Geom::Point2d.new(1, 1)
|
352
|
+
# end_point = Geom::Point2d.new(5, 5)
|
353
|
+
# height = 1.0
|
354
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
355
|
+
# dim.leader_line_type = Layout::LinearDimension::LEADER_LINE_TYPE_BEZIER
|
356
|
+
#
|
357
|
+
# @param [Integer] type
|
358
|
+
# The leader line type
|
359
|
+
#
|
360
|
+
# @raise [ArgumentError] if leader_line_type is not a valid leader line type
|
361
|
+
#
|
362
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
363
|
+
#
|
364
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
365
|
+
# {Layout::Layer}
|
366
|
+
#
|
367
|
+
# @version LayOut 2018
|
368
|
+
def leader_line_type=(type)
|
369
|
+
end
|
370
|
+
|
371
|
+
# The {#scale} method returns the scale being used for the
|
372
|
+
# {Layout::LinearDimension}.
|
373
|
+
#
|
374
|
+
# @example
|
375
|
+
# start_point = Geom::Point2d.new(1, 1)
|
376
|
+
# end_point = Geom::Point2d.new(5, 5)
|
377
|
+
# height = 1.0
|
378
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
379
|
+
# scale = dim.scale
|
380
|
+
#
|
381
|
+
# @return [Numeric] scale
|
382
|
+
#
|
383
|
+
# @version LayOut 2018
|
384
|
+
def scale
|
385
|
+
end
|
386
|
+
|
387
|
+
# The {#scale=} method sets the scale being used for the
|
388
|
+
# {Layout::LinearDimension}.
|
389
|
+
#
|
390
|
+
# @example
|
391
|
+
# start_point = Geom::Point2d.new(1, 1)
|
392
|
+
# end_point = Geom::Point2d.new(5, 5)
|
393
|
+
# height = 1.0
|
394
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
395
|
+
# dim.scale = 1.5
|
396
|
+
#
|
397
|
+
# @param [Numeric] scale
|
398
|
+
#
|
399
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
400
|
+
# {Layout::Layer}
|
401
|
+
#
|
402
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
403
|
+
#
|
404
|
+
# @raise [ArgumentError] if scale is negative, or greater than 1.0
|
405
|
+
#
|
406
|
+
# @version LayOut 2018
|
407
|
+
def scale=(scale)
|
408
|
+
end
|
409
|
+
|
410
|
+
# The {#start_connection_point} method returns the paper space location for the
|
411
|
+
# first connection.
|
412
|
+
#
|
413
|
+
# @example
|
414
|
+
# start_point = Geom::Point2d.new(1, 1)
|
415
|
+
# end_point = Geom::Point2d.new(5, 5)
|
416
|
+
# height = 1.0
|
417
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
418
|
+
# start_connection = dim.start_connection_point
|
419
|
+
#
|
420
|
+
# @return [Geom::Point2d]
|
421
|
+
#
|
422
|
+
# @version LayOut 2018
|
423
|
+
def start_connection_point
|
424
|
+
end
|
425
|
+
|
426
|
+
# The {#start_connection_point=} method sets the paper space location for the
|
427
|
+
# first connection.
|
428
|
+
#
|
429
|
+
# @example
|
430
|
+
# start_point = Geom::Point2d.new(1, 1)
|
431
|
+
# end_point = Geom::Point2d.new(5, 5)
|
432
|
+
# height = 1.0
|
433
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
434
|
+
# dim.start_connection_point = Geom::Point2d.new(2, 2)
|
435
|
+
#
|
436
|
+
# @param [Geom::Point2d] start_point
|
437
|
+
#
|
438
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
439
|
+
#
|
440
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
441
|
+
# {Layout::Layer}
|
442
|
+
#
|
443
|
+
# @version LayOut 2018
|
444
|
+
def start_connection_point=(start_point)
|
445
|
+
end
|
446
|
+
|
447
|
+
# The {#start_extent_point} method returns the paper space location for the
|
448
|
+
# start of the dimension line.
|
449
|
+
#
|
450
|
+
# @example
|
451
|
+
# start_point = Geom::Point2d.new(1, 1)
|
452
|
+
# end_point = Geom::Point2d.new(5, 5)
|
453
|
+
# height = 1.0
|
454
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
455
|
+
# start_ext_point = dim.start_extent_point
|
456
|
+
#
|
457
|
+
# @return [Geom::Point2d] start_extent
|
458
|
+
#
|
459
|
+
# @version LayOut 2018
|
460
|
+
def start_extent_point
|
461
|
+
end
|
462
|
+
|
463
|
+
# The {#start_extent_point=} method sets the paper space location for the
|
464
|
+
# start of the dimension line.
|
465
|
+
#
|
466
|
+
# @example
|
467
|
+
# start_point = Geom::Point2d.new(1, 1)
|
468
|
+
# end_point = Geom::Point2d.new(5, 5)
|
469
|
+
# height = 1.0
|
470
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
471
|
+
# start_ext_point = Geom::Point2d.new(2, 3)
|
472
|
+
# dim.start_extent_point = start_ext_point
|
473
|
+
#
|
474
|
+
# @param [Geom::Point2d] start_extent
|
475
|
+
#
|
476
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
477
|
+
#
|
478
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
479
|
+
# {Layout::Layer}
|
480
|
+
#
|
481
|
+
# @version LayOut 2018
|
482
|
+
def start_extent_point=(start_extent)
|
483
|
+
end
|
484
|
+
|
485
|
+
# The {#start_offset_length=} method sets the length of the offset from the
|
486
|
+
# first {Layout::ConnectionPoint} to the start of the first extension line. The
|
487
|
+
# {Layout::ConnectionPoint} and extent point will not move.
|
488
|
+
#
|
489
|
+
# @example
|
490
|
+
# start_point = Geom::Point2d.new(1, 1)
|
491
|
+
# end_point = Geom::Point2d.new(5, 5)
|
492
|
+
# height = 1.0
|
493
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
494
|
+
# end_ext_point = Geom::Point2d.new(5, 6)
|
495
|
+
# dim.start_offset_length = 0.5
|
496
|
+
#
|
497
|
+
# @param [Numeric] offset_length
|
498
|
+
#
|
499
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
500
|
+
#
|
501
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
502
|
+
# {Layout::Layer}
|
503
|
+
#
|
504
|
+
# @version LayOut 2018
|
505
|
+
def start_offset_length=(offset_length)
|
506
|
+
end
|
507
|
+
|
508
|
+
# The {#start_offset_point} method returns the paper space location for the
|
509
|
+
# start of the first extension line. The first extension line runs from this
|
510
|
+
# offset point to the start extent point.
|
511
|
+
#
|
512
|
+
# @example
|
513
|
+
# start_point = Geom::Point2d.new(1, 1)
|
514
|
+
# end_point = Geom::Point2d.new(5, 5)
|
515
|
+
# height = 1.0
|
516
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
517
|
+
# start_offset = dim.start_offset_point
|
518
|
+
#
|
519
|
+
# @return [Geom::Point2d] start_offset
|
520
|
+
#
|
521
|
+
# @version LayOut 2018
|
522
|
+
def start_offset_point
|
523
|
+
end
|
524
|
+
|
525
|
+
# The {#text} method returns a copy of the {Layout::LinearDimension}'s
|
526
|
+
# {Layout::FormattedText}.
|
527
|
+
#
|
528
|
+
# @example
|
529
|
+
# start_point = Geom::Point2d.new(1, 1)
|
530
|
+
# end_point = Geom::Point2d.new(5, 5)
|
531
|
+
# height = 1.0
|
532
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
533
|
+
# text = dim.text
|
534
|
+
#
|
535
|
+
# @return [Layout::FormattedText]
|
536
|
+
#
|
537
|
+
# @version LayOut 2018
|
538
|
+
def text
|
539
|
+
end
|
540
|
+
|
541
|
+
# The {#text=} method sets the {Layout::LinearDimension}'s
|
542
|
+
# {Layout::FormattedText}.
|
543
|
+
#
|
544
|
+
# @example
|
545
|
+
# start_point = Geom::Point2d.new(1, 1)
|
546
|
+
# end_point = Geom::Point2d.new(5, 5)
|
547
|
+
# height = 1.0
|
548
|
+
# dim = Layout::LinearDimension.new(start_point, end_point, height)
|
549
|
+
# anchor_type = Layout::FormattedText::ANCHOR_TYPE_TOP_LEFT
|
550
|
+
# dim.text = Layout::FormattedText.new("Hello LayOut", start_point, anchor_type)
|
551
|
+
#
|
552
|
+
# @param [Layout::FormattedText] formatted_text
|
553
|
+
#
|
554
|
+
# @raise [LockedEntityError] if the {Layout::LinearDimension} is locked
|
555
|
+
#
|
556
|
+
# @raise [LockedLayerError] if the {Layout::LinearDimension} is on a locked
|
557
|
+
# {Layout::Layer}
|
558
|
+
#
|
559
|
+
# @version LayOut 2018
|
560
|
+
def text=(formatted_text)
|
561
|
+
end
|
562
|
+
|
563
|
+
end
|