forked from SketchUp/ruby-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sketchup.html
7822 lines (4048 loc) · 202 KB
/
Sketchup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- VIEWPORT -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- AUTHOR and GENERATOR -->
<meta name="author" content="SketchUp Extensibility Team">
<meta name="generator" content="YARD https://yardoc.org">
<!-- TITLE -->
<title>
Module: Sketchup — SketchUp Ruby API Documentation
</title>
<!-- SHORTCUT ICON -->
<link rel="shortcut icon" type="image/vnd.microsoft.icon"
href="https://ruby.sketchup.com/favicon.ico" />
<!-- GENERIC META PROPERTIES -->
<meta name="url" content="https://ruby.sketchup.com/Sketchup.html" />
<meta name="image" content="https://ruby.sketchup.com/images/Ruby.svg" />
<meta name="title" content="Module: Sketchup" />
<meta name="name" content="SketchUp Ruby API Documentation" />
<meta name="description" content="The Sketchup module contains a number of important utility methods for use in your Ruby scripts." />
<!-- OPEN GRAPH META PROPERTIES -->
<meta property="og:site_name" content="SketchUp Ruby API Documentation" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://ruby.sketchup.com/images/Ruby.svg" />
<meta property="og:image:width" content="60" />
<meta property="og:image:height" content="60" />
<meta property="og:title" content="Module: Sketchup" />
<meta property="og:url" content="https://ruby.sketchup.com/Sketchup.html" />
<meta property="og:description" content="The Sketchup module contains a number of important utility methods for use in your Ruby scripts." />
<!-- TWITTER CARD META PROPERTIES -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@sketchup" />
<meta name="twitter:title" content="Module: Sketchup" />
<meta name="twitter:description" content="The Sketchup module contains a number of important utility methods for use in your Ruby scripts." />
<meta name="twitter:image:src" content="https://ruby.sketchup.com/images/Ruby.svg?s=120" />
<meta name="twitter:url" content="https://ruby.sketchup.com/Sketchup.html" />
<!-- STYLESHEETS -->
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic" />
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="css/sketchup.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="css/rubyapi.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="css/rouge.css" type="text/css" charset="utf-8" />
<!-- SCRIPTS -->
<script type="text/javascript">
pathId = "Sketchup";
relpath = '';
</script>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery-migrate.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
<script>
// Every time this page is loaded, it sends this action to SketchUp, telling
// SketchUp that a new page has loaded that has example snippets that should
// be replaced with code editors. Nothing happens if the page is loaded in a
// regular browser outside of the SketchUp client.
$( document ).ready(function() {
if (typeof sketchup == 'object') {
sketchup.page_loaded();
}
});
</script>
</head>
<body>
<!-- SU - start -->
<header id="navbar" role="banner" class="navbar navbar-fixed-top navbar-inverse">
<div id="api-documentation-header">
<div class="navbar-header">
<a class="logo navbar-btn pull-left" href="https://developer.sketchup.com" title="Home">
<img src="images/sketchup-logo.svg" alt="SketchUp">
</a>
<a class="name navbar-brand" href="/en" title="Home">SketchUp Developer Center</a>
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<nav role="navigation">
<ul class="menu nav navbar-nav">
<li class="first leaf"><a href="https://forums.sketchup.com/c/developers">Community</a></li>
<li class="leaf"><a href="https://blog.sketchup.com/">SketchUp Blog</a></li>
<li class="leaf"><a href="https://www.sketchup.com/download" class="top-menu--download-button">Download</a></li>
<li class="last expanded dropdown">
<a href="https://www.trimble.com" class="trimble-top-menu-item dropdown-toggle" data-target="#" data-toggle="dropdown"><img src="images/trimble-logo-white.svg" alt="Trimble"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="first leaf"><a href="https://connect.trimble.com/">Trimble Connect</a></li>
<li class="leaf"><a href="https://www.trimble.com/Corporate/About_Trimble.aspx">About Trimble</a></li>
<li class="last leaf"><a href="https://buildings.trimble.com/">Trimble Buildings</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- SU - end -->
<div id="su-content">
<div class="nav_wrap">
<iframe id="nav" src="class_list.html"></iframe>
<div id="resizer"></div>
</div>
<div id="main" tabindex="-1">
<div id="header">
<div id="menu">
<a href="_index.html">Index (S)</a> »
<span class="title">Sketchup</span>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="class_list.html">
<svg width="24" height="24">
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
</svg>
</a>
</div>
<div class="clear"></div>
</div>
<div id="content"><h1>Module: Sketchup
</h1>
<div class="box_info">
</div>
<h2>Overview</h2><div class="docstring">
<div class="discussion">
<p>The Sketchup module contains a number of important utility methods for use in your Ruby scripts. Many of the classes in the API are implemented beneath this module. You can think of the Sketchup module as the “root” of the application tree. Most ruby calls start from the currently active model, and this is accessed via the Sketchup.active_model method.</p>
</div>
</div>
<div class="tags">
<div class="examples">
<p class="tag_title">Examples:</p>
<pre class="example code"><code><span class='comment'># Grab a handle to the currently active model (aka the one the user is
</span><span class='comment'># looking at in SketchUp.)
</span><span class='id identifier rubyid_model'>model</span> <span class='op'>=</span> <span class='const'>Sketchup</span><span class='period'>.</span><span class='id identifier rubyid_active_model'><span class='object_link'><a href="#active_model-class_method" title="Sketchup.active_model (method)">active_model</a></span></span>
<span class='comment'># Grab other handles to commonly used collections inside the model.
</span><span class='id identifier rubyid_entities'>entities</span> <span class='op'>=</span> <span class='id identifier rubyid_model'>model</span><span class='period'>.</span><span class='id identifier rubyid_entities'>entities</span>
<span class='id identifier rubyid_layers'>layers</span> <span class='op'>=</span> <span class='id identifier rubyid_model'>model</span><span class='period'>.</span><span class='id identifier rubyid_layers'>layers</span>
<span class='id identifier rubyid_materials'>materials</span> <span class='op'>=</span> <span class='id identifier rubyid_model'>model</span><span class='period'>.</span><span class='id identifier rubyid_materials'>materials</span>
<span class='id identifier rubyid_component_definitions'>component_definitions</span> <span class='op'>=</span> <span class='id identifier rubyid_model'>model</span><span class='period'>.</span><span class='id identifier rubyid_definitions'>definitions</span>
<span class='id identifier rubyid_selection'>selection</span> <span class='op'>=</span> <span class='id identifier rubyid_model'>model</span><span class='period'>.</span><span class='id identifier rubyid_selection'>selection</span>
<span class='comment'># Now that we have our handles, we can start pulling objects and making
</span><span class='comment'># method calls that are useful.
</span><span class='id identifier rubyid_first_entity'>first_entity</span> <span class='op'>=</span> <span class='id identifier rubyid_entities'>entities</span><span class='lbracket'>[</span><span class='int'>0</span><span class='rbracket'>]</span>
<span class='const'><span class='object_link'><a href="UI.html" title="UI (module)">UI</a></span></span><span class='period'>.</span><span class='id identifier rubyid_messagebox'><span class='object_link'><a href="UI.html#messagebox-class_method" title="UI.messagebox (method)">messagebox</a></span></span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>First thing in your model is a </span><span class='tstring_end'>"</span></span> <span class='op'>+</span> <span class='id identifier rubyid_first_entity'>first_entity</span><span class='period'>.</span><span class='id identifier rubyid_typename'>typename</span><span class='rparen'>)</span>
<span class='id identifier rubyid_number_materials'>number_materials</span> <span class='op'>=</span> <span class='id identifier rubyid_materials'>materials</span><span class='period'>.</span><span class='id identifier rubyid_length'>length</span>
<span class='const'><span class='object_link'><a href="UI.html" title="UI (module)">UI</a></span></span><span class='period'>.</span><span class='id identifier rubyid_messagebox'><span class='object_link'><a href="UI.html#messagebox-class_method" title="UI.messagebox (method)">messagebox</a></span></span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Your model has </span><span class='tstring_end'>"</span></span> <span class='op'>+</span> <span class='id identifier rubyid_number_materials'>number_materials</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span> <span class='op'>+</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'> materials.</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
<span class='id identifier rubyid_new_edge'>new_edge</span> <span class='op'>=</span> <span class='id identifier rubyid_entities'>entities</span><span class='period'>.</span><span class='id identifier rubyid_add_line'>add_line</span><span class='lparen'>(</span> <span class='lbracket'>[</span><span class='int'>0</span><span class='comma'>,</span><span class='int'>0</span><span class='comma'>,</span><span class='int'>0</span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='int'>500</span><span class='comma'>,</span><span class='int'>500</span><span class='comma'>,</span><span class='int'>0</span><span class='rbracket'>]</span><span class='rparen'>)</span></code></pre>
</div>
<p class="tag_title">Version:</p>
<ul class="version">
<li>
<div class='inline'>
<p>SketchUp 6.0</p>
</div>
</li>
</ul>
</div><h2>Defined Under Namespace</h2>
<p class="children">
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Sketchup/Http.html" title="Sketchup::Http (module)">Http</a></span>, <span class='object_link'><a href="Sketchup/Licensing.html" title="Sketchup::Licensing (module)">Licensing</a></span>, <span class='object_link'><a href="Sketchup/RegionalSettings.html" title="Sketchup::RegionalSettings (module)">RegionalSettings</a></span>, <span class='object_link'><a href="Sketchup/Skp.html" title="Sketchup::Skp (module)">Skp</a></span>
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Sketchup/Animation.html" title="Sketchup::Animation (class)">Animation</a></span>, <span class='object_link'><a href="Sketchup/AppObserver.html" title="Sketchup::AppObserver (class)">AppObserver</a></span>, <span class='object_link'><a href="Sketchup/ArcCurve.html" title="Sketchup::ArcCurve (class)">ArcCurve</a></span>, <span class='object_link'><a href="Sketchup/AttributeDictionaries.html" title="Sketchup::AttributeDictionaries (class)">AttributeDictionaries</a></span>, <span class='object_link'><a href="Sketchup/AttributeDictionary.html" title="Sketchup::AttributeDictionary (class)">AttributeDictionary</a></span>, <span class='object_link'><a href="Sketchup/Axes.html" title="Sketchup::Axes (class)">Axes</a></span>, <span class='object_link'><a href="Sketchup/Behavior.html" title="Sketchup::Behavior (class)">Behavior</a></span>, <span class='object_link'><a href="Sketchup/Camera.html" title="Sketchup::Camera (class)">Camera</a></span>, <span class='object_link'><a href="Sketchup/ClassificationSchema.html" title="Sketchup::ClassificationSchema (class)">ClassificationSchema</a></span>, <span class='object_link'><a href="Sketchup/Classifications.html" title="Sketchup::Classifications (class)">Classifications</a></span>, <span class='object_link'><a href="Sketchup/Color.html" title="Sketchup::Color (class)">Color</a></span>, <span class='object_link'><a href="Sketchup/ComponentDefinition.html" title="Sketchup::ComponentDefinition (class)">ComponentDefinition</a></span>, <span class='object_link'><a href="Sketchup/ComponentInstance.html" title="Sketchup::ComponentInstance (class)">ComponentInstance</a></span>, <span class='object_link'><a href="Sketchup/Console.html" title="Sketchup::Console (class)">Console</a></span>, <span class='object_link'><a href="Sketchup/ConstructionLine.html" title="Sketchup::ConstructionLine (class)">ConstructionLine</a></span>, <span class='object_link'><a href="Sketchup/ConstructionPoint.html" title="Sketchup::ConstructionPoint (class)">ConstructionPoint</a></span>, <span class='object_link'><a href="Sketchup/Curve.html" title="Sketchup::Curve (class)">Curve</a></span>, <span class='object_link'><a href="Sketchup/DefinitionList.html" title="Sketchup::DefinitionList (class)">DefinitionList</a></span>, <span class='object_link'><a href="Sketchup/DefinitionObserver.html" title="Sketchup::DefinitionObserver (class)">DefinitionObserver</a></span>, <span class='object_link'><a href="Sketchup/DefinitionsObserver.html" title="Sketchup::DefinitionsObserver (class)">DefinitionsObserver</a></span>, <span class='object_link'><a href="Sketchup/Dimension.html" title="Sketchup::Dimension (class)">Dimension</a></span>, <span class='object_link'><a href="Sketchup/DimensionLinear.html" title="Sketchup::DimensionLinear (class)">DimensionLinear</a></span>, <span class='object_link'><a href="Sketchup/DimensionObserver.html" title="Sketchup::DimensionObserver (class)">DimensionObserver</a></span>, <span class='object_link'><a href="Sketchup/DimensionRadial.html" title="Sketchup::DimensionRadial (class)">DimensionRadial</a></span>, <span class='object_link'><a href="Sketchup/Drawingelement.html" title="Sketchup::Drawingelement (class)">Drawingelement</a></span>, <span class='object_link'><a href="Sketchup/Edge.html" title="Sketchup::Edge (class)">Edge</a></span>, <span class='object_link'><a href="Sketchup/EdgeUse.html" title="Sketchup::EdgeUse (class)">EdgeUse</a></span>, <span class='object_link'><a href="Sketchup/Entities.html" title="Sketchup::Entities (class)">Entities</a></span>, <span class='object_link'><a href="Sketchup/EntitiesBuilder.html" title="Sketchup::EntitiesBuilder (class)">EntitiesBuilder</a></span>, <span class='object_link'><a href="Sketchup/EntitiesObserver.html" title="Sketchup::EntitiesObserver (class)">EntitiesObserver</a></span>, <span class='object_link'><a href="Sketchup/Entity.html" title="Sketchup::Entity (class)">Entity</a></span>, <span class='object_link'><a href="Sketchup/EntityObserver.html" title="Sketchup::EntityObserver (class)">EntityObserver</a></span>, <span class='object_link'><a href="Sketchup/ExtensionsManager.html" title="Sketchup::ExtensionsManager (class)">ExtensionsManager</a></span>, <span class='object_link'><a href="Sketchup/Face.html" title="Sketchup::Face (class)">Face</a></span>, <span class='object_link'><a href="Sketchup/FrameChangeObserver.html" title="Sketchup::FrameChangeObserver (class)">FrameChangeObserver</a></span>, <span class='object_link'><a href="Sketchup/Group.html" title="Sketchup::Group (class)">Group</a></span>, <span class='object_link'><a href="Sketchup/Image.html" title="Sketchup::Image (class)">Image</a></span>, <span class='object_link'><a href="Sketchup/ImageRep.html" title="Sketchup::ImageRep (class)">ImageRep</a></span>, <span class='object_link'><a href="Sketchup/Importer.html" title="Sketchup::Importer (class)">Importer</a></span>, <span class='object_link'><a href="Sketchup/InputPoint.html" title="Sketchup::InputPoint (class)">InputPoint</a></span>, <span class='object_link'><a href="Sketchup/InstanceObserver.html" title="Sketchup::InstanceObserver (class)">InstanceObserver</a></span>, <span class='object_link'><a href="Sketchup/InstancePath.html" title="Sketchup::InstancePath (class)">InstancePath</a></span>, <span class='object_link'><a href="Sketchup/Layer.html" title="Sketchup::Layer (class)">Layer</a></span>, <span class='object_link'><a href="Sketchup/LayerFolder.html" title="Sketchup::LayerFolder (class)">LayerFolder</a></span>, <span class='object_link'><a href="Sketchup/Layers.html" title="Sketchup::Layers (class)">Layers</a></span>, <span class='object_link'><a href="Sketchup/LayersObserver.html" title="Sketchup::LayersObserver (class)">LayersObserver</a></span>, <span class='object_link'><a href="Sketchup/LineStyle.html" title="Sketchup::LineStyle (class)">LineStyle</a></span>, <span class='object_link'><a href="Sketchup/LineStyles.html" title="Sketchup::LineStyles (class)">LineStyles</a></span>, <span class='object_link'><a href="Sketchup/Loop.html" title="Sketchup::Loop (class)">Loop</a></span>, <span class='object_link'><a href="Sketchup/Material.html" title="Sketchup::Material (class)">Material</a></span>, <span class='object_link'><a href="Sketchup/Materials.html" title="Sketchup::Materials (class)">Materials</a></span>, <span class='object_link'><a href="Sketchup/MaterialsObserver.html" title="Sketchup::MaterialsObserver (class)">MaterialsObserver</a></span>, <span class='object_link'><a href="Sketchup/Menu.html" title="Sketchup::Menu (class)">Menu</a></span>, <span class='object_link'><a href="Sketchup/Model.html" title="Sketchup::Model (class)">Model</a></span>, <span class='object_link'><a href="Sketchup/ModelObserver.html" title="Sketchup::ModelObserver (class)">ModelObserver</a></span>, <span class='object_link'><a href="Sketchup/OptionsManager.html" title="Sketchup::OptionsManager (class)">OptionsManager</a></span>, <span class='object_link'><a href="Sketchup/OptionsProvider.html" title="Sketchup::OptionsProvider (class)">OptionsProvider</a></span>, <span class='object_link'><a href="Sketchup/OptionsProviderObserver.html" title="Sketchup::OptionsProviderObserver (class)">OptionsProviderObserver</a></span>, <span class='object_link'><a href="Sketchup/Overlay.html" title="Sketchup::Overlay (class)">Overlay</a></span>, <span class='object_link'><a href="Sketchup/OverlaysManager.html" title="Sketchup::OverlaysManager (class)">OverlaysManager</a></span>, <span class='object_link'><a href="Sketchup/Page.html" title="Sketchup::Page (class)">Page</a></span>, <span class='object_link'><a href="Sketchup/Pages.html" title="Sketchup::Pages (class)">Pages</a></span>, <span class='object_link'><a href="Sketchup/PagesObserver.html" title="Sketchup::PagesObserver (class)">PagesObserver</a></span>, <span class='object_link'><a href="Sketchup/PickHelper.html" title="Sketchup::PickHelper (class)">PickHelper</a></span>, <span class='object_link'><a href="Sketchup/RenderingOptions.html" title="Sketchup::RenderingOptions (class)">RenderingOptions</a></span>, <span class='object_link'><a href="Sketchup/RenderingOptionsObserver.html" title="Sketchup::RenderingOptionsObserver (class)">RenderingOptionsObserver</a></span>, <span class='object_link'><a href="Sketchup/SectionPlane.html" title="Sketchup::SectionPlane (class)">SectionPlane</a></span>, <span class='object_link'><a href="Sketchup/Selection.html" title="Sketchup::Selection (class)">Selection</a></span>, <span class='object_link'><a href="Sketchup/SelectionObserver.html" title="Sketchup::SelectionObserver (class)">SelectionObserver</a></span>, <span class='object_link'><a href="Sketchup/Set.html" title="Sketchup::Set (class)">Set</a></span>, <span class='object_link'><a href="Sketchup/ShadowInfo.html" title="Sketchup::ShadowInfo (class)">ShadowInfo</a></span>, <span class='object_link'><a href="Sketchup/ShadowInfoObserver.html" title="Sketchup::ShadowInfoObserver (class)">ShadowInfoObserver</a></span>, <span class='object_link'><a href="Sketchup/Style.html" title="Sketchup::Style (class)">Style</a></span>, <span class='object_link'><a href="Sketchup/Styles.html" title="Sketchup::Styles (class)">Styles</a></span>, <span class='object_link'><a href="Sketchup/Text.html" title="Sketchup::Text (class)">Text</a></span>, <span class='object_link'><a href="Sketchup/Texture.html" title="Sketchup::Texture (class)">Texture</a></span>, <span class='object_link'><a href="Sketchup/TextureWriter.html" title="Sketchup::TextureWriter (class)">TextureWriter</a></span>, <span class='object_link'><a href="Sketchup/Tool.html" title="Sketchup::Tool (class)">Tool</a></span>, <span class='object_link'><a href="Sketchup/Tools.html" title="Sketchup::Tools (class)">Tools</a></span>, <span class='object_link'><a href="Sketchup/ToolsObserver.html" title="Sketchup::ToolsObserver (class)">ToolsObserver</a></span>, <span class='object_link'><a href="Sketchup/UVHelper.html" title="Sketchup::UVHelper (class)">UVHelper</a></span>, <span class='object_link'><a href="Sketchup/Vertex.html" title="Sketchup::Vertex (class)">Vertex</a></span>, <span class='object_link'><a href="Sketchup/View.html" title="Sketchup::View (class)">View</a></span>, <span class='object_link'><a href="Sketchup/ViewObserver.html" title="Sketchup::ViewObserver (class)">ViewObserver</a></span>
</p>
<h2>
Class Method Summary
<a
id="class_method_summary"
href="#class_method_summary"
title="Permalink">#</a>
<small><a href="#" class="summary_toggle">collapse</a></small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#active_model-class_method" title="active_model (class method)">.<strong>active_model</strong> ⇒ Sketchup::Model </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The active_model method returns the currently active SketchUp model.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#add_observer-class_method" title="add_observer (class method)">.<strong>add_observer</strong>(observer) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The add_observer method is used to add an observer to the current object.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#app_name-class_method" title="app_name (class method)">.<strong>app_name</strong> ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The app_name method is used to retrieve the current application name.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#break_edges=-class_method" title="break_edges= (class method)">.<strong>break_edges=</strong>(enabled) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The break_edges= method can be used to disable or enable the break edges feature.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#break_edges%3F-class_method" title="break_edges? (class method)">.<strong>break_edges?</strong> ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The break_edges? method indicates whether the break edges feature is currently turned on.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#create_texture_writer-class_method" title="create_texture_writer (class method)">.<strong>create_texture_writer</strong> ⇒ Sketchup::TextureWriter </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The create_texture_writer method is used to create a TextureWriter object.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#debug_mode=-class_method" title="debug_mode= (class method)">.<strong>debug_mode=</strong>(enabled) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The debug_mode= method lets you controls whether SketchUp will output warnings to the console when it detects incorrect usage of the API.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#debug_mode%3F-class_method" title="debug_mode? (class method)">.<strong>debug_mode?</strong> ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The debug_mode? controls whether SketchUp will output warnings to the console when it detects incorrect usage of the API.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#display_name_from_action-class_method" title="display_name_from_action (class method)">.<strong>display_name_from_action</strong>(action_name) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The display_name_from_action method is used to gets a user-friendly name from an action string.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#extensions-class_method" title="extensions (class method)">.<strong>extensions</strong> ⇒ Sketchup::ExtensionsManager </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Returns the ExtensionsManager where you can find all registered SketchupExtension objects.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#file_new-class_method" title="file_new (class method)">.<strong>file_new</strong> ⇒ Module </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The file_new method is used to create a new file.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#find_support_file-class_method" title="find_support_file (class method)">.<strong>find_support_file</strong>(filename, directory) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The find_support_files method is used to retrieve the relative path and name of a file within the SketchUp installation directory.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#find_support_files-class_method" title="find_support_files (class method)">.<strong>find_support_files</strong>(filename, directory) ⇒ Array<String> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The find_support_files method is used to retrieve the path and name of all matching files within the SketchUp installation directory.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#fix_shadow_strings=-class_method" title="fix_shadow_strings= (class method)">.<strong>fix_shadow_strings=</strong>(enabled) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The fix_shadow_strings= method lets you control whether shadow rendering attempts to fix an artifact commonly referred to as “strings”.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#fix_shadow_strings%3F-class_method" title="fix_shadow_strings? (class method)">.<strong>fix_shadow_strings?</strong> ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The fix_shadow_strings? method indicates whether the a fix for a shadow rendering artifact commonly referred to as “strings” is enabled.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#focus-class_method" title="focus (class method)">.<strong>focus</strong> ⇒ Object </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#focus-class_method" title="Sketchup.focus (method)">Sketchup.focus</a></span> method is used to focus the active model window.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#format_angle-class_method" title="format_angle (class method)">.<strong>format_angle</strong>(number) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The format_angle method takes a number as an angle in radians and formats it into degrees.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#format_area-class_method" title="format_area (class method)">.<strong>format_area</strong>(number) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#format_area-class_method" title="Sketchup.format_area (method)">Sketchup.format_area</a></span> method formats a number as an area using the current units settings.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#format_degrees-class_method" title="format_degrees (class method)">.<strong>format_degrees</strong>(number) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The format_degrees method formats a number as an angle given in degrees.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#format_length-class_method" title="format_length (class method)">.<strong>format_length</strong>(*args) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#format_length-class_method" title="Sketchup.format_length (method)">Sketchup.format_length</a></span> method formats a number as a length using the current units settings.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#format_volume-class_method" title="format_volume (class method)">.<strong>format_volume</strong>(number) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#format_volume-class_method" title="Sketchup.format_volume (method)">Sketchup.format_volume</a></span> method formats a number as a volume using the current units settings.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#get_datfile_info-class_method" title="get_datfile_info (class method)">.<strong>get_datfile_info</strong>(key, default_value) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The get_datfile_info method is used to retrieve the value for the given key from Sketchup.dat.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#get_i18n_datfile_info-class_method" title="get_i18n_datfile_info (class method)">.<strong>get_i18n_datfile_info</strong>(key, default_value) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#get_i18n_datfile_info-class_method" title="Sketchup.get_i18n_datfile_info (method)">Sketchup.get_i18n_datfile_info</a></span> method is used to retrieve the value for the given key from the internationalization file that SketchUp uses to work in multiple languages.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#get_locale-class_method" title="get_locale (class method)">.<strong>get_locale</strong> ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The os_language method returns the language code for the language SketchUp is running in.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#get_resource_path-class_method" title="get_resource_path (class method)">.<strong>get_resource_path</strong>(filename) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The get_resource_path is used to retrieve the directory where “resource” files are stored by SketchUp.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#get_shortcuts-class_method" title="get_shortcuts (class method)">.<strong>get_shortcuts</strong> ⇒ Array<String> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The get_shortcuts method retrieves an array of all keyboard shortcuts currently registered with SketchUp.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#install_from_archive-class_method" title="install_from_archive (class method)">.<strong>install_from_archive</strong>(filepath, show_warning = true) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Installs the contents of a ZIP archive file into SketchUp's Plugins folder.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#is_64bit%3F-class_method" title="is_64bit? (class method)">.<strong>is_64bit?</strong> ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>This methods indicates whether the host SketchUp application is 64bit.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#is_online-class_method" title="is_online (class method)">.<strong>is_online</strong> ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The is_online method is used to verify a connection to the Internet.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#is_pro%3F-class_method" title="is_pro? (class method)">.<strong>is_pro?</strong> ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Returns a boolean flag indicating whether the application is SketchUp Pro.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#is_valid_filename%3F-class_method" title="is_valid_filename? (class method)">.<strong>is_valid_filename?</strong>(filename) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The is_valid_filename? method is used to determine whether a filename contains illegal characters.</p>
</div></span>
</li>
<li class="public ">