a80e1b8a538f55f2bea1903311090b6531472541
[occt.git] / dox / user_guides / draw_test_harness / draw_test_harness.md
1 Draw Test Harness  {#occt_user_guides__test_harness}
2 ===============================
3
4 @tableofcontents
5  
6 @section occt_draw_1 Introduction
7
8 This manual explains how to use Draw, the test harness for Open CASCADE Technology (**OCCT**).
9 Draw is a command interpreter based on TCL and a graphical system used to test and demonstrate Open CASCADE Technology modeling libraries. 
10
11 @subsection occt_draw_1_1 Overview
12
13 Draw is a test harness for Open CASCADE Technology. It provides a flexible and easy to use means of testing and demonstrating the OCCT modeling libraries. 
14
15 Draw can be used interactively to create, display and modify objects such as curves, surfaces and topological shapes. 
16
17 Scripts may be written to customize Draw and perform tests. New types of objects and new commands may be added using the C++ programing language. 
18
19 Draw consists of: 
20
21   * A command interpreter based on the TCL command language.
22   * A 3d graphic viewer based on the X system.
23   * A basic set of commands covering scripts, variables and graphics.
24   * A set of geometric commands allowing the user to create and modify curves and surfaces and to use OCCT geometry algorithms. This set of commands is optional.
25   * A set of topological commands allowing the user to create and modify BRep shapes and to use the OCCT topology algorithms.
26
27
28 There is also a set of commands for each delivery unit in the modeling libraries: 
29
30   * GEOMETRY, 
31   * TOPOLOGY, 
32   * ADVALGOS, 
33   * GRAPHIC, 
34   * PRESENTATION. 
35
36
37 @subsection occt_draw_1_2 Contents of this documentation
38
39 This documentation describes: 
40
41   * The command language.
42   * The basic set of commands.
43   * The graphical commands.
44   * The Geometry set of commands.
45   * The Topology set of commands.
46
47 This document does not describe other sets of commands and does not explain how to extend Draw using C++. 
48
49 This document is a reference manual. It contains a full description of each command. All descriptions have the format illustrated below for the exit command. 
50
51 ~~~~~
52 exit
53 ~~~~~
54
55 Terminates the Draw, TCL session. If the commands are read from a file using the source command, this will terminate the file. 
56
57 **Example:** 
58
59 ~~~~~
60 # this is a very short example 
61 exit 
62 ~~~~~
63
64
65 @subsection occt_draw_1_3 Getting started
66
67 Install Draw and launch Emacs. Get a command line in Emacs using *Esc x* and key in *woksh*. 
68
69 All DRAW Test Harness can be activated in the common executable called **DRAWEXE**. They are grouped in toolkits and can be loaded at run-time thereby implementing dynamically loaded plug-ins. Thus, it is possible to work only with the required commands adding them dynamically without leaving the Test Harness session. 
70
71 Declaration of available plug-ins is done through the special resource file(s). The *pload* command loads the plug-in in accordance with the specified resource file and activates the commands implemented in the plug-in. 
72
73 @subsubsection occt_draw_1_3_1 Launching DRAW Test Harness
74
75 Test Harness executable *DRAWEXE* is located in the <i>$CASROOT/\<platform\>/bin</i> directory (where \<platform\> is Win for Windows and Linux for Linux operating systems). Prior to launching it is important to make sure that the environment is correctly set-up (usually this is done automatically after the installation process on Windows or after launching specific scripts on Linux).  
76
77
78 @subsubsection occt_draw_1_3_2 Plug-in resource file
79
80 Open CASCADE Technology is shipped with the DrawPlugin resource file located in the <i>$CASROOT/src/DrawResources</i> directory. 
81
82 The format of the file is compliant with standard Open CASCADE Technology resource files (see the *Resource_Manager.cdl* file for details). 
83
84 Each key defines a sequence of either further (nested) keys or a name of the dynamic library. Keys can be nested down to an arbitrary level. However, cyclic dependencies between the keys are not checked. 
85
86 **Example:** (excerpt from DrawPlugin): 
87 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
88 OCAF               : VISUALIZATION, OCAFKERNEL 
89 VISUALIZATION      : AISV 
90 OCAFKERNEL         : DCAF 
91
92 DCAF               : TKDCAF 
93 AISV               : TKViewerTest 
94 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
95
96 @subsubsection occt_draw_1_3_3 Activation of commands implemented in the plug-in
97
98 To load a plug-in declared in the resource file and to activate the commands the following command must be used in Test Harness: 
99
100 ~~~~~
101 pload [-PluginFileName] [[Key1] [Key2]...]
102 ~~~~~
103
104 where: 
105
106 * <i>-PluginFileName</i> - defines the name of a plug-in resource file (prefix "-" is mandatory) described above. If this parameter is omitted then the default name *DrawPlugin* is used. 
107 * *Key…* - defines the key(s) enumerating plug-ins to be loaded. If no keys are specified then the key named *DEFAULT* is used (if there is no such key in the file then no plug-ins are loaded). 
108
109 According to the OCCT resource file management rules, to access the resource file the environment variable *CSF_PluginFileNameDefaults* (and optionally *CSF_PluginFileNameUserDefaults*) must be set and point to the directory storing the resource file. If it is omitted then the plug-in resource file will be searched in the <i>$CASROOT/src/DrawResources</i> directory. 
110
111 ~~~~~
112 Draw[]        pload -DrawPlugin OCAF 
113 ~~~~~
114 This command will search the resource file *DrawPlugin* using variable *CSF_DrawPluginDefaults* (and *CSF_DrawPluginUserDefaults*) and will start with the OCAF key. Since the *DrawPlugin* is the file shipped with Open CASCADE Technology it will be found in the <i>$CASROOT/src/DrawResources</i> directory (unless this location is redefined by user's variables). The OCAF key will be recursively extracted into two toolkits/plug-ins: *TKDCAF* and *TKViewerTest* (e.g. on Windows they correspond to *TKDCAF.dll* and *TKViewerTest.dll*). Thus, commands implemented for Visualization and OCAF will be loaded and activated in Test Harness. 
115
116 ~~~~~
117 Draw[]        pload (equivalent to pload -DrawPlugin DEFAULT). 
118 ~~~~~
119 This command will find the default DrawPlugin file and the DEFAULT key. The latter finally maps to the TKTopTest toolkit which implements basic modeling commands. 
120
121
122 @section occt_draw_2 The Command Language
123
124 @subsection occt_draw_2_1 Overview
125
126 The command language used in Draw is Tcl. Tcl documentation such as "TCL and the TK Toolkit" by John K. Ousterhout (Addison-Wesley) will prove useful if you intend to use Draw extensively. 
127
128 This chapter is designed to give you a short outline of both the TCL language and some extensions included in Draw. The following topics are covered: 
129
130   * Syntax of the TCL language.
131   * Accessing variables in TCL and Draw.
132   * Control structures.
133   * Procedures.
134
135 @subsection occt_draw_2_2 Syntax of TCL
136
137 TCL is an interpreted command language, not a structured language like C, Pascal, LISP or Basic. It uses a shell similar to that of csh. TCL is, however, easier to use than csh because control structures and procedures are easier to define. As well, because TCL does not assign a process to each command, it is faster than csh. 
138
139 The basic program for TCL is a script. A script consists of one or more commands. Commands are separated by new lines or semicolons. 
140
141 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
142 set a 24 
143 set b 15 
144 set a 25; set b 15 
145 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
146
147 Each command consists of one or more *words*; the first word is the name of a command and additional words are arguments to that command. 
148
149 Words are separated by spaces or tabs. In the preceding example each of the four commands has three words. A command may contain any number of words and each word is a string of arbitrary length. 
150
151 The evaluation of a command by TCL is done in two steps. In the first step, the command is parsed and broken into words. Some substitutions are also performed. In the second step, the command procedure corresponding to the first word is called and the other words are interpreted as arguments. In the first step, there is only string manipulation, The words only acquire *meaning* in the second step by the command procedure. 
152
153 The following substitutions are performed by TCL: 
154
155 Variable substitution is triggered by the $ character (as with csh), the content of the variable is substitued; { } may be used as in csh to enclose the name of the variable. 
156
157 **Example:** 
158 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
159 # set a variable value 
160 set file documentation 
161 puts $file #to display file contents on the screen 
162
163 # a simple substitution, set psfile to documentation.ps 
164 set psfile $file.ps 
165 puts $psfile 
166
167 # another substitution, set pfile to documentationPS 
168 set pfile ${file}PS 
169
170 # a last one, 
171 # delete files NEWdocumentation and OLDdocumentation 
172 foreach prefix {NEW OLD} {rm $prefix$file} 
173 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
174
175 Command substitution is triggered by the [ ] characters. The brackets must enclose a valid script. The script is evaluated and the result is substituted. 
176
177 Compare command construction in csh. 
178
179 **Example:** 
180 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
181 set degree 30 
182 set pi 3.14159265 
183 # expr is a command evaluating a numeric expression 
184 set radian [expr $pi*$degree/180] 
185 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
186
187 Backslash substitution is triggered by the backslash character. It is used to insert special characters like $, [ , ] , etc. It is also useful to insert a new line, a backslash terminated line is continued on the following line. 
188
189 TCL uses two forms of *quoting* to prevent substitution and word breaking. 
190
191 Double quote *quoting* enables the definition of a string with space and tabs as a single word. Substitutions are still performed inside the inverted commas " ". 
192
193 **Example:** 
194 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
195 # set msg to ;the price is 12.00; 
196 set price 12.00 
197 set msg ;the price is $price; 
198 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
199
200 Braces *quoting* prevents all substitutions. Braces are also nested. The main use of braces is to defer evaluation when defining procedures and control structures. Braces are used for a clearer presentation of TCL scripts on several lines. 
201
202 **Example:** 
203 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
204 set x 0 
205 # this will loop for ever 
206 # because while argument is ;0  3; 
207 while ;$x  3; {set x [expr $x+1]} 
208 # this will terminate as expected because 
209 # while argument is {$x  3} 
210 while {$x  3} {set x [expr $x+1]} 
211 # this can be written also 
212 while {$x  3} { 
213 set x [expr $x+1] 
214
215 # the following cannot be written 
216 # because while requires two arguments 
217 while {$x  3} 
218
219 set x [expr $x+1] 
220
221 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
222
223 Comments start with a \# character as the first non-blank character in a command. To add a comment at the end of the line, the comment must be preceded by a semi-colon to end the preceding command. 
224
225 **Example:** 
226 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
227 # This is a comment 
228 set a 1 # this is not a comment 
229 set b 1; # this is a comment 
230 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
231
232 The number of words is never changed by substitution when parsing in TCL. For example, the result of a substitution is always a single word. This is different from csh but convenient as the behavior of the parser is more predictable. It may sometimes be necessary to force a second round of parsing. **eval** accomplishes this: it accepts several arguments, concatenates them and executes the resulting script. 
233
234
235 **Example:** 
236 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
237 # I want to delete two files 
238
239 set files ;foo bar; 
240
241 # this will fail because rm will receive only one argument 
242 # and complain that ;foo bar; does not exit 
243
244 exec rm $files 
245
246 # a second evaluation will do it 
247 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
248
249 @subsection occt_draw_2_3 Accessing variables in TCL and Draw
250
251 TCL variables have only string values. Note that even numeric values are stored as string literals, and computations using the **expr** command start by parsing the strings. Draw, however, requires variables with other kinds of values such as curves, surfaces or topological shapes. 
252
253 TCL provides a mechanism to link user data to variables. Using this functionality, Draw defines its variables as TCL variables with associated data. 
254
255 The string value of a Draw variable is meaningless. It is usually set to the name of the variable itself. Consequently, preceding a Draw variable with a <i>$</i> does not change the result of a command. The content of a Draw variable is accessed using appropriate commands. 
256
257 There are many kinds of Draw variables, and new ones may be added with C++. Geometric and topological variables are described below. 
258
259 Draw numeric variables can be used within an expression anywhere a Draw command requires a numeric value. The *expr* command is useless in this case as the variables are stored not as strings but as floating point values. 
260
261 **Example:** 
262 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
263 # dset is used for numeric variables 
264 # pi is a predefined Draw variable 
265 dset angle pi/3 radius 10 
266 point p radius*cos(angle) radius*sin(angle) 0 
267 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
268 It is recommended that you use TCL variables only for strings and Draw for numerals. That way, you will avoid the *expr* command. As a rule, Geometry and Topology require numbers but no strings. 
269
270 @subsubsection occt_draw_2_3_1 set, unset
271
272 Syntax:                  
273
274 ~~~~~
275 set varname [value] 
276 unset varname [varname varname ...] 
277 ~~~~~
278
279 *set* assigns a string value to a variable. If the variable does not already exist, it is created. 
280
281 Without a value, *set* returns the content of the variable. 
282
283 *unset* deletes variables. It is is also used to delete Draw variables. 
284
285 **Example:** 
286 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
287 set a "Hello world"
288 set b "Goodbye" 
289 set a 
290 == "Hello world" 
291 unset a b 
292 set a 
293 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
294
295 **Note**, that the *set* command can set only one variable, unlike the *dset* command. 
296
297
298 @subsubsection occt_draw_2_3_2 dset, dval
299
300 Syntax
301
302 ~~~~~
303 dset var1 value1 vr2 value2 ... 
304 dval name 
305 ~~~~~
306
307 *dset* assigns values to Draw numeric variables. The argument can be any numeric expression including Draw numeric variables. Since all Draw commands expect a numeric expression, there is no need to use $ or *expr*. The *dset* command can assign several variables. If there is an odd number of arguments, the last variable will be assigned a value of 0. If the variable does not exist, it will be created. 
308
309 *dval* evaluates an expression containing Draw numeric variables and returns the result as a string, even in the case of a single variable. This is not used in Draw commands as these usually interpret the expression. It is used for basic TCL commands expecting strings. 
310
311
312 **Example:** 
313 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
314 # z is set to 0 
315 dset x 10 y 15 z 
316 == 0 
317
318 # no $ required for Draw commands 
319 point p x y z 
320
321 # "puts" prints a string 
322 puts ;x = [dval x], cos(x/pi) = [dval cos(x/pi)]; 
323 == x = 10, cos(x/pi) = -0.99913874099467914 
324 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
325
326 **Note,** that in TCL, parentheses are not considered to be special characters. Do not forget to quote an expression if it contains spaces in order to avoid parsing different words. <i>(a + b)</i> is parsed as three words: <i>"(a + b)"</i> or <i>(a+b)</i> are correct.
327
328
329 @subsection occt_draw_2_4 lists
330
331 TCL uses lists. A list is a string containing elements separated by spaces or tabs. If the string contains braces, the braced part accounts as one element. 
332
333 This allows you to insert lists within lists. 
334
335 **Example:** 
336 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
337 # a list of 3 strings 
338 ;a b c; 
339
340 # a list of two strings the first is a list of 2 
341 ;{a b} c; 
342 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
343
344 Many TCL commands return lists and **foreach** is a useful way to create loops on list elements. 
345
346 @subsubsection occt_draw_2_5 Control Structures
347
348 TCL allows looping using control structures. The control structures are implemented by commands and their syntax is very similar to that of their C counterparts (**if**, **while**, **switch**, etc.). In this case, there are two main differences between TCL and C: 
349
350 * You use braces instead of parentheses to enclose conditions. 
351 * You do not start the script on the next line of your command. 
352
353
354 @subsubsection occt_draw_2_5_1 if
355
356 Syntax       
357
358 ~~~~~
359 if condition script [elseif script .... else script] 
360 ~~~~~
361
362 **If** evaluates the condition and the script to see whether the condition is true. 
363
364
365
366 **Example:** 
367 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
368 if {$x  0} { 
369 puts ;positive; 
370 } elseif {$x == 0} { 
371 puts ;null; 
372 } else { 
373 puts ;negative; 
374
375 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
376
377 @subsubsection occt_draw_2_5_2 while, for, foreach
378
379 Syntax:                  
380
381
382 ~~~~~~
383 while condition script 
384 for init condition reinit script 
385 foreach varname list script 
386 ~~~~~
387
388 The three loop structures are similar to their C or csh equivalent. It is important to use braces to delay evaluation. **foreach** will assign the elements of the list to the variable before evaluating the script. \
389
390 **Example:** 
391 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
392 # while example 
393 dset x 1.1 
394 while {[dval x]  100} { 
395   circle c 0 0 x 
396   dset x x*x 
397
398 # for example 
399 # incr var d, increments a variable of d (default 1) 
400 for {set i 0} {$i  10} {incr i} { 
401   dset angle $i*pi/10 
402   point p$i cos(angle0 sin(angle) 0 
403
404 # foreach example 
405 foreach object {crapo tomson lucas} {display $object} 
406 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
407
408 @subsubsection occt_draw_2_5_3 break, continue
409
410 Syntax:                  
411
412 ~~~~~
413 break 
414 continue 
415 ~~~~~
416
417 Within loops, the **break** and **continue** commands have the same effect as in C. 
418
419 **break** interrupts the innermost loop and **continue** jumps to the next iteration. 
420
421 **Example:** 
422 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
423 # search the index for which t$i has value ;secret; 
424 for {set i 1} {$i = 100} {incr i} { 
425   if {[set t$i] == ;secret;} break; 
426
427 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
428
429 @subsection occt_draw_2_6 Procedures
430
431 TCL can be extended by defining procedures using the **proc** command, which sets up a context of local variables, binds arguments and executes a TCL script. 
432
433 The only problematic aspect of procedures is that variables are strictly local, and as they are implicitly created when used, it may be difficult to detect errors. 
434
435 There are two means of accessing a variable outside the scope of the current procedures: **global** declares a global variable (a variable outside all procedures); **upvar** accesses a variable in the scope of the caller. Since arguments in TCL are always string values, the only way to pass Draw variables is by reference, i.e. passing the name of the variable and using the **upvar** command as in the following examples. 
436
437 As TCL is not a strongly typed language it is very difficult to detect programming errors and debugging can be tedious. TCL procedures are, of course, not designed for large scale software development but for testing and simple command or interactive writing. 
438
439
440 @subsubsection occt_draw_2_6_1 proc
441
442 Syntax:
443
444 ~~~~~
445 proc argumentlist script 
446 ~~~~~
447
448 **proc** defines a procedure. An argument may have a default value. It is then a list of the form {argument value}. The script is the body of the procedure. 
449
450 **return** gives a return value to the procedure. 
451
452 **Example:** 
453 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
454 # simple procedure 
455 proc hello {} { 
456   puts ;hello world; 
457
458 # procedure with arguments and default values 
459 proc distance {x1 y1 {x2 0} {y2 0}} { 
460   set d [expr (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1)] 
461   return [expr sqrt(d)] 
462
463 proc fact n { 
464   if {$n == 0} {return 1} else { 
465     return [expr n*[fact [expr n -1]]] 
466   } 
467
468 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
469
470
471 @subsubsection occt_draw_2_6_2 global, upvar
472
473 Syntax:                 
474
475 ~~~~~
476 global varname [varname ...] 
477 upvar varname localname [varname localname ...] 
478 ~~~~~
479
480
481 **global** accesses high level variables. Unlike C, global variables are not visible in procedures. 
482
483 **upvar** gives a local name to a variable in the caller scope. This is useful when an argument is the name of a variable instead of a value. This is a call by reference and is the only way to use Draw variables as arguments. 
484
485 **Note** that in the following examples the \$ character is always necessarily used to access the arguments.
486  
487 **Example:** 
488 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
489 # convert degree to radian 
490 # pi is a global variable 
491 proc deg2rad (degree} { 
492   return [dval pi*$degree/2.] 
493
494 # create line with a point and an angle 
495 proc linang {linename x y angle} { 
496   upvar linename l 
497   line l $x $y cos($angle) sin($angle) 
498 }
499 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
500
501 @section occt_draw_3 Basic Commands
502
503 This chapter describes all the commands defined in the basic Draw package. Some are TCL commands, but most of them have been formulated in Draw. These commands are found in all Draw applications. The commands are grouped into four sections: 
504
505   * General commands, which are used for Draw and TCL management.
506   * Variable commands, which are used to manage Draw variables such as storing and dumping.
507   * Graphic commands, which are used to manage the graphic system, and so pertain to views.
508   * Variable display commands, which are used to manage the display of objects within given views.
509
510 Note that Draw also features a GUI task bar providing an alternative way to give certain general, graphic and display commands 
511
512
513 @subsection occt_draw_3_1 General commands
514
515 This section describes several useful commands:
516
517   * **help** to get information, 
518   * **source** to eval a script from a file, 
519   * **spy** to capture the commands in a file,
520   * **cpulimit** to limit the process cpu time, 
521   * **wait** to waste some time, 
522   * **chrono** to time commands. 
523
524 @subsubsection occt_draw_3_1_1 help
525
526 Syntax:                  
527
528 ~~~~~
529 help [command [helpstring group]] 
530 ~~~~~
531
532 Provides help or modifies the help information. 
533
534 **help** without arguments lists all groups and the commands in each group. 
535
536 Specifying the command returns its syntax and in some cases, information on the command, The joker \* is automatically added at the end so that all completing commands are returned as well. 
537
538 **Example:** 
539 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
540 # Gives help on all commands starting with *a* 
541 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
542
543
544 @subsubsection occt_draw_3_1_2 source
545
546 Syntax:
547
548 ~~~~~
549 source filename 
550 ~~~~~
551 Executes a file. 
552
553 The **exit** command will terminate the file. 
554
555 @subsubsection occt_draw_3_1_3 spy
556
557 Syntax:                  
558
559 ~~~~~
560 spy [filename] 
561 ~~~~~
562
563 Saves interactive commands in the file. If spying has already been performed, the current file is closed. **spy** without an argument closes the current file and stops spying. If a file already exists, the file is overwritten. Commands are not appended. 
564
565 If a command returns an error it is saved with a comment mark. 
566
567 The file created by **spy** can be executed with the **source** command. 
568
569 **Example:** 
570 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
571 # all commands will be saved in the file ;session; 
572 spy session 
573 # the file ;session; is closed and commands are not saved 
574 spy 
575 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
576
577
578
579 @subsubsection occt_draw_3_1_4 cpulimit
580
581 Syntax:                  
582
583 ~~~~~
584 cpulimit [nbseconds] 
585 ~~~~~
586
587 **cpulimit**limits a process after the number of seconds specified in nbseconds. It is used in tests to avoid infinite loops. **cpulimit** without arguments removes all existing limits. 
588
589 **Example:** 
590 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
591 #limit cpu to one hour 
592 cpulimit 3600 
593 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
594
595 @subsubsection occt_draw_3_1_5 wait
596
597 Syntax:
598 ~~~~~
599 wait [nbseconds] 
600 ~~~~~
601 Suspends execution for the number of seconds specified in *nbseconds*. The default value is ten (10) seconds. This is a useful command for a slide show. 
602
603 ~~~~~
604 # You have ten seconds ... 
605 wait 
606 ~~~~~
607
608 @subsubsection occt_draw_3_1_6 chrono
609
610 Syntax:                  
611
612 ~~~~~
613 chrono [ name start/stop/reset/show] 
614 ~~~~~
615
616 Without arguments, **chrono** activates Draw chronometers. The elapsed time ,cpu system and cpu user times for each command will be printed. 
617
618 With arguments, **chrono** is used to manage activated chronometers. You can perform the following actions with a chronometer. 
619   * run the chronometer (start).
620   * stop the chronometer (stop).
621   * reset the chronometer to 0 (reset).
622   * display the current time (show).
623
624 **Example:** 
625 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
626 chrono 
627 ==Chronometers activated. 
628 ptorus t 20 5 
629 ==Elapsed time: 0 Hours 0 Minutes 0.0318 Seconds 
630 ==CPU user time: 0.01 seconds 
631 ==CPU system time: 0 seconds 
632 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
633
634 @subsection occt_draw_3_2  Variable management commands
635
636 @subsubsection occt_draw_3_2_1 isdraw, directory
637
638 Syntax:                  
639 ~~~~~
640 isdraw varname 
641 directory [pattern] 
642 ~~~~~
643
644 **isdraw** tests to see if a variable is a Draw variable. **isdraw** will return 1 if there is a Draw value attached to the variable. 
645
646 Use **directory** to return a list of all Draw global variables matching a pattern. 
647
648 **Example:** 
649 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
650 set a 1 
651 isdraw a 
652 === 0 
653
654 dset a 1 
655 isdraw a 
656 === 1 
657
658 circle c 0 0 1 0 5 
659 isdraw c 
660 === 1 
661
662 # to destroy all Draw objects with name containing curve 
663 foreach var [directory *curve*] {unset $var} 
664 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
665
666
667 @subsubsection occt_draw_3_2_2 whatis, dump
668
669 Syntax:
670
671 ~~~~~
672 whatis varname [varname ...] 
673 dump varname [varname ...] 
674 ~~~~~
675
676 **whatis** returns short information about a Draw variable. This is usually the type name. 
677
678 **dump** returns a brief type description, the coordinates, and if need be, the parameters of a Draw variable. 
679
680 **Example:** 
681 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
682 circle c 0 0 1 0 5 
683 whatis c 
684 c is a 2d curve 
685
686 dump c 
687
688 ***** Dump of c ***** 
689 Circle 
690 Center :0, 0 
691 XAxis :1, 0 
692 YAxis :-0, 1 
693 Radius :5 
694 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
695
696 **Note** The behavior of *whatis* on other variables (not Draw) is not excellent. 
697
698
699 @subsubsection occt_draw_3_2_3 rename, copy
700
701 Syntax:      
702 ~~~~~
703 rename varname tovarname [varname tovarname ...] 
704 copy varname tovarname [varname tovarname ...] 
705 ~~~~~
706
707   * **rename** changes the name of a Draw variable. The original variable will no longer exist. Note that the content is not modified. Only the name is changed. 
708   * **copy** creates a new variable with a copy of the content of an existing variable. The exact behavior of **copy** is type dependent; in the case of certain topological variables, the content may still be shared. 
709
710 **Example:** 
711 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
712 circle c1 0 0 1 0 5 
713 rename c1 c2 
714
715 # curves are copied, c2 will not be modified 
716 copy c2 c3 
717 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
718
719 @subsubsection occt_draw_3_2_4 datadir, save, restore
720
721 Syntax:
722 ~~~~~
723 datadir [directory] 
724 save variable [filename] 
725 restore filename [variablename] 
726 ~~~~~
727
728   * **datadir** without arguments prints the path of the current data directory. 
729   * **datadir** with an argument sets the data directory path. \
730
731 If the path starts with a dot (.) only the last directory name will be changed in the path. 
732
733   * **save** writes a file in the data directory with the content of a variable. By default the name of the file is the name of the variable. To give a different name use a second argument. 
734   * **restore** reads the content of a file in the data directory in a local variable. By default, the name of the variable is the name of the file. To give a different name, use a second argument. 
735
736 The exact content of the file is type-dependent. They are usually ASCII files and so, architecture independent. 
737
738 **Example:** 
739 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
740 # note how TCL accesses shell environment variables 
741 # using $env() 
742 datadir 
743 ==. 
744
745 datadir $env(WBCONTAINER)/data/default 
746 ==/adv_20/BAG/data/default 
747
748 box b 10 20 30 
749 save b theBox 
750 ==/adv_20/BAG/data/default/theBox 
751
752 # when TCL does not find a command it tries a shell command 
753 ls [datadir] 
754 == theBox 
755
756 restore theBox 
757 == theBox 
758 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
759
760 @subsection occt_draw_3_3 User defined commands
761
762 *DrawTrSurf* provides commands to create and display a Draw **geometric** variable from a *Geom_Geometry* object and also get a *Geom_Geometry* object from a Draw geometric variable name. 
763
764 *DBRep* provides commands to create and display a Draw **topological** variable from a *TopoDS_Shape* object and also get a *TopoDS_Shape* object from a Draw topological variable name. 
765
766 @subsubsection occt_draw_3_3_1 set
767
768 #### In *DrawTrSurf* package:
769
770 ~~~~~
771 void Set(Standard_CString& Name,const gp_Pnt& G) ; 
772 void Set(Standard_CString& Name,const gp_Pnt2d& G) ; 
773 void Set(Standard_CString& Name, 
774 const Handle(Geom_Geometry)& G) ; 
775 void Set(Standard_CString& Name, 
776 const Handle(Geom2d_Curve)& C) ; 
777 void Set(Standard_CString& Name, 
778 const Handle(Poly_Triangulation)& T) ; 
779 void Set(Standard_CString& Name, 
780 const Handle(Poly_Polygon3D)& P) ; 
781 void Set(Standard_CString& Name, 
782 const Handle(Poly_Polygon2D)& P) ; 
783 ~~~~~
784
785 #### In *DBRep* package:
786
787 ~~~~~
788 void Set(const Standard_CString Name, 
789 const TopoDS_Shape& S) ; 
790 ~~~~~
791
792 Example of *DrawTrSurf*
793
794 ~~~~~
795 Handle(Geom2d_Circle) C1 = new Geom2d_Circle 
796 (gce_MakeCirc2d (gp_Pnt2d(50,0,) 25)); 
797 DrawTrSurf::Set(char*, C1); 
798 ~~~~~
799
800 Example of *DBRep* 
801
802 ~~~~~
803 TopoDS_Solid B; 
804 B = BRepPrimAPI_MakeBox (10,10,10); 
805 DBRep::Set(char*,B); 
806 ~~~~~
807
808 @subsubsection occt_draw_3_3_2 get
809
810 #### In *DrawTrSurf* package:
811  
812 ~~~~~
813 Handle_Geom_Geometry Get(Standard_CString& Name) ; 
814 ~~~~~
815
816 #### In *DBRep* package:
817
818 ~~~~~
819 TopoDS_Shape Get(Standard_CString& Name, 
820 const TopAbs_ShapeEnum Typ = TopAbs_SHAPE, 
821 const Standard_Boolean Complain 
822 = Standard_True) ; 
823 ~~~~~
824
825 Example of *DrawTrSurf*
826
827 ~~~~~
828 Standard_Integer MyCommand 
829 (Draw_Interpretor& theCommands, 
830 Standard_Integer argc, char** argv) 
831 {...... 
832 // Creation of a Geom_Geometry from a Draw geometric 
833 // name 
834 Handle (Geom_Geometry) aGeom= DrawTrSurf::Get(argv[1]); 
835
836 ~~~~~
837
838 Example of *DBRep*
839
840 ~~~~~
841 Standard_Integer MyCommand 
842 (Draw_Interpretor& theCommands, 
843 Standard_Integer argc, char** argv) 
844 {...... 
845 // Creation of a TopoDS_Shape from a Draw topological 
846 // name 
847 TopoDS_Solid B = DBRep::Get(argv[1]); 
848
849 ~~~~~
850
851 @section occt_draw_4 Graphic Commands
852
853 Graphic commands are used to manage the Draw graphic system. Draw provides a 2d and a 3d viewer with up to 30 views. Views are numbered and the index of the view is displayed in the window’s title. Objects are displayed in all 2d views or in all 3d views, depending on their type. 2d objects can only be viewed in 2d views while 3d objects – only in 3d views correspondingly. 
854
855 @subsection occt_draw_4_1 Axonometric viewer
856
857 @subsubsection occt_draw_4_1_1 view, delete
858
859 Syntax:                  
860 ~~~~~
861 view index type [X Y W H] 
862 delete [index] 
863 ~~~~~
864
865 **view** is the basic view creation command: it creates a new view with the given index. If a view with this index already exits, it is deleted. The view is created with default parameters and X Y W H are the position and dimensions of the window on the screen. Default values are 0, 0, 500, 500. 
866
867 As a rule it is far simpler either to use the procedures **axo**, **top**, **left** or to click on the desired view type in the menu under *Views* in the task bar.. 
868
869 **delete** deletes a view. If no index is given, all the views are deleted. 
870
871 Type selects from the following range: 
872
873   * *AXON* : Axonometric view
874   * *PERS* : Perspective view
875   * <i>+X+Y</i> : View on both axes (i.e. a top view), other codes are <i>-X+Y</i>, <i>+Y-Z</i>, etc.
876   * <i>-2D-</i> : 2d view
877
878 The index, the type, the current zoom are displayed in the window title . 
879
880 **Example:** 
881 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
882 # this is the content of the mu4 procedure 
883 proc mu4 {} { 
884 delete 
885 view 1 +X+Z 320 20 400 400 
886 view 2 +X+Y 320 450 400 400 
887 view 3 +Y+Z 728 20 400 400 
888 view 4 AXON 728 450 400 400 
889
890 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
891
892 See also: **axo, pers, top, bottom, left, right, front, back, mu4, v2d, av2d, smallview** 
893
894 @subsubsection occt_draw_4_1_2  axo, pers, top, ...
895
896 Syntax:      
897
898 ~~~~~
899 axo 
900 pers 
901 ... 
902 smallview type 
903 ~~~~~
904
905 All these commands are procedures used to define standard screen layout. They delete all existing views and create new ones. The layout usually complies with the European convention, i.e. a top view is under a front view. 
906
907   * **axo** creates a large window axonometric view;
908   * **pers** creates a large window perspective view;
909   * **top**, **bottom**, **left**, **right**, **front**, **back** create a large window axis view;
910   * **mu4** creates four small window views: front, left, top and axo.
911   * **v2d** creates a large window 2d view.
912   * **av2d** creates two small window views, one 2d and one axo
913   * **smallview** creates a view at the bottom right of the screen of the given type. 
914
915 See also: **view**, **delete** 
916
917 @subsubsection occt_draw_4_1_3 mu, md, 2dmu, 2dmd, zoom, 2dzoom
918
919 Syntax:
920
921 ~~~~~
922     mu [index] value 
923     2dmu [index] value 
924     zoom [index] value 
925     wzoom 
926 ~~~~~
927
928 * **mu** (magnify up) increases the zoom in one or several views by a factor of 10%. 
929 * **md** (magnify down) decreases the zoom by the inverse factor. **2dmu** and **2dmd** 
930 perform the same on one or all 2d views. 
931 * **zoom** and **2dzoom** set the zoom factor to a value specified by you. The current zoom factor is always displayed in the window’s title bar. Zoom 20 represents a full screen view in a large window; zoom 10, a full screen view in a small one. 
932 * **wzoom** (window zoom) allows you to select the area you want to zoom in on with the mouse. You will be prompted to give two of the corners of the area that you want to magnify and the rectangle so defined will occupy the window of the view. 
933
934 **Example:** 
935 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
936     # set a zoom of 2.5 
937     zoom 2.5 
938
939     # magnify by 10% 
940     mu 1 
941
942     # magnify by 20% 
943 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
944 See also: **fit**, **2dfit** 
945
946
947 @subsubsection occt_draw_4_14 pu, pd, pl, pr, 2dpu, 2dpd, 2dpl, 2dpr
948
949 Syntax:                  
950
951 ~~~~~
952 pu [index] 
953 pd [index] 
954 ~~~~~
955
956 The <i>p_</i> commands are used to pan. **pu** and **pd** pan up and down respectively; **pl** and **pr** pan to the left and to the right respectively. Each time the view is displaced by 40 pixels. When no index is given, all views will pan in the direction specified. 
957 ~~~~~
958 # you have selected one anonometric view
959 pu
960 # or
961 pu 1
962
963 # you have selected an mu4 view; the object in the third view will pan up
964 pu 3
965 ~~~~~
966 See also: **fit**, **2dfit** 
967
968
969 @subsubsection occt_draw_4_1_5 fit, 2dfit
970
971 Syntax:      
972
973 ~~~~~
974 fit [index] 
975 2dfit [index] 
976 ~~~~~
977
978 **fit** computes the best zoom and pans on the content of the view. The content of the view will be centered and fit the whole window. 
979
980 When fitting all views a unique zoom is computed for all the views. All views are on the same scale. 
981
982 **Example:** 
983 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
984 # fit only view 1 
985 fit 1 
986 # fit all 2d views 
987 2dfit 
988 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
989 See also: **zoom**, **mu**, **pu** 
990
991
992 @subsubsection occt_draw_4_1_6 u, d, l, r
993
994 Syntax:      
995
996 ~~~~~
997 u [index] 
998 d [index] 
999 l [index] 
1000 r [index] 
1001 ~~~~~
1002
1003 **u**, **d**, **l**, **r** Rotate the object in view around its axis by five degrees up, down, left or right respectively. This command is restricted to axonometric and perspective views. 
1004
1005 **Example:** 
1006 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1007 # rotate the view up 
1008
1009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1010
1011 @subsubsection occt_draw_4_1_7 focal, fu, fd
1012
1013 Syntax:                  
1014 ~~~~~
1015 focal [f] 
1016 fu [index] 
1017 fd [index] 
1018 ~~~~~
1019
1020 * **focal** changes the vantage point in perspective views. A low f value increases the perspective effect; a high one give a perspective similar to that of an axonometric view. The default value is 500. 
1021 * **fu** and **fd** increase or decrease the focal value by 10%. **fd** makes the eye closer to the object. 
1022
1023 **Example:** 
1024 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1025 pers 
1026 repeat 10 fd 
1027 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1028
1029 **Note**: Do not use a negative or null focal value. 
1030
1031 See also: **pers** 
1032
1033 @subsubsection occt_draw_4_1_8 color
1034
1035 Syntax: 
1036
1037 ~~~~~
1038 color index name 
1039 ~~~~~
1040
1041 **color** sets the color to a value. The index of the *color* is a value between 0 and 15. The name is an X window color name. The list of these can be found in the file *rgb.txt* in the X library directory. 
1042
1043 The default values are: 0 White, 1 Red, 2 Green, 3 Blue, 4 Cyan, 5 Gold, 6 Magenta, 7 Marron, 8 Orange, 9 Pink, 10 Salmon, 11 Violet, 12 Yellow, 13 Khaki, 14 Coral. 
1044
1045 **Example:** 
1046 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1047 # change the value of blue 
1048 color 3 "navy blue" 
1049 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1050
1051
1052 **Note** that the color change will be visible on the next redraw of the views, for example, after *fit* or *mu*, etc. 
1053
1054 @subsubsection occt_draw_4_1_9 dtext
1055
1056 Syntax:      
1057 ~~~~~
1058 dtext [x y [z]] string 
1059 ~~~~~
1060
1061 **dtext** displays a string in all 3d or 2d views. If no coordinates are given, a graphic selection is required. If two coordinates are given, the text is created in a 2d view at the position specified. With 3 coordinates, the text is created in a 3d view. 
1062
1063 The coordinates are real space coordinates. 
1064
1065 **Example:** 
1066 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1067 # mark the origins 
1068 dtext 0 0 bebop 
1069 dtext 0 0 0 bebop 
1070 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1071
1072 @subsubsection occt_draw_4_1_10 hardcopy, hcolor, xwd
1073
1074 Syntax:      
1075 ~~~~~
1076 hardcopy [index] 
1077 hcolor index width gray 
1078 xwd [index] filename 
1079 ~~~~~
1080
1081 * **hardcopy** creates a postcript file called a4.ps in the current directory. This file contains the postscript description of the view index, and will allow you to print the view. 
1082 * **hcolor** lets you change the aspect of lines in the postscript file. It allows to specify a width and a gray level for one of the 16 colors. **width** is measured in points with default value as 1, **gray** is the gray level from 0 = black to 1 = white with default value as 0. All colors are bound to the default values at the beginning. 
1083 * **xwd** creates an X window xwd file from an active view. By default, the index is set to1. To visualize an xwd file, use the unix command **xwud**. 
1084
1085 **Example:** 
1086 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1087 # all blue lines (color 3) 
1088 # will be half-width and gray 
1089 hcolor 3 0.5 
1090
1091 # make a postscript file and print it 
1092 hardcopy 
1093 lpr a4.ps 
1094
1095 # make an xwd file and display it 
1096 xwd theview 
1097 xwud -in theview 
1098 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1099
1100 **Note:** When more than one view is present, specify the index of the view. 
1101
1102 Only use a postscript printer to print postscript files. 
1103
1104 See also: **color** 
1105
1106
1107 @subsubsection occt_draw_4_1_11 wclick, pick
1108
1109 Syntax:      
1110 ~~~~~
1111 wclick 
1112 pick index X Y Z b [nowait] 
1113 ~~~~~
1114
1115 **wclick** defers an event until the mouse button is clicked. The message <code>just click</code> is displayed. 
1116
1117 Use the **pick** command to get graphic input. The arguments must be names for variables where the results are stored. 
1118   * index: index of the view where the input was made.
1119   * X,Y,Z: 3d coordinates in real world.
1120   * b: b is the mouse button 1,2 or 3.
1121
1122 When there is an extra argument, its value is not used and the command does not wait for a click; the value of b may then be 0 if there has not been a click. 
1123
1124 This option is useful for tracking the pointer. 
1125
1126 **Note** that the results are stored in Draw numeric variables.
1127
1128 **Example:** 
1129 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1130 # make a circle at mouse location 
1131 pick index x y z b 
1132 circle c x y z 0 0 1 1 0 0 0 30 
1133
1134 # make a dynamic circle at mouse location 
1135 # stop when a button is clicked 
1136 # (see the repaint command) 
1137
1138 dset b 0 
1139 while {[dval b] == 0} { 
1140 pick index x y z b nowait 
1141 circle c x y z 0 0 1 1 0 0 0 30 
1142 repaint 
1143
1144 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1145 See also: **repaint** 
1146
1147
1148 Draw provides commands to manage the display of objects. 
1149 * **display**, **donly** are used to display, 
1150 * **erase**, **clear**, **2dclear** to erase. 
1151 * **autodisplay** command is used to check whether variables are displayed when created. 
1152
1153 The variable name "." (dot) has a special status in Draw. Any Draw command expecting a Draw object as argument can be passed a dot. The meaning of the dot is the following. 
1154   * If the dot is an input argument, a graphic selection will be made. Instead of getting the object from a variable, Draw will ask you to select an object in a view.
1155   * If the dot is an output argument, an unnamed object will be created. Of course this makes sense only for graphic objects: if you create an unnamed number you will not be able to access it. This feature is used when you want to create objects for display only.
1156   * If you do not see what you expected while executing loops or sourcing files, use the **repaint** and **dflush** commands.
1157
1158 **Example:** 
1159 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1160 # OK use dot to dump an object on the screen 
1161 dump . 
1162
1163 point . x y z 
1164
1165 #Not OK. display points on a curve c 
1166 # with dot no variables are created 
1167 for {set i 0} {$i = 10} {incr i} { 
1168 cvalue c $i/10 x y z 
1169 point . x y z 
1170
1171
1172 # point p x y z 
1173 # would have displayed only one point 
1174 # because the precedent variable content is erased 
1175
1176 # point p$i x y z 
1177 # is an other solution, creating variables 
1178 # p0, p1, p2, .... 
1179
1180 # give a name to a graphic object 
1181 rename . x 
1182 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1183
1184
1185 @subsubsection occt_draw_4_1_12 autodisplay
1186
1187 Syntax:      
1188
1189 ~~~~~
1190 autodisplay [0/1] 
1191 ~~~~~
1192
1193 By default, Draw automatically displays any graphic object as soon as it is created. This behavior known as autodisplay can be removed with the command **autodisplay**. Without arguments, **autodisplay** toggles the autodisplay mode. The command always returns the current mode. 
1194
1195 When **autodisplay** is off, using the dot return argument is ineffective. 
1196
1197 **Example:** 
1198 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1199 # c is displayed 
1200 circle c 0 0 1 0 5 
1201
1202 # toggle the mode 
1203 autodisplay 
1204 == 0 
1205 circle c 0 0 1 0 5 
1206
1207 # c is erased, but not displayed 
1208 display c 
1209 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1210
1211 @subsubsection occt_draw_4_1_13 display, donly
1212
1213 Syntax:      
1214 ~~~~~
1215 display varname [varname ...] 
1216 donly varname [varname ...] 
1217 ~~~~~
1218
1219 * **display** makes objects visible. 
1220 * **donly** *display only* makes objects visible and erases all other objects. It is very useful to extract one object from a messy screen. 
1221
1222 **Example:** 
1223 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1224 \# to see all objects 
1225 foreach var [directory] {display $var} 
1226
1227 \# to select two objects and erase the other ones 
1228 donly . . 
1229 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1230
1231
1232 @subsubsection occt_draw_4_1_14 erase, clear, 2dclear
1233
1234 Syntax:      
1235
1236 ~~~~~
1237 erase [varname varname ...] 
1238 clear 
1239 2dclear 
1240 ~~~~~
1241
1242 **erase** removes objects from all views. **erase** without arguments erases everything in 2d and 3d. 
1243
1244 **clear** erases only 3d objects and **2dclear** only 2d objects. **erase** without arguments is similar to  **clear; 2dclear**.
1245
1246
1247 **Example:** 
1248 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1249 # erase eveerything with a name starting with c_ 
1250 foreach var [directory c_*] {erase $var} 
1251
1252 # clear 2d views 
1253 2dclear 
1254 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1255
1256 @subsubsection occt_draw_4_1_15 repaint, dflush
1257
1258
1259 Syntax:
1260
1261 ~~~~~
1262 repaint 
1263 dflush 
1264 ~~~~~
1265
1266 * **repaint** forces repainting of views. 
1267 * **dflush** flushes the graphic buffers. 
1268
1269 These commands are useful within loops or in scripts. 
1270
1271 When an object is modified or erased, the whole view must be repainted. To avoid doing this too many times, Draw sets up a flag and delays the repaint to the end of the command in which the new prompt is issued. In a script, you may want to display the result of a change immediately. If the flag is raised, **repaint** will repaint the views and clear the flag. 
1272
1273 Graphic operations are buffered by Draw (and also by the X system). Usually the buffer is flushed at the end of a command and before graphic selection. If you want to flush the buffer from inside a script, use the **dflush** command. 
1274
1275 See also: @ref occt_draw_4_1_11 "pick" command.  
1276
1277 @subsection occt_draw_4_2 AIS viewer – view commands
1278
1279 @subsubsection occt_draw_4_2_1 vinit
1280
1281 Syntax:                  
1282 ~~~~~
1283 vinit 
1284 ~~~~~
1285 Creates new View window with specified name view_name.
1286 By default the new view is created in the viewer and in graphic driver shared with active view.
1287 * *name* = {driverName/viewerName/viewName | viewerName/viewName | viewName}.
1288 If driverName isn't specified the driver will be shared with active view.
1289 If viewerName isn't specified the viewer will be shared with active view.
1290
1291 @subsubsection occt_draw_4_2_2 vhelp
1292
1293 Syntax:
1294 ~~~~~
1295 vhelp 
1296 ~~~~~
1297 Displays help in the 3D viewer window. The help consists in a list of hotkeys and their functionalities. 
1298
1299 @subsubsection occt_draw_4_2_3 vtop
1300
1301 Syntax:
1302 ~~~~~
1303 vtop 
1304 ~~~~~
1305
1306 Displays top view in the 3D viewer window. Orientation +X+Y.
1307
1308 **Example:** 
1309 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1310 vinit 
1311 box b 10 10 10 
1312 vdisplay b 
1313 vfit 
1314 vtop 
1315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1316
1317 @subsubsection occt_draw_4_2_4 vaxo
1318
1319 Syntax:                  
1320 ~~~~~
1321 vaxo 
1322 ~~~~~
1323
1324 Displays axonometric view in the 3D viewer window. Orientation +X-Y+Z.
1325
1326 **Example:** 
1327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
1328 vinit 
1329 box b 10 10 10 
1330 vdisplay b 
1331 vfit 
1332 vaxo 
1333 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1334
1335 @subsubsection occt_draw_4_2_5 vsetbg
1336
1337 Syntax:                  
1338 ~~~~~
1339 vsetbg imagefile [filltype] 
1340 ~~~~~
1341
1342 Loads image file as background. *filltype* must be NONE, CENTERED, TILED or STRETCH. 
1343
1344 **Example:** 
1345 ~~~~~
1346 vinit 
1347 vsetbg myimage.brep CENTERED 
1348 ~~~~~
1349
1350 @subsubsection occt_draw_4_2_6 vclear
1351
1352 Syntax:                  
1353 ~~~~~
1354 vclear 
1355 ~~~~~
1356 Removes all objects from the viewer. 
1357
1358 @subsubsection occt_draw_4_2_7 vrepaint
1359
1360 Syntax:                  
1361 ~~~~~
1362 vrepaint 
1363 ~~~~~
1364 Forcebly redisplays the shape in the 3D viewer window. 
1365
1366 @subsubsection occt_draw_4_2_8 vfit
1367
1368 Syntax:                  
1369 ~~~~~
1370 vfit 
1371 ~~~~~
1372 Automatic zoom/panning. Objects in the view are visualized to occupy the maximum surface. 
1373
1374 @subsubsection occt_draw_4_2_9 vzfit
1375
1376 Syntax:                  
1377 ~~~~~
1378 vzfit 
1379 ~~~~~
1380
1381 Automatic depth panning. Objects in the view are visualized to occupy the maximum 3d space. 
1382
1383 @subsubsection occt_draw_4_2_10  vreadpixel
1384
1385 Syntax:     
1386 ~~~~~
1387 vreadpixel xPixel yPixel [{rgb|rgba|depth|hls|rgbf|rgbaf}=rgba] [name] 
1388 ~~~~~
1389 Read pixel value for active view.
1390
1391
1392 @subsubsection occt_draw_4_2_11  vselect
1393
1394 Syntax:     
1395 ~~~~~
1396 vselect x1 y1 [x2 y2 [x3 y3 ... xn yn]] [-allowoverlap 0|1] [shift_selection = 0|1]
1397 ~~~~~
1398
1399 Emulates different types of selection:
1400
1401   * single mouse click selection
1402   * selection with a rectangle having the upper left and bottom right corners in <i>(x1,y1)</i> and <i>(x2,y2)</i> respectively
1403   * selection with a polygon having the corners in pixel positions <i>(x1,y1), (x2,y2),…, (xn,yn)</i>
1404   * -allowoverlap manages overlap and inclusion detection in rectangular selection. If the flag is set to 1, both sensitives that were included completely and overlapped partially by defined rectangle will be detected, otherwise algorithm will chose only fully included sensitives. Default behavior is to detect only full inclusion.
1405   * any of these selections if shift_selection is set to 1.
1406
1407 @subsubsection occt_draw_4_2_12  vmoveto
1408
1409 Syntax:     
1410
1411 ~~~~~
1412 vmoveto x y
1413 ~~~~~
1414 Emulates cursor movement to pixel position (x,y).
1415
1416 @subsubsection occt_draw_4_2_13  vviewparams
1417
1418 Syntax:     
1419 ~~~~~
1420 vviewparams [-scale [s]] [-eye [x y z]] [-at [x y z]] [-up [x y z]] [-proj [x y z]] [-center x y] [-size sx]
1421 ~~~~~
1422 Gets or sets current view parameters.
1423 * If called without arguments, all view parameters are printed.
1424 * The options are:
1425 *   -scale [s]    : prints or sets viewport relative scale.
1426 *   -eye [x y z]  : prints or sets eye location.
1427 *   -at [x y z]   : prints or sets center of look.
1428 *   -up [x y z]   : prints or sets direction of up vector.
1429 *   -proj [x y z] : prints or sets direction of look.
1430 *   -center x y   : sets location of center of the screen in pixels.
1431 *   -size [sx]    : prints viewport projection width and height sizes or changes the size of its maximum dimension.
1432
1433 @subsubsection occt_draw_4_2_14  vchangeselected
1434
1435 Syntax:     
1436 ~~~~~
1437 vchangeselected shape
1438 ~~~~~
1439 Adds a shape to selection or removes one from it.
1440
1441 @subsubsection occt_draw_4_2_15  vzclipping
1442
1443 Syntax:     
1444 ~~~~~
1445 vzclipping [mode] [depth width]
1446 ~~~~~
1447 Gets or sets ZClipping mode, width and depth, where
1448  - *mode = OFF|BACK|FRONT|SLICE*
1449  - *depth* is a real value from segment [0,1]
1450  - *width* is a real value from segment [0,1]
1451
1452 @subsubsection occt_draw_4_2_16  vnbselected
1453
1454 Syntax:     
1455 ~~~~~
1456 vnbselected
1457 ~~~~~
1458 Returns the number of selected objects in the interactive context.
1459
1460 @subsubsection occt_draw_4_2_17  vantialiasing
1461
1462 Syntax:     
1463 ~~~~~
1464 vantialiasing 1|0
1465 ~~~~~
1466 Sets antialiasing if the command is called with 1 or unsets otherwise.
1467
1468 @subsubsection occt_draw_4_2_18  vpurgedisplay
1469
1470 Syntax:     
1471 ~~~~~
1472 vpurgedisplay [CollectorToo = 0|1]
1473 ~~~~~
1474 Removes structures which do not belong to objects displayed in neutral point.
1475
1476 @subsubsection occt_draw_4_2_19  vhlr
1477
1478 Syntax:     
1479 ~~~~~
1480 vhlr is_enabled={on|off} [show_hidden={1|0}]
1481 ~~~~~
1482 Hidden line removal algorithm:
1483  * is_enabled: if is on HLR algorithm is applied.
1484  * show_hidden: if equals to 1, hidden lines are drawn as dotted ones.
1485
1486 @subsubsection occt_draw_4_2_20  vhlrtype
1487
1488 Syntax:     
1489 ~~~~~
1490 vhlrtype  algo_type={algo|polyalgo} [shape_1 ... shape_n]
1491 ~~~~~
1492
1493 Changes the type of HLR algorithm used for shapes.
1494 If the algo_type is algo, the exact HLR algorithm is used, otherwise the polygonal algorithm is used for defined shapes. 
1495
1496 If no shape is specified through the command arguments, the given HLR algorithm_type is applied to all *AIS_Shape* isntances in the current context, and the command also changes the default HLR algorithm type.
1497
1498 **Note** that this command works with instances of *AIS_Shape* or derived classes only, other interactive object types are ignored.
1499
1500 @subsubsection occt_draw_4_2_21 vcamera
1501
1502 Syntax:
1503 ~~~~~
1504 vcamera [-ortho] [-projtype]
1505         [-persp]
1506         [-fovy   [Angle]] [-distance [Distance]]
1507         [-stereo] [-leftEye] [-rightEye]
1508         [-iod [Distance]] [-iodType    [absolute|relative]]
1509         [-zfocus [Value]] [-zfocusType [absolute|relative]]
1510 ~~~~~
1511
1512 Manage camera parameters.
1513 Prints current value when option called without argument.
1514 Orthographic camera:
1515  * -ortho activate orthographic projection
1516 Perspective camera:
1517  * -persp activate perspective  projection (mono)
1518  * -fovy  field of view in y axis, in degrees
1519  * -distance distance of eye from camera center
1520 Stereoscopic camera:
1521  * -stereo perspective  projection (stereo)
1522  * -leftEye perspective  projection (left  eye)
1523  * -rightEye perspective  projection (right eye)
1524  * -iod intraocular distance value
1525  * -iodType distance type, absolute or relative
1526  * -zfocus stereographic focus value
1527  * -zfocusType focus type, absolute or relative"
1528
1529 **Example:**
1530 ~~~~~
1531 vinit
1532 box b 10 10 10
1533 vdisplay b
1534 vfit
1535 vcamera -persp
1536 ~~~~~
1537
1538 @subsubsection occt_draw_4_2_22 vstereo
1539
1540 Syntax:
1541 ~~~~~
1542 vstereo [0|1] [-mode Mode] [-reverse {0|1}] [-anaglyph Filter]
1543 ~~~~~
1544
1545 Control stereo output mode.
1546 Available modes for -mode:
1547  * quadBuffer - OpenGL QuadBuffer stereo, requires driver support. Should be called BEFORE vinit!
1548  * anaglyph         - Anaglyph glasses
1549  * rowInterlaced    - row-interlaced display
1550  * columnInterlaced - column-interlaced display
1551  * chessBoard       - chess-board output
1552  * sideBySide       - horizontal pair
1553  * overUnder        - vertical pair
1554 Available Anaglyph filters for -anaglyph:
1555  * redCyan, redCyanSimple, yellowBlue, yellowBlueSimple, greenMagentaSimple
1556
1557 **Example:**
1558 ~~~~~
1559 vinit
1560 box b 10 10 10
1561 vdisplay b
1562 vstereo 1
1563 vfit
1564 vcamera -stereo -iod 1
1565 vcamera -lefteye
1566 vcamera -righteye
1567 ~~~~~
1568
1569 @subsubsection occt_draw_4_2_23 vfrustumculling
1570
1571 Syntax:
1572 ~~~~~
1573 vfrustumculling [toEnable]
1574 ~~~~~
1575
1576 Enables/disables objects clipping.
1577
1578
1579 @subsection occt_draw_4_3 AIS viewer – display commands
1580
1581 @subsubsection occt_draw_4_3_1 vdisplay
1582
1583 Syntax: 
1584 ~~~~~                 
1585 vdisplay [-noupdate|-update] [-local] [-mutable] [-neutral]
1586          [-trsfPers {pan|zoom|rotate|trihedron|full|none}=none] [-trsfPersPos X Y [Z]] [-3d|-2d|-2dTopDown]
1587          [-dispMode mode] [-highMode mode]
1588          [-layer index] [-top|-topmost|-overlay|-underlay]
1589          [-redisplay]
1590          name1 [name2] ... [name n]
1591 ~~~~~
1592
1593 Displays named objects.
1594 Option -local enables displaying of objects in local selection context.
1595 Local selection context will be opened if there is not any.
1596
1597 * *noupdate* suppresses viewer redraw call.
1598 * *mutable* enables optimizations for mutable objects.
1599 * *neutral* draws objects in main viewer.
1600 * *layer* sets z-layer for objects. It can use '-overlay|-underlay|-top|-topmost' instead of '-layer index' for the default z-layers.
1601 * *top* draws objects on top of main presentations but below topmost.
1602 * *topmost* draws in overlay for 3D presentations with independent Depth.
1603 * *overlay* draws objects in overlay for 2D presentations (On-Screen-Display).
1604 * *underlay* draws objects in underlay for 2D presentations (On-Screen-Display).
1605 * *selectable|-noselect* controls selection of objects.
1606 * *trsfPers* sets a transform persistence flags. Flag 'full' is pan, zoom and rotate.
1607 * *trsfPersPos* sets an anchor point for transform persistence.
1608 * *2d|-2dTopDown* displays object in screen coordinates.
1609 * *dispmode* sets display mode for objects.
1610 * *highmode* sets hilight mode for objects.
1611 * *redisplay* recomputes presentation of objects.
1612
1613 **Example:** 
1614 ~~~~~ 
1615 vinit 
1616 box b 40 40 40 10 10 10 
1617 psphere s 20 
1618 vdisplay s b 
1619 vfit 
1620 ~~~~~ 
1621
1622 @subsubsection occt_draw_4_3_2 vdonly
1623
1624 Syntax:                  
1625 ~~~~~
1626 vdonly [-noupdate|-update] [name1] ...  [name n]
1627 ~~~~~ 
1628
1629 Displays only selected or named objects. If there are no selected or named objects, nothing is done. 
1630
1631 **Example:** 
1632 ~~~~~ 
1633 vinit 
1634 box b 40 40 40 10 10 10 
1635 psphere s 20 
1636 vdonly b 
1637 vfit
1638 ~~~~~ 
1639  
1640 @subsubsection occt_draw_4_3_3 vdisplayall
1641
1642 Syntax:                  
1643 ~~~~~ 
1644 vdisplayall [-local]
1645 ~~~~~ 
1646
1647 Displays all erased interactive objects (see vdir and vstate).
1648 Option -local enables displaying of the objects in local selection context.
1649
1650 **Example:** 
1651 ~~~~~ 
1652 vinit 
1653 box b 40 40 40 10 10 10 
1654 psphere s 20 
1655 vdisplayall 
1656 vfit 
1657 ~~~~~ 
1658
1659 @subsubsection occt_draw_4_3_4 verase
1660
1661 Syntax:                  
1662 ~~~~~
1663 verase [name1] [name2] … [name n]
1664 ~~~~~ 
1665
1666 Erases some selected or named objects. If there are no selected or named objects, the whole viewer is erased. 
1667
1668 **Example:** 
1669 ~~~~~
1670 vinit 
1671 box b1 40 40 40 10 10 10 
1672 box b2 -40 -40 -40 10 10 10 
1673 psphere s 20 
1674 vdisplayall 
1675 vfit 
1676 # erase only first box 
1677 verase b1 
1678 # erase second box and sphere 
1679 verase
1680 ~~~~~ 
1681
1682 @subsubsection occt_draw_4_3_5 veraseall
1683
1684 Syntax:                  
1685 ~~~~~
1686 veraseall
1687 ~~~~~ 
1688
1689 Erases all objects displayed in the viewer. 
1690
1691 **Example:**
1692 ~~~~~ 
1693 vinit 
1694 box b1 40 40 40 10 10 10 
1695 box b2 -40 -40 -40 10 10 10 
1696 psphere s 20 
1697 vdisplayall 
1698 vfit 
1699 # erase only first box 
1700 verase b1 
1701 # erase second box and sphere 
1702 verseall
1703 ~~~~~ 
1704
1705 @subsubsection occt_draw_4_3_6 vsetdispmode
1706
1707 Syntax:                  
1708 ~~~~~
1709 vsetdispmode [name] mode(0,1,2,3)
1710 ~~~~~ 
1711
1712 Sets display mode for all, selected or named objects. 
1713 * *0* (*WireFrame*), 
1714 * *1* (*Shading*), 
1715 * *2* (*Quick HideLineremoval*), 
1716 * *3* (*Exact HideLineremoval*). 
1717
1718 **Example:** 
1719 ~~~~~
1720 vinit 
1721 box b 10 10 10 
1722 vdisplay b 
1723 vsetdispmode 1 
1724 vfit
1725 ~~~~~
1726  
1727 @subsubsection occt_draw_4_3_7 vdisplaytype
1728
1729 Syntax:                  
1730 ~~~~~
1731 vdisplaytype type
1732 ~~~~~ 
1733
1734 Displays all objects of a given type. 
1735 The following types are possible: *Point*, *Axis*, *Trihedron*, *PlaneTrihedron*, *Line*, *Circle*, *Plane*, *Shape*, *ConnectedShape*, *MultiConn.Shape*, *ConnectedInter.*, *MultiConn.*, *Constraint* and *Dimension*. 
1736
1737 @subsubsection occt_draw_4_3_8 verasetype
1738
1739 Syntax:                  
1740 ~~~~~
1741 verasetype type
1742 ~~~~~ 
1743
1744 Erases all objects of a given type. 
1745 Possible type is *Point*, *Axis*, *Trihedron*, *PlaneTrihedron*, *Line*, *Circle*, *Plane*, *Shape*, *ConnectedShape*, *MultiConn.Shape*, *ConnectedInter.*, *MultiConn.*, *Constraint* and *Dimension*. 
1746
1747 @subsubsection occt_draw_4_3_9 vtypes
1748
1749 Syntax:                  
1750 ~~~~~
1751 vtypes
1752 ~~~~~ 
1753
1754 Makes a list of known types and signatures in AIS. 
1755
1756 @subsubsection occt_draw_4_3_10 vaspects
1757
1758 Syntax:
1759 ~~~~~
1760 vaspects [-noupdate|-update] [name1 [name2 [...]] | -defaults]
1761          [-setVisibility 0|1]
1762          [-setColor ColorName] [-setcolor R G B] [-unsetColor]
1763          [-setMaterial MatName] [-unsetMaterial]
1764          [-setTransparency Transp] [-unsetTransparency]
1765          [-setWidth LineWidth] [-unsetWidth]
1766          [-setLineType {solid|dash|dot|dotDash}] [-unsetLineType]
1767          [-freeBoundary {off/on | 0/1}]
1768          [-setFreeBoundaryWidth Width] [-unsetFreeBoundaryWidth]
1769          [-setFreeBoundaryColor {ColorName | R G B}] [-unsetFreeBoundaryColor]
1770          [-subshapes subname1 [subname2 [...]]]
1771          [-isoontriangulation 0|1]
1772          [-setMaxParamValue {value}]
1773
1774 ~~~~~
1775
1776 Manage presentation properties of all, selected or named objects.
1777 When *-subshapes* is specified than following properties will be assigned to specified sub-shapes.
1778 When *-defaults* is specified than presentation properties will be assigned to all objects that have not their own specified properties and to all objects to be displayed in the future.
1779 If *-defaults* is used there should not be any objects' names and -subshapes specifier.
1780
1781 Aliases:
1782 ~~~~~
1783 vsetcolor [-noupdate|-update] [name] ColorName
1784
1785 ~~~~~
1786
1787
1788 Manages presentation properties (color, material, transparency) of all objects, selected or named.
1789
1790 **Color**. The *ColorName* can be: *BLACK*, *MATRAGRAY*, *MATRABLUE*, *ALICEBLUE*, *ANTIQUEWHITE*, *ANTIQUEWHITE1*, *ANTIQUEWHITE2*, *ANTIQUEWHITE3*, *ANTIQUEWHITE4*, *AQUAMARINE1*, *AQUAMARINE2*, *AQUAMARINE4*, *AZURE*, *AZURE2*, *AZURE3*, *AZURE4*, *BEIGE*, *BISQUE*, *BISQUE2*, *BISQUE3*, *BISQUE4*, *BLANCHEDALMOND*, *BLUE1*, *BLUE2*, *BLUE3*, *BLUE4*, *BLUEVIOLET*, *BROWN*, *BROWN1*, *BROWN2*, *BROWN3*, *BROWN4*, *BURLYWOOD*, *BURLYWOOD1*, *BURLYWOOD2*, *BURLYWOOD3*, *BURLYWOOD4*, *CADETBLUE*, *CADETBLUE1*, *CADETBLUE2*, *CADETBLUE3*, *CADETBLUE4*, *CHARTREUSE*, *CHARTREUSE1*, *CHARTREUSE2*, *CHARTREUSE3*, *CHARTREUSE4*, *CHOCOLATE*, *CHOCOLATE1*, *CHOCOLATE2*, *CHOCOLATE3*, *CHOCOLATE4*, *CORAL*, *CORAL1*, *CORAL2*, *CORAL3*, *CORAL4*, *CORNFLOWERBLUE*, *CORNSILK1*, *CORNSILK2*, *CORNSILK3*, *CORNSILK4*, *CYAN1*, *CYAN2*, *CYAN3*, *CYAN4*, *DARKGOLDENROD*, *DARKGOLDENROD1*, *DARKGOLDENROD2*, *DARKGOLDENROD3*, *DARKGOLDENROD4*, *DARKGREEN*, *DARKKHAKI*, *DARKOLIVEGREEN*, *DARKOLIVEGREEN1*, *DARKOLIVEGREEN2*, *DARKOLIVEGREEN3*, *DARKOLIVEGREEN4*, *DARKORANGE*, *DARKORANGE1*, *DARKORANGE2*, *DARKORANGE3*, *DARKORANGE4*, *DARKORCHID*, *DARKORCHID1*, *DARKORCHID2*, *DARKORCHID3*, *DARKORCHID4*, *DARKSALMON*, *DARKSEAGREEN*, *DARKSEAGREEN1*, *DARKSEAGREEN2*, *DARKSEAGREEN3*, *DARKSEAGREEN4*, *DARKSLATEBLUE*, *DARKSLATEGRAY1*, *DARKSLATEGRAY2*, *DARKSLATEGRAY3*, *DARKSLATEGRAY4*, *DARKSLATEGRAY*, *DARKTURQUOISE*, *DARKVIOLET*, *DEEPPINK*, *DEEPPINK2*, *DEEPPINK3*, *DEEPPINK4*, *DEEPSKYBLUE1*, *DEEPSKYBLUE2*, *DEEPSKYBLUE3*, *DEEPSKYBLUE4*, *DODGERBLUE1*, *DODGERBLUE2*, *DODGERBLUE3*, *DODGERBLUE4*, *FIREBRICK*, *FIREBRICK1*, *FIREBRICK2*, *FIREBRICK3*, *FIREBRICK4*, *FLORALWHITE*, *FORESTGREEN*, *GAINSBORO*, *GHOSTWHITE*, *GOLD*, *GOLD1*, *GOLD2*, *GOLD3*, *GOLD4*, *GOLDENROD*, *GOLDENROD1*, *GOLDENROD2*, *GOLDENROD3*, *GOLDENROD4*, *GRAY*, *GRAY0*, *GRAY1*, *GRAY10*, *GRAY11*, *GRAY12*, *GRAY13*, *GRAY14*, *GRAY15*, *GRAY16*, *GRAY17*, *GRAY18*, *GRAY19*, *GRAY2*, *GRAY20*, *GRAY21*, *GRAY22*, *GRAY23*, *GRAY24*, *GRAY25*, *GRAY26*, *GRAY27*, *GRAY28*, *GRAY29*, *GRAY3*, *GRAY30*, *GRAY31*, *GRAY32*, *GRAY33*, *GRAY34*, *GRAY35*, *GRAY36*, *GRAY37*, *GRAY38*, *GRAY39*, *GRAY4*, *GRAY40*, *GRAY41*, *GRAY42*, *GRAY43*, *GRAY44*, *GRAY45*, *GRAY46*, *GRAY47*, *GRAY48*, *GRAY49*, *GRAY5*, *GRAY50*, *GRAY51*, *GRAY52*, *GRAY53*, *GRAY54*, *GRAY55*, *GRAY56*, *GRAY57*, *GRAY58*, *GRAY59*, *GRAY6*, *GRAY60*, *GRAY61*, *GRAY62*, *GRAY63*, *GRAY64*, *GRAY65*, *GRAY66*, *GRAY67*, *GRAY68*, *GRAY69*, *GRAY7*, *GRAY70*, *GRAY71*, *GRAY72*, *GRAY73*, *GRAY74*, *GRAY75*, *GRAY76*, *GRAY77*, *GRAY78*, *GRAY79*, *GRAY8*, *GRAY80*, *GRAY81*, *GRAY82*, *GRAY83*, *GRAY85*, *GRAY86*, *GRAY87*, *GRAY88*, *GRAY89*, *GRAY9*, *GRAY90*, *GRAY91*, *GRAY92*, *GRAY93*, *GRAY94*, *GRAY95*, *GREEN*, *GREEN1*, *GREEN2*, *GREEN3*, *GREEN4*, *GREENYELLOW*, *GRAY97*, *GRAY98*, *GRAY99*, *HONEYDEW*, *HONEYDEW2*, *HONEYDEW3*, *HONEYDEW4*, *HOTPINK*, *HOTPINK1*, *HOTPINK2*, *HOTPINK3*, *HOTPINK4*, *INDIANRED*, *INDIANRED1*, *INDIANRED2*, *INDIANRED3*, *INDIANRED4*, *IVORY*, *IVORY2*, *IVORY3*, *IVORY4*, *KHAKI*, *KHAKI1*, *KHAKI2*, *KHAKI3*, *KHAKI4*, *LAVENDER*, *LAVENDERBLUSH1*, *LAVENDERBLUSH2*, *LAVENDERBLUSH3*, *LAVENDERBLUSH4*, *LAWNGREEN*, *LEMONCHIFFON1*, *LEMONCHIFFON2*, *LEMONCHIFFON3*, *LEMONCHIFFON4*, *LIGHTBLUE*, *LIGHTBLUE1*, *LIGHTBLUE2*, *LIGHTBLUE3*, *LIGHTBLUE4*, *LIGHTCORAL*, *LIGHTCYAN1*, *LIGHTCYAN2*, *LIGHTCYAN3*, *LIGHTCYAN4*, *LIGHTGOLDENROD*, *LIGHTGOLDENROD1*, *LIGHTGOLDENROD2*, *LIGHTGOLDENROD3*, *LIGHTGOLDENROD4*, *LIGHTGOLDENRODYELLOW*, *LIGHTGRAY*, *LIGHTPINK*, *LIGHTPINK1*, *LIGHTPINK2*, *LIGHTPINK3*, *LIGHTPINK4*, *LIGHTSALMON1*, *LIGHTSALMON2*, *LIGHTSALMON3*, *LIGHTSALMON4*, *LIGHTSEAGREEN*, *LIGHTSKYBLUE*, *LIGHTSKYBLUE1*, *LIGHTSKYBLUE2*, *LIGHTSKYBLUE3*, *LIGHTSKYBLUE4*, *LIGHTSLATEBLUE*, *LIGHTSLATEGRAY*, *LIGHTSTEELBLUE*, *LIGHTSTEELBLUE1*, *LIGHTSTEELBLUE2*, *LIGHTSTEELBLUE3*, *LIGHTSTEELBLUE4*, *LIGHTYELLOW*, *LIGHTYELLOW2*, *LIGHTYELLOW3*, *LIGHTYELLOW4*, *LIMEGREEN*, *LINEN*, *MAGENTA1*, *MAGENTA2*, *MAGENTA3*, *MAGENTA4*, *MAROON*, *MAROON1*, *MAROON2*, *MAROON3*, *MAROON4*, *MEDIUMAQUAMARINE*, *MEDIUMORCHID*, *MEDIUMORCHID1*, *MEDIUMORCHID2*, *MEDIUMORCHID3*, *MEDIUMORCHID4*, *MEDIUMPURPLE*, *MEDIUMPURPLE1*, *MEDIUMPURPLE2*, *MEDIUMPURPLE3*, *MEDIUMPURPLE4*, *MEDIUMSEAGREEN*, *MEDIUMSLATEBLUE*, *MEDIUMSPRINGGREEN*, *MEDIUMTURQUOISE*, *MEDIUMVIOLETRED*, *MIDNIGHTBLUE*, *MINTCREAM*, *MISTYROSE*, *MISTYROSE2*, *MISTYROSE3*, *MISTYROSE4*, *MOCCASIN*, *NAVAJOWHITE1*, *NAVAJOWHITE2*, *NAVAJOWHITE3*, *NAVAJOWHITE4*, *NAVYBLUE*, *OLDLACE*, *OLIVEDRAB*, *OLIVEDRAB1*, *OLIVEDRAB2*, *OLIVEDRAB3*, *OLIVEDRAB4*, *ORANGE*, *ORANGE1*, *ORANGE2*, *ORANGE3*, *ORANGE4*, *ORANGERED*, *ORANGERED1*, *ORANGERED2*, *ORANGERED3*, *ORANGERED4*, *ORCHID*, *ORCHID1*, *ORCHID2*, *ORCHID3*, *ORCHID4*, *PALEGOLDENROD*, *PALEGREEN*, *PALEGREEN1*, *PALEGREEN2*, *PALEGREEN3*, *PALEGREEN4*, *PALETURQUOISE*, *PALETURQUOISE1*, *PALETURQUOISE2*, *PALETURQUOISE3*, *PALETURQUOISE4*, *PALEVIOLETRED*, *PALEVIOLETRED1*, *PALEVIOLETRED2*, *PALEVIOLETRED3*, *PALEVIOLETRED4*, *PAPAYAWHIP*, *PEACHPUFF*, *PEACHPUFF2*, *PEACHPUFF3*, *PEACHPUFF4*, *PERU*, *PINK*, *PINK1*, *PINK2*, *PINK3*, *PINK4*, *PLUM*, *PLUM1*, *PLUM2*, *PLUM3*, *PLUM4*, *POWDERBLUE*, *PURPLE*, *PURPLE1*, *PURPLE2*, *PURPLE3*, *PURPLE4*, *RED*, *RED1*, *RED2*, *RED3*, *RED4*, *ROSYBROWN*, *ROSYBROWN1*, *ROSYBROWN2*, *ROSYBROWN3*, *ROSYBROWN4*, *ROYALBLUE*, *ROYALBLUE1*, *ROYALBLUE2*, *ROYALBLUE3*, *ROYALBLUE4*, *SADDLEBROWN*, *SALMON*, *SALMON1*, *SALMON2*, *SALMON3*, *SALMON4*, *SANDYBROWN*, *SEAGREEN*, *SEAGREEN1*, *SEAGREEN2*, *SEAGREEN3*, *SEAGREEN4*, *SEASHELL*, *SEASHELL2*, *SEASHELL3*, *SEASHELL4*, *BEET*, *TEAL*, *SIENNA*, *SIENNA1*, *SIENNA2*, *SIENNA3*, *SIENNA4*, *SKYBLUE*, *SKYBLUE1*, *SKYBLUE2*, *SKYBLUE3*, *SKYBLUE4*, *SLATEBLUE*, *SLATEBLUE1*, *SLATEBLUE2*, *SLATEBLUE3*, *SLATEBLUE4*, *SLATEGRAY1*, *SLATEGRAY2*, *SLATEGRAY3*, *SLATEGRAY4*, *SLATEGRAY*, *SNOW*, *SNOW2*, *SNOW3*, *SNOW4*, *SPRINGGREEN*, *SPRINGGREEN2*, *SPRINGGREEN3*, *SPRINGGREEN4*, *STEELBLUE*, *STEELBLUE1*, *STEELBLUE2*, *STEELBLUE3*, *STEELBLUE4*, *TAN*, *TAN1*, *TAN2*, *TAN3*, *TAN4*, *THISTLE*, *THISTLE1*, *THISTLE2*, *THISTLE3*, *THISTLE4*, *TOMATO*, *TOMATO1*, *TOMATO2*, *TOMATO3*, *TOMATO4*, *TURQUOISE*, *TURQUOISE1*, *TURQUOISE2*, *TURQUOISE3*, *TURQUOISE4*, *VIOLET*, *VIOLETRED*, *VIOLETRED1*, *VIOLETRED2*, *VIOLETRED3*, *VIOLETRED4*, *WHEAT*, *WHEAT1*, *WHEAT2*, *WHEAT3*, *WHEAT4*, *WHITE*, *WHITESMOKE*, *YELLOW*, *YELLOW1*, *YELLOW2*, *YELLOW3*, *YELLOW4* and *YELLOWGREEN*.
1791 ~~~~~
1792 vaspects    [name] [-setcolor ColorName] [-setcolor R G B] [-unsetcolor]
1793 vsetcolor   [name] ColorName
1794 vunsetcolor [name]
1795 ~~~~~
1796
1797 **Transparency. The *Transp* may be between 0.0 (opaque) and 1.0 (fully transparent).
1798 **Warning**: at 1.0 the shape becomes invisible.
1799 ~~~~~
1800 vaspects           [name] [-settransparency Transp] [-unsettransparency]
1801 vsettransparency   [name] Transp
1802 vunsettransparency [name]
1803 ~~~~~
1804
1805 **Material**. The *MatName* can be *BRASS*, *BRONZE*, *COPPER*, *GOLD*, *PEWTER*, *PLASTER*, *PLASTIC*, *SILVER*, *STEEL*, *STONE*, *SHINY_PLASTIC*, *SATIN*, *METALIZED*, *NEON_GNC*, *CHROME*, *ALUMINIUM*, *OBSIDIAN*, *NEON_PHC*, *JADE*, *WATER*, *GLASS*, *DIAMOND* or *CHARCOAL*.
1806 ~~~~~
1807 vaspects       [name] [-setmaterial MatName] [-unsetmaterial]
1808 vsetmaterial   [name] MatName
1809 vunsetmaterial [name]
1810 ~~~~~
1811
1812 **Line width**. Specifies width of the edges. The *LineWidth* may be between 0.0 and 10.0.
1813 ~~~~~
1814 vaspects    [name] [-setwidth LineWidth] [-unsetwidth]
1815 vsetwidth   [name] LineWidth
1816 vunsetwidth [name]
1817 ~~~~~
1818
1819 **Example:**
1820 ~~~~~
1821 vinit
1822 box b 10 10 10
1823 vdisplay b
1824 vfit
1825
1826 vsetdispmode b 1
1827 vaspects -setcolor red -settransparency 0.2
1828 vrotate 10 10 10
1829 ~~~~~
1830
1831
1832
1833
1834
1835
1836 @subsubsection occt_draw_4_3_11 vsetshading
1837
1838 Syntax:                  
1839 ~~~~~
1840 vsetshading shapename [coefficient]
1841 ~~~~~ 
1842
1843 Sets deflection coefficient that defines the quality of the shape’s representation in the shading mode. Default coefficient is 0.0008. 
1844
1845 **Example:** 
1846 ~~~~~
1847 vinit 
1848 psphere s 20 
1849 vdisplay s 
1850 vfit 
1851 vsetdispmode 1 
1852 vsetshading s 0.005
1853 ~~~~~
1854  
1855 @subsubsection occt_draw_4_3_12 vunsetshading
1856
1857 Syntax:                  
1858 ~~~~~
1859 vunsetshading [shapename]
1860 ~~~~~ 
1861
1862 Sets default deflection coefficient (0.0008) that defines the quality of the shape’s representation in the shading mode.
1863
1864 @subsubsection occt_draw_4_3_13 vsetam
1865
1866 Syntax:                  
1867 ~~~~~
1868 vsetam [shapename] mode
1869 ~~~~~ 
1870
1871 Activates selection mode for all selected or named shapes: 
1872 * *0* for *shape* itself, 
1873 * *1* (*vertices*), 
1874 * *2* (*edges*), 
1875 * *3* (*wires*), 
1876 * *4* (*faces*), 
1877 * *5* (*shells*),
1878 * *6* (*solids*),
1879 * *7* (*compounds*).
1880  
1881 **Example:** 
1882 ~~~~~
1883 vinit 
1884 box b 10 10 10 
1885 vdisplay b 
1886 vfit 
1887 vsetam b 2
1888 ~~~~~
1889  
1890 @subsubsection occt_draw_4_3_14 vunsetam
1891
1892 Syntax:                  
1893 ~~~~~
1894 vunsetam
1895 ~~~~~ 
1896
1897 Deactivates all selection modes for all shapes. 
1898
1899 @subsubsection occt_draw_4_3_15 vdump
1900
1901 Syntax:                  
1902 ~~~~~
1903 vdump <filename>.{png|bmp|jpg|gif} [-width Width -height Height]
1904       [-buffer rgb|rgba|depth=rgb]
1905       [-stereo mono|left|right|blend|sideBySide|overUnder=mono]
1906
1907 ~~~~~ 
1908
1909 Extracts the contents of the viewer window to a image file.
1910
1911 @subsubsection occt_draw_4_3_16 vdir
1912
1913 Syntax:                  
1914 ~~~~~
1915 vdir
1916 ~~~~~ 
1917
1918 Displays the list of displayed objects. 
1919
1920 @subsubsection occt_draw_4_3_17 vsub
1921
1922 Syntax:                  
1923 ~~~~~
1924 vsub 0/1(on/off)[shapename]
1925 ~~~~~ 
1926
1927 Hilights/unhilights named or selected objects which are displayed at neutral state with subintensity color.
1928  
1929 **Example:** 
1930 ~~~~~
1931 vinit 
1932 box b 10 10 10 
1933 psphere s 20 
1934 vdisplay b s 
1935 vfit 
1936 vsetdispmode 1 
1937 vsub b 1
1938 ~~~~~ 
1939
1940 @subsubsection occt_draw_4_3_20 vsensdis
1941
1942 Syntax:                  
1943 ~~~~~
1944 vsensdis
1945 ~~~~~ 
1946
1947 Displays active entities (sensitive entities of one of the standard types corresponding to active selection modes). 
1948
1949 Standard entity types are those defined in Select3D package: 
1950   * sensitive box
1951   * sensitive face
1952   * sensitive curve
1953   * sensitive segment
1954   * sensitive circle
1955   * sensitive point
1956   * sensitive triangulation
1957   * sensitive triangle
1958 Custom (application-defined) sensitive entity types are not processed by this command. 
1959
1960 @subsubsection occt_draw_4_3_21 vsensera
1961
1962 Syntax:                  
1963 ~~~~~
1964 vsensera
1965 ~~~~~ 
1966
1967 Erases active entities. 
1968
1969 @subsubsection occt_draw_4_3_22 vperf
1970
1971 Syntax:                  
1972 ~~~~~
1973 vperf shapename 1/0 (Transformation/Loacation) 1/0 (Primitives sensibles ON/OFF)
1974 ~~~~~ 
1975
1976 Tests the animation of an object along a predefined trajectory. 
1977
1978 **Example:** 
1979 ~~~~~
1980 vinit 
1981 box b 10 10 10 
1982 psphere s 20 
1983 vdisplay b s 
1984 vfit 
1985 vsetdispmode 0 
1986 vperf b 1 1
1987 ~~~~~
1988  
1989 @subsubsection occt_draw_4_3_23 vr
1990
1991 Syntax:                  
1992 ~~~~~
1993 vr filename
1994 ~~~~~ 
1995
1996 Reads shape from BREP-format file and displays it in the viewer. 
1997
1998 **Example:** 
1999 ~~~~~
2000 vinit 
2001 vr myshape.brep
2002 ~~~~~
2003  
2004 @subsubsection occt_draw_4_3_24 vstate
2005
2006 Syntax:                  
2007 ~~~~~
2008 vstate [-entities] [-hasSelected] [name1] ... [nameN]
2009 ~~~~~ 
2010
2011 Reports show/hidden state for selected or named objects
2012  * *entities* - print low-level information about detected entities
2013  * *hasSelected* - prints 1 if context has selected shape and 0 otherwise
2014
2015 @subsubsection occt_draw_4_3_25 vraytrace
2016
2017 Syntax:
2018 ~~~~~
2019 vraytrace [0/1]
2020 ~~~~~
2021
2022 Turns on/off ray tracing renderer.
2023
2024 @subsubsection occt_draw_4_3_26 vrenderparams
2025
2026 Syntax:
2027 ~~~~~
2028 vrenderparams [-rayTrace|-raster] [-rayDepth 0..10] [-shadows {on|off}]
2029               [-reflections {on|off}] [-fsaa {on|off}] [-gleam {on|off}]
2030               [-gi {on|off}] [-brng {on|off}] [-env {on|off}]
2031               [-shadin {color|flat|gouraud|phong}]
2032 ~~~~~
2033
2034 Manages rendering parameters:
2035 * rayTrace     - Enables  GPU ray-tracing
2036 * raster       - Disables GPU ray-tracing
2037 * rayDepth     - Defines maximum ray-tracing depth
2038 * shadows      - Enables/disables shadows rendering
2039 * reflections  - Enables/disables specular reflections
2040 * fsaa         - Enables/disables adaptive anti-aliasing
2041 * gleam        - Enables/disables transparency shadow effects
2042 * gi           - Enables/disables global illumination effects
2043 * brng         - Enables/disables blocked RNG (fast coherent PT)
2044 * env          - Enables/disables environment map background
2045 * shadingModel - Controls shading model from enumeration color, flat, gouraud, phong
2046
2047 Unlike vcaps, these parameters dramatically change visual properties.
2048 Command is intended to control presentation quality depending on hardware capabilities and performance.
2049
2050 **Example:**
2051 ~~~~~
2052 vinit
2053 box b 10 10 10
2054 vdisplay b
2055 vfit
2056 vraytrace 1
2057 vrenderparams -shadows 1 -reflections 1 -fsaa 1
2058 ~~~~~
2059 @subsubsection occt_draw_4_3_27 vshaderprog
2060
2061 Syntax:
2062 ~~~~~
2063    'vshaderprog [name] pathToVertexShader pathToFragmentShader'
2064 or 'vshaderprog [name] off'   to disable GLSL program
2065 or 'vshaderprog [name] phong' to enable per-pixel lighting calculations
2066 ~~~~~
2067
2068 Enables rendering using a shader program.
2069
2070 @subsubsection occt_draw_4_3_28 vsetcolorbg
2071
2072 Syntax:
2073 ~~~~~
2074 vsetcolorbg r g b
2075 ~~~~~
2076
2077 Sets background color.
2078
2079 **Example:**
2080 ~~~~~
2081 vinit
2082 vsetcolorbg 200 0 200
2083 ~~~~~
2084
2085 @subsection occt_draw_4_4 AIS viewer – object commands
2086
2087 @subsubsection occt_draw_4_4_1 vtrihedron
2088
2089 Syntax:                  
2090 ~~~~~
2091 vtrihedron name [X0] [Y0] [Z0] [Zu] [Zv] [Zw] [Xu] [Xv] [Xw]
2092 ~~~~~ 
2093
2094 Creates a new *AIS_Trihedron* object. If no argument is set, the default trihedron (0XYZ) is created.
2095  
2096 **Example:** 
2097 ~~~~~
2098 vinit 
2099 vtrihedron tr
2100 ~~~~~ 
2101
2102 @subsubsection occt_draw_4_4_2 vplanetri
2103
2104 Syntax:                  
2105 ~~~~~
2106 vplanetri name
2107 ~~~~~ 
2108
2109 Create a plane from a trihedron selection. If no arguments are set, the default 
2110
2111
2112 @subsubsection occt_draw_4_4_3 vsize
2113
2114 Syntax:                  
2115 ~~~~~
2116 vsize [name] [size]
2117 ~~~~~ 
2118
2119 Changes the size of a named or selected trihedron. If the name is not defined: it affects the selected trihedrons otherwise nothing is done. If the value is not defined, it is set to 100 by default.
2120  
2121 **Example:** 
2122 ~~~~~
2123 vinit 
2124 vtrihedron tr1 
2125 vtrihedron tr2 0 0 0 1 0 0 1 0 0 
2126 vsize tr2 400
2127 ~~~~~ 
2128
2129 @subsubsection occt_draw_4_4_4 vaxis
2130
2131 Syntax:                  
2132 ~~~~~
2133 vaxis name [Xa Ya Za Xb Yb Zb]
2134 ~~~~~ 
2135
2136 Creates an axis. If  the values are not defined, an axis is created by interactive selection of two vertices or one edge
2137  
2138 **Example:** 
2139 ~~~~~
2140 vinit 
2141 vtrihedron tr 
2142 vaxis axe1 0 0 0 1 0 0 
2143 ~~~~~
2144
2145 @subsubsection occt_draw_4_4_5 vaxispara
2146
2147 Syntax:                  
2148 ~~~~~
2149 vaxispara name
2150 ~~~~~ 
2151
2152 Creates an axis by interactive selection of an edge and a vertex. 
2153
2154 @subsubsection occt_draw_4_4_6 vaxisortho
2155
2156 Syntax:                  
2157 ~~~~~
2158 vaxisotrho name
2159 ~~~~~ 
2160
2161 Creates an axis by interactive selection of an edge and a vertex. The axis will be orthogonal to the selected edge. 
2162
2163 @subsubsection occt_draw_4_4_7 vpoint
2164
2165 Syntax:                  
2166 ~~~~~
2167 vpoint name [Xa Ya Za]
2168 ~~~~~ 
2169
2170 Creates a point from coordinates. If the values are not defined, a point is created by interactive selection of a vertice or an edge (in the center of the edge). 
2171
2172 **Example:** 
2173 ~~~~~
2174 vinit 
2175 vpoint p 0 0 0 
2176 ~~~~~
2177
2178 @subsubsection occt_draw_4_4_8 vplane
2179
2180 Syntax:                  
2181 ~~~~~
2182 vplane name [AxisName] [PointName] 
2183 vplane name [PointName] [PointName] [PointName] 
2184 vplane name [PlaneName] [PointName]
2185 ~~~~~ 
2186
2187 Creates a plane from named or interactively selected entities.
2188 TypeOfSensitivity:
2189  * 0 - Interior
2190  * 1 - Boundary
2191
2192 **Example:** 
2193 ~~~~~
2194 vinit 
2195 vpoint p1 0 50 0 
2196 vaxis axe1 0 0 0 0 0 1 
2197 vtrihedron tr 
2198 vplane plane1 axe1 p1 
2199 ~~~~~
2200
2201 @subsubsection occt_draw_4_4_9 vplanepara
2202
2203 Syntax:                  
2204 ~~~~~
2205 vplanepara name
2206 ~~~~~ 
2207
2208 Creates a plane from interactively selected vertex and face. 
2209
2210 @subsubsection occt_draw_4_4_10 vplaneortho
2211
2212 Syntax:                  
2213 ~~~~~
2214 vplaneortho name
2215 ~~~~~ 
2216
2217 Creates a plane from interactive selected face and coplanar edge. 
2218
2219 @subsubsection occt_draw_4_4_11 vline
2220
2221 Syntax:                  
2222 ~~~~~
2223 vline name [PointName] [PointName] 
2224 vline name [Xa Ya Za Xb Yb Zb]
2225 ~~~~~ 
2226
2227 Creates a line from coordinates, named or interactively selected vertices. 
2228
2229 **Example:** 
2230 ~~~~~
2231 vinit 
2232 vtrihedron tr 
2233 vpoint p1 0 50 0 
2234 vpoint p2 50 0 0 
2235 vline line1 p1 p2 
2236 vline line2 0 0 0 50 0 1 
2237 ~~~~~
2238
2239 @subsubsection occt_draw_4_4_12 vcircle
2240
2241 Syntax:      
2242 ~~~~~
2243 vcircle name [PointName PointName PointName IsFilled] 
2244 vcircle name [PlaneName PointName Radius IsFilled] 
2245 ~~~~~
2246
2247 Creates a circle from named or interactively selected entities.  Parameter IsFilled is defined as 0 or 1.
2248  
2249 **Example:** 
2250 ~~~~~
2251 vinit 
2252 vtrihedron tr 
2253 vpoint p1 0 50 0 
2254 vpoint p2 50 0 0 
2255 vpoint p3 0 0 0 
2256 vcircle circle1 p1 p2 p3 1
2257 ~~~~~ 
2258
2259 @subsubsection occt_draw_4_4_13 vtri2d
2260
2261 Syntax:                  
2262 ~~~~~
2263 vtri2d name
2264 ~~~~~ 
2265
2266 Creates a plane with a 2D trihedron from an interactively selected face. 
2267
2268 @subsubsection occt_draw_4_4_14 vselmode
2269
2270 Syntax:                  
2271 ~~~~~
2272 vselmode [object] mode_number is_turned_on=(1|0)
2273 ~~~~~ 
2274
2275 Sets the selection mode for an object. If the object value is not defined, the selection mode is set for all displayed objects. 
2276 *Mode_number* is non-negative integer that has different meaning for different interactive object classes.
2277 For shapes the following *mode_number* values are allowed:
2278  * 0 - shape
2279  * 1 - vertex
2280  * 2 - edge
2281  * 3 - wire
2282  * 4 - face
2283  * 5 - shell
2284  * 6 - solid
2285  * 7 - compsolid
2286  * 8 - compound
2287 *is_turned_on* is:
2288  * 1 if mode is to be switched on
2289  * 0 if mode is to be switched off
2290
2291 **Example:** 
2292 ~~~~~
2293 vinit 
2294 vpoint p1 0 0 0 
2295 vpoint p2 50 0 0 
2296 vpoint p3 25 40 0 
2297 vtriangle triangle1 p1 p2 p3 
2298 ~~~~~
2299
2300 @subsubsection occt_draw_4_4_15 vconnect
2301
2302 Syntax:                  
2303 ~~~~~
2304 vconnect vconnect name Xo Yo Zo object1 object2 ... [color=NAME]
2305 ~~~~~ 
2306
2307 Creates and displays AIS_ConnectedInteractive object from input object and location
2308
2309 **Example:** 
2310 ~~~~~
2311 Vinitvinit 
2312 vpoint p1 0 0 0 
2313 vpoint p2 50 0 0 
2314 vsegment segment p1 p2 
2315 restore CrankArm.brep obj 
2316 vdisplay obj 
2317 vconnect new obj 100100100 1 0 0 0 0 1
2318 ~~~~~ 
2319
2320 @subsubsection occt_draw_4_4_16 vtriangle
2321
2322 Syntax:                  
2323 ~~~~~
2324 vtriangle name PointName PointName PointName
2325 ~~~~~ 
2326
2327 Creates and displays a filled triangle from named points. 
2328
2329 **Example:** 
2330 ~~~~~
2331 vinit 
2332 vpoint p1 0 0 0 
2333 vpoint p2 50 0 0 
2334 vpoint p3 25 40 0 
2335 vtriangle triangle1 p1 p2 p3
2336 ~~~~~ 
2337
2338 @subsubsection occt_draw_4_4_17 vsegment
2339
2340 Syntax:                  
2341 ~~~~~
2342 vsegment name PointName PointName 
2343 ~~~~~
2344
2345 Creates and displays a segment from named points. 
2346
2347 **Example:** 
2348 ~~~~~
2349 Vinit 
2350 vpoint p1 0 0 0 
2351 vpoint p2 50 0 0 
2352 vsegment segment p1 p2 
2353 ~~~~~
2354
2355 @subsubsection occt_draw_4_4_18 vpointcloud
2356
2357 Syntax:
2358 ~~~~~
2359 vpointcloud name shape [-randColor] [-normals] [-noNormals]
2360 ~~~~~
2361
2362 Creates an interactive object for an arbitary set of points from the triangulated shape.
2363 Additional options:
2364  * *randColor* - generate random color per point
2365  * *normals*   - generate normal per point (default)
2366  * *noNormals* - do not generate normal per point
2367
2368 ~~~~~
2369 vpointcloud name x y z r npts {surface|volume} [-randColor] [-normals] [-noNormals]
2370 ~~~~~
2371 Creates an arbitrary set of points (npts) randomly distributed on a spheric surface or within a spheric volume (x y z r).
2372 Additional options:
2373  * *randColor* - generate random color per point
2374  * *normals*   - generate normal per point (default)
2375  * *noNormals* - do not generate normal per point
2376
2377 **Example:**
2378 ~~~~~
2379 vinit
2380 vpointcloud pc 0 0 0 100 100000 surface -randColor
2381 vfit
2382 ~~~~~
2383
2384 @subsubsection occt_draw_4_4_19 vclipplane
2385
2386 Syntax:
2387 ~~~~~
2388 vclipplane maxplanes <view_name> - gets plane limit for the view.
2389 vclipplane create <plane_name> - creates a new plane.
2390 vclipplane delete <plane_name> - delete a plane.
2391 vclipplane clone <source_plane> <plane_name> - clones the plane definition.
2392 vclipplane set/unset <plane_name> object <object list> - sets/unsets the plane for an IO.
2393 vclipplane set/unset <plane_name> view <view list> - sets/unsets plane for a view.
2394 vclipplane change <plane_name> on/off - turns clipping on/off.
2395 vclipplane change <plane_name> equation <a> <b> <c> <d> - changes plane equation.
2396 vclipplane change <plane_name> capping on/off - turns capping on/off.
2397 vclipplane change <plane_name> capping color <r> <g> <b> - sets color.
2398 vclipplane change <plane name> capping texname <texture> - sets texture.
2399 vclipplane change <plane_name> capping texscale <sx> <sy> - sets texture scale.
2400 vclipplane change <plane_name> capping texorigin <tx> <ty> - sets texture origin.
2401 vclipplane change <plane_name> capping texrotate <angle> - sets texture rotation.
2402 vclipplane change <plane_name> capping hatch on/off/<id> - sets hatching mask.
2403 ~~~~~
2404
2405 Manages clipping planes
2406
2407 **Example:**
2408 ~~~~~
2409 vinit
2410 vclipplane create pln1
2411 vclipplane change pln1 equation 1 0 0 -0.1
2412 vclipplane set pln1 view Driver1/Viewer1/View1
2413 box b 100 100 100
2414 vdisplay b
2415 vsetdispmode 1
2416 vfit
2417 vrotate 10 10 10
2418 vselect 100 100
2419 ~~~~~
2420
2421 @subsubsection occt_draw_4_4_20 vdimension
2422
2423 Syntax:
2424 ~~~~~
2425 vdimension name {-angle|-length|-radius|-diameter} -shapes shape1 [shape2 [shape3]]
2426                 [-text 3d|2d wf|sh|wireframe|shading IntegerSize]
2427                 [-label left|right|hcenter|hfit top|bottom|vcenter|vfit]
2428                 [-arrow external|internal|fit] [{-arrowlength|-arlen} RealArrowLength]
2429                 [{-arrowangle|-arangle} ArrowAngle(degrees)] [-plane xoy|yoz|zox]
2430                 [-flyout FloatValue -extension FloatValue] [-value CustomNumberValue]
2431                 [-dispunits DisplayUnitsString] [-modelunits ModelUnitsString]
2432                 [-showunits | -hideunits]
2433 ~~~~~
2434
2435 Builds angle, length, radius or diameter dimension interactive object **name**.
2436
2437 **Attension:** length dimension can't be built without working plane.
2438
2439 **Example:** 
2440 ~~~~~
2441 vpoint p1 0 0 0
2442 vpoint p2 50 50 0
2443 vdimension dim1 -length -plane xoy -shapes p1 p2
2444
2445 vpoint p3 100 0 0
2446 vdimension dim2 -angle -shapes p1 p2 p3
2447
2448 vcircle circle p1 p2 p3 0
2449 vdimension dim3 -radius -shapes circle
2450 vfit
2451 ~~~~~
2452
2453 @subsubsection occt_draw_4_4_21 vdimparam
2454
2455 Syntax:
2456 ~~~~~
2457 vdimparam name [-text 3d|2d wf|sh|wireframe|shading IntegerSize]
2458                [-label left|right|hcenter|hfit top|bottom|vcenter|vfit]
2459                [-arrow external|internal|fit]
2460                [{-arrowlength|-arlen} RealArrowLength]
2461                [{-arrowangle|-arangle} ArrowAngle(degrees)]
2462                [-plane xoy|yoz|zox]
2463                [-flyout FloatValue -extension FloatValue]
2464                [-value CustomNumberValue]
2465                [-dispunits DisplayUnitsString]
2466                [-modelunits ModelUnitsString]
2467                [-showunits | -hideunits]
2468 ~~~~~
2469
2470 Sets parameters for angle, length, radius and diameter dimension **name**.
2471
2472 **Example:** 
2473 ~~~~~
2474 vpoint p1 0 0 0
2475 vpoint p2 50 50 0
2476 vdimension dim1 -length -plane xoy -shapes p1 p2
2477 vdimparam dim1 -flyout -15 -arrowlength 4 -showunits -value 10
2478 ~~~~~
2479
2480 @subsubsection occt_draw_4_4_22 vmovedim
2481
2482 Syntax:
2483 ~~~~~
2484 vmovedim [name] [x y z]
2485 ~~~~~
2486
2487 Moves picked or named (if **name** parameter is defined) dimension
2488 to picked mouse position or input point with coordinates **x**,**y**,**z**.
2489 Text label of dimension **name** is moved to position, another parts of dimension
2490 are adjusted.
2491
2492 **Example:** 
2493 ~~~~~
2494 vpoint p1 0 0 0
2495 vpoint p2 50 50 0
2496 vdimension dim1 -length -plane xoy -shapes p1 p2
2497 vmovedim dim1 -10 30 0
2498 ~~~~~
2499
2500
2501 @subsection occt_draw_4_5 AIS viewer – Mesh Visualization Service
2502
2503 **MeshVS** (Mesh Visualization Service) component provides flexible means of displaying meshes with associated pre- and post- processor data.
2504
2505 @subsubsection occt_draw_4_5_1 meshfromstl
2506
2507 Syntax:                  
2508 ~~~~~
2509 meshfromstl meshname file
2510 ~~~~~ 
2511
2512 Creates a *MeshVS_Mesh* object based on STL file data. The object will be displayed immediately.
2513  
2514 **Example:**
2515 ~~~~~ 
2516 meshfromstl mesh myfile.stl
2517 ~~~~~ 
2518
2519 @subsubsection occt_draw_4_5_2 meshdispmode
2520
2521 Syntax:                  
2522 ~~~~~
2523 meshdispmode meshname displaymode
2524 ~~~~~ 
2525
2526 Changes the display mode of object **meshname**. The **displaymode** is integer, which can be:
2527 * *1* for *wireframe*, 
2528 * *2* for *shading* mode, or
2529 * *3* for *shrink* mode. 
2530
2531 **Example:** 
2532 ~~~~~
2533 vinit 
2534 meshfromstl mesh myfile.stl 
2535 meshdispmode mesh 2
2536 ~~~~~ 
2537
2538 @subsubsection occt_draw_4_5_3 meshselmode
2539
2540 Syntax:                  
2541 ~~~~~
2542 meshselmode meshname selectionmode
2543 ~~~~~ 
2544
2545 Changes the selection mode of object **meshname**. The *selectionmode* is integer OR-combination of mode flags. The basic flags are the following: 
2546 * *1* – node selection;
2547 * *2* – 0D elements (not supported in STL); 
2548 * *4* – links (not supported in STL); 
2549 * *8* – faces.
2550  
2551 **Example:** 
2552 ~~~~~
2553 vinit 
2554 meshfromstl mesh myfile.stl 
2555 meshselmode mesh 1
2556 ~~~~~ 
2557
2558 @subsubsection occt_draw_4_5_4 meshshadcolor
2559
2560 Syntax:                  
2561 ~~~~~
2562 meshshadcolor meshname red green blue
2563 ~~~~~ 
2564
2565 Changes the face interior color of object **meshname**. The *red*, *green* and *blue* are real values between *0* and *1*.
2566  
2567 **Example:** 
2568 ~~~~~
2569 vinit 
2570 meshfromstl mesh myfile.stl 
2571 meshshadcolormode mesh 0.5 0.5 0.5
2572 ~~~~~ 
2573
2574 @subsubsection occt_draw_4_5_5 meshlinkcolor
2575
2576 Syntax:                  
2577 ~~~~~
2578 meshlinkcolor meshname red green blue
2579 ~~~~~ 
2580
2581 Changes the color of face borders for object **meshname**. The *red*, *green* and *blue* are real values between *0* and *1*.
2582  
2583 **Example:** 
2584 ~~~~~
2585 vinit 
2586 meshfromstl mesh myfile.stl 
2587 meshlinkcolormode mesh 0.5 0.5 0.5
2588 ~~~~~ 
2589
2590 @subsubsection occt_draw_4_5_6 meshmat
2591
2592 Syntax:                  
2593 ~~~~~
2594 meshmat meshname material
2595 ~~~~~ 
2596
2597 Changes the material of object **meshname**.
2598
2599 *material* is represented with an integer value as follows (equivalent to enumeration *Graphic3d_NameOfMaterial*): 
2600 * *0 - BRASS,* 
2601 * *1 - BRONZE,* 
2602 * *2 - COPPER,* 
2603 * *3 - GOLD,* 
2604 * *4 - PEWTER,* 
2605 * *5 - PLASTER,* 
2606 * *6 - PLASTIC,* 
2607 * *7 - SILVER,* 
2608 * *8 - STEEL,* 
2609 * *9 - STONE,* 
2610 * *10 - SHINY_PLASTIC,* 
2611 * *11 - SATIN,*
2612 * *12 - METALIZED,* 
2613 * *13 - NEON_GNC,* 
2614 * *14 - CHROME,*
2615 * *15 - ALUMINIUM,*
2616 * *16 - OBSIDIAN,* 
2617 * *17 - NEON_PHC,* 
2618 * *18 - JADE,*
2619 * *19 - DEFAULT,* 
2620 * *20 - UserDefined*
2621  
2622 **Example:** 
2623 ~~~~~
2624 vinit 
2625 meshfromstl mesh myfile.stl 
2626 meshmat mesh JADE 
2627 ~~~~~
2628
2629 @subsubsection occt_draw_4_5_7 meshshrcoef
2630
2631 Syntax:                  
2632 ~~~~~
2633 meshshrcoef meshname shrinkcoefficient
2634 ~~~~~ 
2635
2636 Changes the value of shrink coefficient used in the shrink mode. In the shrink mode the face is shown as a congruent part of a usual face, so that *shrinkcoefficient* controls the value of this part. The *shrinkcoefficient* is a positive real number.
2637  
2638 **Example:** 
2639 ~~~~~
2640 vinit 
2641 meshfromstl mesh myfile.stl 
2642 meshshrcoef mesh 0.05
2643 ~~~~~ 
2644
2645 @subsubsection occt_draw_4_5_8 meshshow
2646
2647 Syntax:                  
2648 ~~~~~
2649 meshshow meshname
2650 ~~~~~ 
2651
2652 Displays **meshname** in the viewer (if it is erased).
2653  
2654 **Example:** 
2655 ~~~~~
2656 vinit 
2657 meshfromstl mesh myfile.stl 
2658 meshshow mesh
2659 ~~~~~ 
2660
2661 @subsubsection occt_draw_4_5_9 meshhide
2662
2663 Syntax:                  
2664 ~~~~~
2665 meshhide meshname
2666 ~~~~~ 
2667
2668 Hides **meshname** in the viewer. 
2669
2670 **Example:** 
2671 ~~~~~
2672 vinit 
2673 meshfromstl mesh myfile.stl 
2674 meshhide mesh
2675 ~~~~~ 
2676
2677 @subsubsection occt_draw_4_5_10 meshhidesel
2678
2679 Syntax:                  
2680 ~~~~~
2681 meshhidesel meshname
2682 ~~~~~ 
2683
2684 Hides only selected entities. The other part of **meshname** remains visible. 
2685
2686 @subsubsection occt_draw_4_5_11 meshshowsel
2687
2688 Syntax:                  
2689 ~~~~~
2690 meshshowsel meshname
2691 ~~~~~ 
2692
2693 Shows only selected entities. The other part of **meshname** becomes invisible. 
2694
2695 @subsubsection occt_draw_4_5_12 meshshowall
2696
2697 Syntax:                  
2698 ~~~~~
2699 meshshowall meshname
2700 ~~~~~ 
2701
2702 Changes the state of all entities to visible for **meshname**. 
2703
2704 @subsubsection occt_draw_4_5_13 meshdelete
2705
2706 Syntax:                  
2707 ~~~~~
2708 meshdelete meshname
2709 ~~~~~ 
2710
2711 Deletes MeshVS_Mesh object **meshname**. 
2712
2713 **Example:** 
2714 ~~~~~
2715 vinit 
2716 meshfromstl mesh myfile.stl 
2717 meshdelete mesh 
2718 ~~~~~
2719
2720 @subsection occt_draw_4_6       VIS Viewer commands
2721
2722 A specific plugin with alias *VIS* should be loaded to have access to VIS functionality in DRAW Test Harness:
2723
2724 ~~~~
2725 \> pload VIS
2726 ~~~~
2727
2728 @subsubsection occt_draw_4_6_1  ivtkinit
2729
2730 Syntax:
2731 ~~~~~
2732 ivtkinit
2733 ~~~~~
2734
2735 Creates a window for VTK viewer.
2736
2737 @figure{/user_guides/draw_test_harness/images/draw_image001.png}
2738
2739 @subsection occt_draw_4_6_2     ivtkdisplay
2740
2741 Syntax:
2742 ~~~~~
2743 ivtkdisplay name1 [name2] …[name n]
2744 ~~~~~
2745
2746 Displays named objects.
2747
2748 **Example:** 
2749 ~~~~~
2750 ivtkinit
2751 # create cone
2752 pcone c 5 0 10
2753 ivtkdisplay c
2754 ~~~~~
2755
2756 @figure{/user_guides/draw_test_harness/images/draw_image002.png}
2757
2758 @subsection occt_draw_4_6_3     ivtkerase
2759
2760 Syntax:
2761 ~~~~~
2762 ivtkerase [name1] [name2] … [name n]
2763 ~~~~~
2764
2765 Erases named objects. If no arguments are passed, erases all displayed objects.
2766
2767 **Example:**
2768 ~~~~~
2769 ivtkinit
2770 # create a sphere
2771 psphere s 10
2772 # create a cone
2773 pcone c 5 0 10
2774 # create a cylinder
2775 pcylinder cy 5 10
2776 # display objects
2777 ivtkdisplay s c cy
2778 # erase only the cylinder
2779 ivtkerase cy
2780 # erase the sphere and the cone
2781 ivtkerase s c
2782 ~~~~~
2783
2784 @subsection occt_draw_4_6_4      ivtkfit
2785
2786 Syntax:
2787 ~~~~~
2788 ivtkfit
2789 ~~~~~
2790
2791 Automatic zoom/panning.
2792
2793 @subsection occt_draw_4_6_5     ivtkdispmode
2794
2795 Syntax:
2796 ~~~~~
2797 ivtksetdispmode [name] {0|1}
2798 ~~~~~
2799
2800 Sets display mode for a named object. If no arguments are passed, sets the given display mode for all displayed objects
2801 The possible modes are: 0 (WireFrame) and 1 (Shading).
2802
2803 **Example:**
2804 ~~~~~
2805 ivtkinit
2806 # create a cone
2807 pcone c 5 0 10
2808 # display the cone
2809 ivtkdisplay c
2810 # set shading mode for the cone
2811 ivtksetdispmode c 1
2812 ~~~~~
2813
2814 @figure{/user_guides/draw_test_harness/images/draw_image003.png}
2815  
2816 @subsection occt_draw_4_6_6     ivtksetselmode
2817
2818 Syntax:
2819 ~~~~~
2820 ivtksetselmode [name] mode {0|1}
2821 ~~~~~
2822
2823 Sets selection mode for a named object. If no arguments are passed, sets the given selection mode for all the displayed objects.
2824
2825 **Example:**
2826 ~~~~~
2827 ivtkinit
2828 # load a shape from file
2829 restore CrankArm.brep a
2830 # display the loaded shape
2831 ivtkdisplay a
2832 # set the face selection mode
2833 ivtksetselmode a 4 1
2834 ~~~~~
2835
2836 @figure{/user_guides/draw_test_harness/images/draw_image004.png}
2837  
2838 @subsection occt_draw_4_6_7     ivtkmoveto
2839
2840 Syntax:
2841 ~~~~~
2842 ivtkmoveto x y
2843 ~~~~~
2844
2845 Imitates mouse cursor moving to point with the given display coordinates **x**,**y**.
2846
2847 **Example:**
2848 ~~~~~
2849 ivtkinit
2850 pcone c 5 0 10
2851 ivtkdisplay c
2852 ivtkmoveto 40 50
2853 ~~~~~
2854
2855 @subsection occt_draw_4_6_8     ivtkselect
2856
2857 Syntax:
2858 ~~~~~
2859 ivtkselect x y
2860 ~~~~~
2861
2862 Imitates mouse cursor moving to point with the given display coordinates and performs selection at this point.
2863
2864 **Example:**
2865 ~~~~~
2866 ivtkinit
2867 pcone c 5 0 10
2868 ivtkdisplay c
2869 ivtkselect 40 50
2870 ~~~~~
2871
2872 @subsection occt_draw_4_6_9     ivtkdump
2873
2874 Syntax:
2875 ~~~~~
2876 ivtkdump *filename* [buffer={rgb|rgba|depth}] [width height] [stereoproj={L|R}]
2877 ~~~~~
2878
2879 Dumps the contents of VTK viewer to image. It supports:
2880 * dumping in different raster graphics formats: PNG, BMP, JPEG, TIFF or PNM.
2881 * dumping of different buffers: RGB, RGBA or depth buffer.
2882 * defining of image sizes (width and height in pixels).
2883 * dumping of stereo projections (left or right).
2884
2885 **Example:**
2886 ~~~~~
2887 ivtkinit
2888 pcone c 5 0 10
2889 ivtkdisplay c
2890 ivtkdump D:/ConeSnapshot.png rgb 768 768
2891 ~~~~~
2892
2893 @subsection occt_draw_4_6_10    ivtkbgcolor
2894
2895
2896 Syntax:
2897 ~~~~~
2898 ivtkbgcolor r g b [r2 g2 b2]
2899 ~~~~~
2900
2901 Sets uniform background color or gradient background if second triple of parameters is set. Color parameters r,g,b have to be chosen in the interval  [0..255].
2902
2903 **Example:**
2904 ~~~~~
2905 ivtkinit
2906 ivtkbgcolor 200 220 250
2907 ~~~~~
2908  
2909 @figure{/user_guides/draw_test_harness/images/draw_image005.png}
2910
2911 ~~~~~
2912 ivtkbgcolor 10 30 80 255 255 255
2913 ~~~~~
2914
2915 @figure{/user_guides/draw_test_harness/images/draw_image006.png}
2916
2917
2918 @section occt_draw_5 OCAF commands
2919
2920
2921 This chapter contains a set of commands for Open CASCADE Technology Application Framework (OCAF). 
2922
2923
2924 @subsection occt_draw_5_1 Application commands
2925
2926
2927 @subsubsection occt_draw_5_1_1 NewDocument
2928
2929 Syntax:       
2930 ~~~~~
2931 NewDocument docname [format]
2932 ~~~~~ 
2933
2934 Creates a new **docname** document with MDTV-Standard or described format. 
2935
2936 **Example:** 
2937 ~~~~~
2938 # Create new document with default (MDTV-Standard) format 
2939 NewDocument D 
2940
2941 # Create new document with BinOcaf format 
2942 NewDocument D2 BinOcaf 
2943 ~~~~~
2944
2945 @subsubsection occt_draw_5_1_2 IsInSession
2946
2947 Syntax:       
2948 ~~~~~
2949 IsInSession path
2950 ~~~~~ 
2951
2952 Returns *0*, if **path** document is managed by the application session, *1* – otherwise. 
2953
2954 **Example:** 
2955 ~~~~~
2956 IsInSession /myPath/myFile.std 
2957 ~~~~~
2958
2959 @subsubsection occt_draw_5_1_3 ListDocuments
2960
2961 Syntax:       
2962 ~~~~~
2963 ListDocuments
2964 ~~~~~ 
2965
2966 Makes a list of documents handled during the session of the application. 
2967
2968
2969 @subsubsection occt_draw_5_1_4 Open
2970
2971 Syntax:       
2972 ~~~~~
2973 Open path docname [-stream]
2974 ~~~~~ 
2975
2976 Retrieves the document of file **docname** in the path **path**. Overwrites the document, if it is already in session. 
2977
2978 option <i>-stream</i> activates usage of alternative interface of OCAF persistence working with C++ streams instead of file names.
2979
2980 **Example:** 
2981 ~~~~~
2982 Open /myPath/myFile.std D
2983 ~~~~~ 
2984
2985 @subsubsection occt_draw_5_1_5 Close
2986
2987 Syntax:       
2988 ~~~~~
2989 Close docname
2990 ~~~~~ 
2991
2992 Closes **docname** document. The document is no longer handled by the applicative session. 
2993
2994 **Example:** 
2995 ~~~~~
2996 Close D 
2997 ~~~~~
2998
2999 @subsubsection occt_draw_5_1_6 Save
3000
3001 Syntax:       
3002 ~~~~~
3003 Save docname
3004 ~~~~~ 
3005
3006 Saves **docname** active document. 
3007
3008 **Example:** 
3009 ~~~~~
3010 Save D 
3011 ~~~~~
3012
3013 @subsubsection occt_draw_5_1_7 SaveAs
3014
3015 Syntax:       
3016 ~~~~~
3017 SaveAs docname path [-stream]
3018 ~~~~~ 
3019
3020 Saves the active document in the file **docname** in the path **path**. Overwrites the file if it already exists.
3021
3022 option <i>-stream</i> activates usage of alternative interface of OCAF persistence working with C++ streams instead of file names.
3023
3024 **Example:** 
3025 ~~~~~
3026 SaveAs D /myPath/myFile.std
3027 ~~~~~ 
3028
3029 @subsection occt_draw_5_2 Basic commands
3030
3031 @subsubsection occt_draw_5_2_1 Label
3032
3033 Syntax:   
3034
3035 ~~~~~
3036 Label docname entry
3037 ~~~~~
3038
3039 Creates the label expressed by <i>\<entry\></i> if it does not exist.
3040
3041 Example
3042 ~~~~~
3043 Label D 0:2
3044 ~~~~~
3045
3046 @subsubsection occt_draw_5_2_2 NewChild
3047
3048 Syntax:   
3049
3050 ~~~~~
3051 NewChild docname [taggerlabel = Root label]
3052 ~~~~~
3053 Finds (or creates) a *TagSource* attribute located at father label of <i>\<taggerlabel\></i> and makes a new child label.
3054
3055 Example
3056 ~~~~~
3057 # Create new child of root label
3058 NewChild D
3059
3060 # Create new child of existing label
3061 Label D 0:2
3062 NewChild D 0:2
3063 ~~~~~
3064
3065 @subsubsection occt_draw_5_2_3 Children
3066
3067 Syntax:  
3068 ~~~~~
3069 Children docname label
3070 ~~~~~
3071 Returns the list of attributes of label.
3072
3073 Example
3074 ~~~~~
3075 Children D 0:2
3076 ~~~~~
3077
3078 @subsubsection occt_draw_5_2_4 ForgetAll
3079
3080 Syntax:   
3081 ~~~~~
3082 ForgetAll docname label
3083 ~~~~~
3084 Forgets all attributes of the label.
3085
3086 Example
3087 ~~~~~
3088 ForgetAll D 0:2
3089 ~~~~~
3090
3091
3092 @subsubsection occt_draw_5_3 Application commands
3093
3094 @subsubsection occt_draw_5_3_1  Main
3095
3096 Syntax:       
3097 ~~~~~
3098 Main docname
3099 ~~~~~ 
3100
3101 Returns the main label of the framework. 
3102
3103 **Example:** 
3104 ~~~~~
3105 Main D 
3106 ~~~~~
3107
3108 @subsubsection occt_draw_5_3_2  UndoLimit
3109
3110 Syntax:       
3111 ~~~~~
3112 UndoLimit docname [value=0]
3113 ~~~~~ 
3114
3115
3116 Sets the limit on the number of Undo Delta stored. **0** will disable Undo on the document. A negative *value* means that there is no limit. Note that by default Undo is disabled. Enabling it will take effect with the next call to *NewCommand*. Of course, this limit is the same for Redo 
3117
3118 **Example:** 
3119 ~~~~~
3120 UndoLimit D 100 
3121 ~~~~~
3122
3123 @subsubsection occt_draw_5_3_3  Undo
3124
3125 Syntax:       
3126 ~~~~~
3127 Undo docname [value=1]
3128 ~~~~~ 
3129
3130 Undoes **value** steps. 
3131
3132 **Example:** 
3133 ~~~~~
3134 Undo D 
3135 ~~~~~
3136
3137 @subsubsection occt_draw_5_3_4  Redo
3138
3139 Syntax:       
3140 ~~~~~
3141 Redo docname [value=1]
3142 ~~~~~ 
3143
3144 Redoes **value** steps.
3145  
3146 **Example:** 
3147 ~~~~~
3148 Redo D 
3149 ~~~~~
3150
3151 @subsubsection occt_draw_5_3_5  OpenCommand
3152
3153 Syntax:       
3154 ~~~~~
3155 OpenCommand docname
3156 ~~~~~ 
3157
3158 Opens a new command transaction. 
3159
3160 **Example:**
3161 ~~~~~ 
3162 OpenCommand D
3163 ~~~~~ 
3164
3165 @subsubsection occt_draw_5_3_6  CommitCommand
3166
3167 Syntax:       
3168 ~~~~~
3169 CommitCommand docname
3170 ~~~~~ 
3171
3172 Commits the Command transaction. 
3173
3174 **Example:** 
3175 ~~~~~
3176 CommitCommand D
3177 ~~~~~ 
3178
3179 @subsubsection occt_draw_5_3_7  NewCommand
3180
3181 Syntax:       
3182 ~~~~~
3183 NewCommand docname
3184 ~~~~~ 
3185
3186 This is a short-cut for Commit and Open transaction. 
3187
3188 **Example:** 
3189 ~~~~~
3190 NewCommand D 
3191 ~~~~~
3192
3193 @subsubsection occt_draw_5_3_8  AbortCommand
3194
3195 Syntax:       
3196 ~~~~~
3197 AbortCommand docname
3198 ~~~~~ 
3199
3200 Aborts the Command transaction. 
3201
3202 **Example:** 
3203 ~~~~~
3204 AbortCommand D 
3205 ~~~~~
3206
3207 @subsubsection occt_draw_5_3_9  Copy
3208
3209 Syntax:       
3210 ~~~~~
3211 Copy docname entry Xdocname Xentry
3212 ~~~~~ 
3213
3214 Copies the contents of *entry* to *Xentry*. No links are registered. 
3215
3216 **Example:** 
3217 ~~~~~
3218 Copy D1 0:2 D2 0:4 
3219 ~~~~~
3220
3221 @subsubsection occt_draw_5_3_10  UpdateLink
3222
3223 Syntax:       
3224 ~~~~~
3225 UpdateLink docname [entry] 
3226 ~~~~~
3227
3228 Updates external reference set at *entry*. 
3229
3230 **Example:** 
3231 ~~~~~
3232 UpdateLink D 
3233 ~~~~~
3234
3235 @subsubsection occt_draw_5_3_11  CopyWithLink
3236
3237 Syntax:       
3238 ~~~~~
3239 CopyWithLink docname entry Xdocname Xentry
3240 ~~~~~ 
3241
3242 Aborts the Command transaction. 
3243 Copies the content of *entry* to *Xentry*. The link is registered with an *Xlink* attribute at *Xentry*  label. 
3244
3245 **Example:** 
3246 ~~~~~
3247 CopyWithLink D1 0:2 D2 0:4
3248 ~~~~~ 
3249
3250 @subsubsection occt_draw_5_3_12  UpdateXLinks
3251
3252 Syntax:       
3253 ~~~~~
3254 UpdateXLinks docname entry
3255 ~~~~~ 
3256
3257 Sets modifications on labels impacted by external references to the *entry*. The *document* becomes invalid and must be recomputed 
3258
3259 **Example:** 
3260 ~~~~~
3261 UpdateXLinks D 0:2 
3262 ~~~~~
3263
3264 @subsubsection occt_draw_5_3_13  DumpDocument
3265
3266 Syntax:       
3267 ~~~~~
3268 DumpDocument docname
3269 ~~~~~ 
3270
3271 Displays parameters of *docname* document. 
3272
3273 **Example:** 
3274 ~~~~~
3275 DumpDocument D 
3276 ~~~~~
3277
3278
3279 @subsection occt_draw_5_4  Data Framework commands
3280
3281
3282 @subsubsection occt_draw_5_4_1  MakeDF
3283
3284 Syntax:       
3285 ~~~~~
3286 MakeDF dfname
3287 ~~~~~ 
3288
3289 Creates a new data framework. 
3290
3291 **Example:** 
3292 ~~~~~
3293 MakeDF D 
3294 ~~~~~
3295
3296 @subsubsection occt_draw_5_4_2  ClearDF
3297
3298 Syntax:       
3299 ~~~~~
3300 ClearDF dfname
3301 ~~~~~ 
3302
3303 Clears a data framework. 
3304
3305 **Example:** 
3306 ~~~~~
3307 ClearDF D 
3308 ~~~~~
3309
3310 @subsubsection occt_draw_5_4_3  CopyDF
3311
3312 Syntax:       
3313 ~~~~~
3314 CopyDF dfname1 entry1 [dfname2] entry2
3315 ~~~~~ 
3316
3317 Copies a data framework. 
3318
3319 **Example:** 
3320 ~~~~~
3321 CopyDF D 0:2 0:4 
3322 ~~~~~
3323
3324 @subsubsection occt_draw_5_4_4  CopyLabel
3325
3326 Syntax:       
3327 ~~~~~
3328 CopyLabel dfname fromlabel tolablel
3329 ~~~~~ 
3330
3331 Copies a label. 
3332
3333 **Example:** 
3334 ~~~~~
3335 CopyLabel D1 0:2 0:4 
3336 ~~~~~
3337
3338 @subsubsection occt_draw_5_4_5  MiniDumpDF
3339
3340 Syntax:       
3341 ~~~~~
3342 MiniDumpDF dfname
3343 ~~~~~ 
3344
3345 Makes a mini-dump of a data framework. 
3346
3347 **Example:** 
3348 ~~~~~
3349 MiniDumpDF D 
3350 ~~~~~
3351
3352 @subsubsection occt_draw_5_4_6  XDumpDF
3353
3354 Syntax:       
3355 ~~~~~
3356 XDumpDF dfname
3357 ~~~~~ 
3358
3359 Makes an extended dump of a data framework. 
3360
3361 **Example:** 
3362 ~~~~~
3363 XDumpDF D
3364 ~~~~~ 
3365
3366 @subsection occt_draw_5_5  General attributes commands
3367
3368
3369 @subsubsection occt_draw_5_5_1  SetInteger
3370
3371 Syntax:       
3372 ~~~~~
3373 SetInteger dfname entry value
3374 ~~~~~ 
3375
3376 Finds or creates an Integer attribute at *entry* label and sets *value*. 
3377
3378 **Example:** 
3379 ~~~~~
3380 SetInteger D 0:2 100 
3381 ~~~~~
3382
3383 @subsubsection occt_draw_5_5_2  GetInteger
3384
3385 Syntax:       
3386 ~~~~~
3387 GetInteger dfname entry [drawname]
3388 ~~~~~ 
3389
3390 Gets a value of an Integer attribute at *entry* label and sets it to *drawname* variable, if it is defined. 
3391
3392 **Example:** 
3393 ~~~~~
3394 GetInteger D 0:2 Int1 
3395 ~~~~~
3396
3397 @subsubsection occt_draw_5_5_3  SetReal
3398
3399 Syntax:       
3400 ~~~~~
3401 SetReal dfname entry value
3402 ~~~~~ 
3403
3404 Finds or creates a Real attribute at *entry* label and sets *value*. 
3405
3406 **Example:** 
3407 ~~~~~
3408 SetReal D 0:2 100. 
3409 ~~~~~
3410
3411 @subsubsection occt_draw_5_5_4  GetReal
3412
3413 Syntax:       
3414 ~~~~~
3415 GetReal dfname entry [drawname]
3416 ~~~~~ 
3417
3418 Gets a value of a Real attribute at *entry* label and sets it to *drawname* variable, if it is defined. 
3419
3420 **Example:** 
3421 ~~~~~
3422 GetReal D 0:2 Real1 
3423 ~~~~~
3424
3425 @subsubsection occt_draw_5_5_5  SetIntArray
3426
3427 Syntax:       
3428 ~~~~~
3429 SetIntArray dfname entry lower upper value1 value2 … 
3430 ~~~~~
3431
3432 Finds or creates an IntegerArray attribute at *entry* label with lower and upper bounds and sets **value1*, *value2*... 
3433
3434 **Example:** 
3435 ~~~~~
3436 SetIntArray D 0:2 1 4 100 200 300 400
3437 ~~~~~ 
3438
3439 @subsubsection occt_draw_5_5_6  GetIntArray
3440
3441 Syntax:       
3442 ~~~~~
3443 GetIntArray dfname entry
3444 ~~~~~ 
3445
3446 Gets a value of an *IntegerArray* attribute at *entry* label. 
3447
3448 **Example:** 
3449 ~~~~~
3450 GetIntArray D 0:2
3451 ~~~~~ 
3452
3453 @subsubsection occt_draw_5_5_7  SetRealArray
3454
3455 Syntax:       
3456 ~~~~~
3457 SetRealArray dfname entry lower upper value1 value2 …
3458 ~~~~~ 
3459
3460 Finds or creates a RealArray attribute at *entry* label with lower and upper bounds and sets *value1*, *value2*… 
3461
3462 **Example:** 
3463 ~~~~~
3464 GetRealArray D 0:2 1 4 100. 200. 300. 400. 
3465 ~~~~~
3466
3467 @subsubsection occt_draw_5_5_8  GetRealArray
3468
3469 Syntax:       
3470 ~~~~~
3471 GetRealArray dfname entry
3472 ~~~~~ 
3473
3474 Gets a value of a RealArray attribute at *entry* label. 
3475
3476 **Example:** 
3477 ~~~~~
3478 GetRealArray D 0:2 
3479 ~~~~~
3480
3481 @subsubsection occt_draw_5_5_9  SetComment
3482
3483 Syntax:       
3484 ~~~~~
3485 SetComment dfname entry value
3486 ~~~~~ 
3487
3488 Finds or creates a Comment attribute at *entry* label and sets *value*. 
3489
3490 **Example:** 
3491 ~~~~~
3492 SetComment D 0:2 "My comment"
3493 ~~~~~ 
3494
3495 @subsubsection occt_draw_5_5_10  GetComment
3496
3497 Syntax:       
3498 ~~~~~
3499 GetComment dfname entry
3500 ~~~~~ 
3501
3502 Gets a value of a Comment attribute at *entry* label. 
3503
3504 **Example:** 
3505 ~~~~~
3506 GetComment D 0:2
3507 ~~~~~ 
3508
3509 @subsubsection occt_draw_5_5_11  SetExtStringArray
3510
3511 Syntax:       
3512 ~~~~~
3513 SetExtStringArray dfname entry lower upper value1 value2 …
3514 ~~~~~ 
3515
3516 Finds or creates an *ExtStringArray* attribute at *entry* label with lower and upper bounds and sets *value1*, *value2*… 
3517
3518 **Example:** 
3519 ~~~~~
3520 SetExtStringArray D 0:2 1 3 *string1* *string2* *string3*
3521 ~~~~~ 
3522
3523 @subsubsection occt_draw_5_5_12  GetExtStringArray
3524
3525 Syntax:       
3526 ~~~~~
3527 GetExtStringArray dfname entry
3528 ~~~~~ 
3529
3530 Gets a value of an ExtStringArray attribute at *entry* label. 
3531
3532 **Example:** 
3533 ~~~~~
3534 GetExtStringArray D 0:2 
3535 ~~~~~
3536
3537 @subsubsection occt_draw_5_5_13  SetName
3538
3539 Syntax:       
3540 ~~~~~
3541 SetName dfname entry value 
3542 ~~~~~
3543
3544 Finds or creates a Name attribute at *entry* label and sets *value*. 
3545
3546 **Example:** 
3547 ~~~~~
3548 SetName D 0:2 *My name* 
3549 ~~~~~
3550
3551 @subsubsection occt_draw_5_5_14  GetName
3552
3553 Syntax:       
3554 ~~~~~
3555 GetName dfname entry 
3556 ~~~~~
3557
3558 Gets a value of a Name attribute at *entry* label. 
3559
3560 **Example:** 
3561 ~~~~~
3562 GetName D 0:2 
3563 ~~~~~
3564
3565 @subsubsection occt_draw_5_5_15  SetReference
3566
3567 Syntax:       
3568 ~~~~~
3569 SetReference dfname entry reference 
3570 ~~~~~
3571
3572 Creates a Reference attribute at *entry* label and sets *reference*. 
3573
3574 **Example:** 
3575 ~~~~~
3576 SetReference D 0:2 0:4 
3577 ~~~~~
3578
3579 @subsubsection occt_draw_5_5_16  GetReference
3580
3581 Syntax:       
3582 ~~~~~
3583 GetReference dfname entry 
3584 ~~~~~
3585
3586 Gets a value of a Reference attribute at *entry* label. 
3587
3588 **Example:** 
3589 ~~~~~
3590 GetReference D 0:2 
3591 ~~~~~
3592
3593 @subsubsection occt_draw_5_5_17  SetUAttribute
3594
3595 Syntax:       
3596 ~~~~~
3597 SetUAttribute dfname entry localGUID 
3598 ~~~~~
3599
3600 Creates a UAttribute attribute at *entry* label with *localGUID*. 
3601
3602 **Example:** 
3603 ~~~~~
3604 set localGUID "c73bd076-22ee-11d2-acde-080009dc4422" 
3605 SetUAttribute D 0:2 ${localGUID} 
3606 ~~~~~
3607
3608 @subsubsection occt_draw_5_5_18  GetUAttribute
3609
3610 Syntax:       
3611 ~~~~~
3612 GetUAttribute dfname entry loacalGUID 
3613 ~~~~~
3614
3615 Finds a *UAttribute* at *entry* label with *localGUID*. 
3616
3617 **Example:** 
3618 ~~~~~
3619 set localGUID "c73bd076-22ee-11d2-acde-080009dc4422" 
3620 GetUAttribute D 0:2 ${localGUID} 
3621 ~~~~~
3622
3623 @subsubsection occt_draw_5_5_19  SetFunction
3624
3625 Syntax:       
3626 ~~~~~
3627 SetFunction dfname entry ID failure 
3628 ~~~~~
3629
3630 Finds or creates a *Function* attribute at *entry* label with driver ID and *failure* index. 
3631
3632 **Example:** 
3633 ~~~~~
3634 set ID "c73bd076-22ee-11d2-acde-080009dc4422" 
3635 SetFunction D 0:2 ${ID} 1 
3636 ~~~~~
3637
3638 @subsubsection occt_draw_5_5_20  GetFunction
3639
3640 Syntax:       
3641 ~~~~~
3642 GetFunction dfname entry ID failure 
3643 ~~~~~
3644
3645 Finds a Function attribute at *entry* label and sets driver ID to *ID* variable and failure index to *failure* variable. 
3646
3647 **Example:** 
3648 ~~~~~
3649 GetFunction D 0:2 ID failure 
3650 ~~~~~
3651
3652 @subsubsection occt_draw_5_5_21  NewShape
3653
3654 Syntax:       
3655 ~~~~~
3656 NewShape dfname entry [shape] 
3657 ~~~~~
3658
3659 Finds or creates a Shape attribute at *entry* label. Creates or updates the associated *NamedShape* attribute by *shape* if *shape* is defined. 
3660
3661 **Example:** 
3662 ~~~~~
3663 box b 10 10 10 
3664 NewShape D 0:2 b 
3665 ~~~~~
3666
3667 @subsubsection occt_draw_5_5_22  SetShape
3668
3669 Syntax:       
3670 ~~~~~
3671 SetShape dfname entry shape 
3672 ~~~~~
3673
3674 Creates or updates a *NamedShape* attribute at *entry* label by *shape*. 
3675
3676 **Example:** 
3677 ~~~~~
3678 box b 10 10 10 
3679 SetShape D 0:2 b 
3680 ~~~~~
3681
3682 @subsubsection occt_draw_5_5_23  GetShape
3683
3684 Syntax:       
3685 ~~~~~
3686 GetShape2 dfname entry shape 
3687 ~~~~~
3688
3689 Sets a shape from NamedShape attribute associated with *entry* label to *shape* draw variable. 
3690
3691 **Example:** 
3692 ~~~~~
3693 GetShape2 D 0:2 b 
3694 ~~~~~
3695
3696 @subsection occt_draw_5_6  Geometric attributes commands
3697
3698
3699 @subsubsection occt_draw_5_6_1  SetPoint
3700
3701 Syntax:       
3702 ~~~~~
3703 SetPoint dfname entry point
3704 ~~~~~ 
3705
3706 Finds or creates a Point attribute at *entry* label and sets *point* as generated in the associated *NamedShape* attribute. 
3707
3708 **Example:** 
3709 ~~~~~
3710 point p 10 10 10 
3711 SetPoint D 0:2 p 
3712 ~~~~~
3713
3714 @subsubsection occt_draw_5_6_2  GetPoint
3715
3716 Syntax:       
3717 ~~~~~
3718 GetPoint dfname entry [drawname] 
3719 ~~~~~
3720
3721 Gets a vertex from *NamedShape* attribute at *entry* label and sets it to *drawname* variable, if it is defined. 
3722
3723 **Example:** 
3724 ~~~~~
3725 GetPoint D 0:2 p 
3726 ~~~~~
3727
3728 @subsubsection occt_draw_5_6_3  SetAxis
3729
3730 Syntax:       
3731 ~~~~~
3732 SetAxis dfname entry axis 
3733 ~~~~~
3734
3735 Finds or creates an Axis attribute at *entry* label and sets *axis* as generated in the associated *NamedShape* attribute. 
3736
3737 **Example:** 
3738 ~~~~~
3739 line l 10 20 30 100 200 300 
3740 SetAxis D 0:2 l 
3741 ~~~~~
3742
3743 @subsubsection occt_draw_5_6_4  GetAxis
3744
3745 Syntax:       
3746 ~~~~~
3747 GetAxis dfname entry [drawname] 
3748 ~~~~~
3749
3750 Gets a line from *NamedShape* attribute at *entry* label and sets it to *drawname* variable, if it is defined. 
3751
3752 **Example:** 
3753 ~~~~~
3754 GetAxis D 0:2 l 
3755 ~~~~~
3756
3757 @subsubsection occt_draw_5_6_5  SetPlane
3758
3759 Syntax:       
3760 ~~~~~
3761 SetPlane dfname entry plane 
3762 ~~~~~
3763
3764 Finds or creates a Plane attribute at *entry* label and sets *plane* as generated in the associated *NamedShape* attribute. 
3765
3766 **Example:** 
3767 ~~~~~
3768 plane pl 10 20 30 –1 0 0 
3769 SetPlane D 0:2 pl 
3770 ~~~~~
3771
3772 @subsubsection occt_draw_5_6_6  GetPlane
3773
3774 Syntax:       
3775 ~~~~~
3776 GetPlane dfname entry [drawname] 
3777 ~~~~~
3778
3779 Gets a plane from *NamedShape* attribute at *entry* label and sets it to *drawname* variable, if it is defined. 
3780
3781 **Example:** 
3782 ~~~~~
3783 GetPlane D 0:2 pl 
3784 ~~~~~
3785
3786 @subsubsection occt_draw_5_6_7  SetGeometry
3787
3788 Syntax:       
3789 ~~~~~
3790 SetGeometry dfname entry [type] [shape] 
3791 ~~~~~
3792
3793 Creates a Geometry attribute at *entry* label and sets *type* and *shape* as generated in the associated *NamedShape* attribute if they are defined. *type* must be one of the following: *any, pnt, lin, cir, ell, spl, pln, cyl*. 
3794
3795 **Example:** 
3796 ~~~~~
3797 point p 10 10 10 
3798 SetGeometry D 0:2 pnt p 
3799 ~~~~~
3800
3801 @subsubsection occt_draw_5_6_8  GetGeometryType
3802
3803 Syntax:       
3804 ~~~~~
3805 GetGeometryType dfname entry
3806 ~~~~~ 
3807
3808 Gets a geometry type from Geometry attribute at *entry* label. 
3809
3810 **Example:** 
3811 ~~~~~
3812 GetGeometryType D 0:2 
3813 ~~~~~
3814
3815 @subsubsection occt_draw_5_6_9  SetConstraint
3816
3817 Syntax:       
3818 ~~~~~
3819 SetConstraint dfname entry keyword geometrie [geometrie …] 
3820 SetConstraint dfname entry "plane" geometrie 
3821 SetConstraint dfname entry "value" value
3822 ~~~~~  
3823
3824 1. Creates a Constraint attribute at *entry* label and sets *keyword* constraint between geometry(ies). 
3825 *keyword* must be one of the following: 
3826 *rad, dia, minr, majr, tan, par, perp, concentric, equal, dist, angle, eqrad, symm, midp, eqdist, fix, rigid,* or *from, axis, mate, alignf, aligna, axesa, facesa, round, offset* 
3827 2. Sets plane for the existing constraint. 
3828 3. Sets value for the existing constraint. 
3829
3830 **Example:** 
3831 ~~~~~
3832 SetConstraint D 0:2 "value" 5 
3833 ~~~~~
3834
3835 @subsubsection occt_draw_5_6_10  GetConstraint
3836
3837 Syntax:       
3838 ~~~~~
3839 GetConstraint dfname entry
3840 ~~~~~ 
3841
3842 Dumps a Constraint attribute at *entry* label 
3843
3844 **Example:** 
3845 ~~~~~
3846 GetConstraint D 0:2 
3847 ~~~~~
3848
3849 @subsubsection occt_draw_5_6_11  SetVariable
3850
3851 Syntax:       
3852 ~~~~~
3853 SetVariable dfname entry isconstant(0/1) units 
3854 ~~~~~
3855
3856 Creates a Variable attribute at *entry* label and sets *isconstant* flag and *units* as a string. 
3857
3858 **Example:** 
3859 ~~~~~
3860 SetVariable D 0:2 1 "mm" 
3861 ~~~~~
3862
3863 @subsubsection occt_draw_5_6_12  GetVariable
3864
3865 Syntax:       
3866 ~~~~~
3867 GetVariable dfname entry isconstant units 
3868 ~~~~~
3869
3870 Gets an *isconstant* flag and units of a Variable attribute at *entry* label. 
3871
3872 **Example:** 
3873 ~~~~~
3874 GetVariable D 0:2 isconstant units 
3875 puts "IsConstant=${isconstant}" 
3876 puts "Units=${units}" 
3877 ~~~~~
3878
3879 @subsection occt_draw_5_7  Tree attributes commands
3880
3881
3882 @subsubsection occt_draw_5_7_1  RootNode
3883
3884 Syntax:       
3885 ~~~~~
3886 RootNode dfname treenodeentry [ID]
3887 ~~~~~ 
3888
3889 Returns the ultimate father of *TreeNode* attribute identified by its *treenodeentry* and its *ID* (or default ID, if *ID* is not defined). 
3890
3891
3892 @subsubsection occt_draw_5_7_2  SetNode
3893
3894 Syntax:       
3895 ~~~~~
3896 SetNode dfname treenodeentry [ID]
3897 ~~~~~ 
3898
3899 Creates a *TreeNode* attribute on the *treenodeentry* label with its tree *ID* (or assigns a default ID, if the *ID* is not defined). 
3900
3901
3902 @subsubsection occt_draw_5_7_3  AppendNode
3903
3904 Syntax:       
3905 ~~~~~
3906 AppendNode dfname fatherentry childentry [fatherID]
3907 ~~~~~ 
3908
3909
3910 Inserts a *TreeNode* attribute with its tree *fatherID* (or default ID, if *fatherID* is not defined) on *childentry* as last child of *fatherentry*. 
3911
3912
3913
3914
3915 @subsubsection occt_draw_5_7_4  PrependNode
3916
3917 Syntax:       
3918 ~~~~~
3919 PrependNode dfname fatherentry childentry [fatherID]
3920 ~~~~~ 
3921
3922
3923 Inserts a *TreeNode* attribute with its tree *fatherID* (or default ID, if *fatherID* is not defined) on *childentry* as first child of *fatherentry*. 
3924
3925
3926 @subsubsection occt_draw_5_7_5  InsertNodeBefore
3927
3928 Syntax:       
3929 ~~~~~
3930 InsertNodeBefore dfname treenodeentry beforetreenode [ID]
3931 ~~~~~ 
3932
3933 Inserts a *TreeNode* attribute with tree *ID* (or default ID, if *ID* is not defined) *beforetreenode* before *treenodeentry*. 
3934
3935
3936 @subsubsection occt_draw_5_7_6  InsertNodeAfter
3937
3938 Syntax:       
3939 ~~~~~
3940 InsertNodeAfter dfname treenodeentry aftertreenode [ID]
3941 ~~~~~ 
3942
3943 Inserts a *TreeNode* attribute with tree *ID* (or default ID, if *ID* is not defined) *aftertreenode* after *treenodeentry*. 
3944
3945
3946 @subsubsection occt_draw_5_7_7  DetachNode
3947
3948 Syntax:       
3949 ~~~~~
3950 DetachNode dfname treenodeentry [ID]
3951 ~~~~~ 
3952
3953 Removes a *TreeNode* attribute with tree *ID* (or default ID, if *ID* is not defined) from *treenodeentry*. 
3954
3955
3956 @subsubsection occt_draw_5_7_8  ChildNodeIterate
3957
3958 Syntax:       
3959 ~~~~~
3960 ChildNodeIterate dfname treenodeentry alllevels(0/1) [ID]
3961 ~~~~~ 
3962
3963
3964 Iterates on the tree of *TreeNode* attributes with tree *ID* (or default ID, if *ID* is not defined). If *alllevels* is set to *1* it explores not only the first, but all the sub Step levels.
3965  
3966 **Example:** 
3967 ~~~~~
3968 Label D 0:2 
3969 Label D 0:3 
3970 Label D 0:4 
3971 Label D 0:5 
3972 Label D 0:6 
3973 Label D 0:7 
3974 Label D 0:8 
3975 Label D 0:9 
3976
3977 # Set root node 
3978 SetNode D 0:2 
3979
3980 AppendNode D 0:2 0:4 
3981 AppendNode D 0:2 0:5 
3982 PrependNode D 0:4 0:3 
3983 PrependNode D 0:4 0:8 
3984 PrependNode D 0:4 0:9 
3985
3986 InsertNodeBefore D 0:5 0:6 
3987 InsertNodeAfter D 0:4 0:7 
3988
3989 DetachNode D 0:8 
3990
3991
3992 # List all levels 
3993 ChildNodeIterate D 0:2 1 
3994
3995 ==0:4 
3996 ==0:9 
3997 ==0:3 
3998 ==0:7 
3999 ==0:6 
4000 ==0:5 
4001
4002
4003 # List only first levels 
4004 ChildNodeIterate D 0:2 1 
4005
4006 ==0:4 
4007 ==0:7 
4008 ==0:6 
4009 ==0:5 
4010 ~~~~~
4011
4012 @subsubsection occt_draw_5_7_9  InitChildNodeIterator
4013
4014 Syntax:       
4015 ~~~~~
4016 InitChildNodeIterator dfname treenodeentry alllevels(0/1) [ID]
4017 ~~~~~ 
4018
4019
4020 Initializes the iteration on the tree of *TreeNode* attributes with tree *ID* (or default ID, if *ID* is not defined). If *alllevels* is set to *1* it explores not only the first, but also all sub Step levels. 
4021
4022 **Example:** 
4023 ~~~~~
4024 InitChildNodeIterate D 0:5 1 
4025 set aChildNumber 0 
4026 for {set i 1} {$i  100} {incr i} { 
4027     if {[ChildNodeMore] == *TRUE*} { 
4028         puts *Tree node = [ChildNodeValue]* 
4029         incr aChildNumber 
4030         ChildNodeNext 
4031     } 
4032
4033 puts "aChildNumber=$aChildNumber"
4034 ~~~~~ 
4035
4036 @subsubsection occt_draw_5_7_10  ChildNodeMore
4037
4038 Syntax:       
4039 ~~~~~
4040 ChildNodeMore
4041 ~~~~~ 
4042
4043 Returns TRUE if there is a current item in the iteration. 
4044
4045
4046 @subsubsection occt_draw_5_7_11  ChildNodeNext
4047
4048 Syntax:       
4049 ~~~~~
4050 ChildNodeNext
4051 ~~~~~ 
4052
4053 Moves to the next Item. 
4054
4055
4056 @subsubsection occt_draw_5_7_12  ChildNodeValue
4057
4058 Syntax:       
4059 ~~~~~
4060 ChildNodeValue
4061 ~~~~~ 
4062
4063 Returns the current treenode of *ChildNodeIterator*. 
4064
4065
4066 @subsubsection occt_draw_5_7_13  ChildNodeNextBrother
4067
4068 Syntax:       
4069 ~~~~~
4070 ChildNodeNextBrother
4071 ~~~~~ 
4072
4073 Moves to the next *Brother*. If there is none, goes up. This method is interesting only with *allLevels* behavior. 
4074
4075
4076 @subsection occt_draw_5_8   Standard presentation commands
4077
4078
4079 @subsubsection occt_draw_5_8_1  AISInitViewer
4080
4081 Syntax:       
4082 ~~~~~
4083 AISInitViewer docname
4084 ~~~~~ 
4085
4086 Creates and sets *AISViewer* attribute at root label, creates AIS viewer window. 
4087
4088 **Example:** 
4089 ~~~~~
4090 AISInitViewer D 
4091 ~~~~~
4092
4093 @subsubsection occt_draw_5_8_2  AISRepaint
4094
4095 Syntax:       
4096 ~~~~~
4097 AISRepaint docname 
4098 ~~~~~
4099
4100 Updates the AIS viewer window. 
4101
4102 **Example:** 
4103 ~~~~~
4104 AISRepaint D 
4105 ~~~~~
4106
4107 @subsubsection occt_draw_5_8_3  AISDisplay
4108
4109 Syntax:       
4110 ~~~~~
4111 AISDisplay docname entry [not_update] 
4112 ~~~~~
4113
4114 Displays a presantation of *AISobject* from *entry* label in AIS viewer. If *not_update* is not defined then *AISobject* is recomputed and all visualization settings are applied. 
4115
4116 **Example:** 
4117 ~~~~~
4118 AISDisplay D 0:5 
4119 ~~~~~
4120
4121 @subsubsection occt_draw_5_8_4  AISUpdate
4122
4123 Syntax:       
4124 ~~~~~
4125 AISUpdate docname entry 
4126 ~~~~~
4127
4128 Recomputes a presentation of *AISobject* from *entry* label and applies the visualization setting in AIS viewer. 
4129
4130 **Example:** 
4131 ~~~~~
4132 AISUpdate D 0:5 
4133 ~~~~~
4134
4135 @subsubsection occt_draw_5_8_5  AISErase
4136
4137 Syntax:       
4138 ~~~~~
4139 AISErase docname entry 
4140 ~~~~~
4141
4142 Erases *AISobject* of *entry* label in AIS viewer. 
4143
4144 **Example:** 
4145 ~~~~~
4146 AISErase D 0:5 
4147 ~~~~~
4148
4149 @subsubsection occt_draw_5_8_6  AISRemove
4150
4151 Syntax:       
4152 ~~~~~
4153 AISRemove docname entry 
4154 ~~~~~
4155
4156 Erases *AISobject* of *entry* label in AIS viewer, then *AISobject* is removed from *AIS_InteractiveContext*. 
4157
4158 **Example:** 
4159 ~~~~~
4160 AISRemove D 0:5 
4161 ~~~~~
4162
4163 @subsubsection occt_draw_5_8_7  AISSet
4164
4165 Syntax:       
4166 ~~~~~
4167 AISSet docname entry ID 
4168 ~~~~~
4169
4170 Creates *AISPresentation* attribute at *entry* label and sets as driver ID. ID must be one of the following: *A* (*axis*), *C* (*constraint*), *NS* (*namedshape*), *G* (*geometry*), *PL* (*plane*), *PT* (*point*). 
4171
4172 **Example:** 
4173 ~~~~~
4174 AISSet D 0:5 NS 
4175 ~~~~~
4176
4177 @subsubsection occt_draw_5_8_8  AISDriver
4178
4179 Syntax:       
4180 ~~~~~
4181 AISDriver docname entry [ID] 
4182 ~~~~~
4183
4184 Returns DriverGUID stored in *AISPresentation* attribute of an *entry* label or sets a new one. ID must be one of the following: *A* (*axis*), *C* (*constraint*), *NS* (*namedshape*), *G* (*geometry*), *PL* (*plane*), *PT* (*point*). 
4185
4186 **Example:** 
4187 ~~~~~
4188 # Get Driver GUID 
4189 AISDriver D 0:5 
4190 ~~~~~
4191
4192 @subsubsection occt_draw_5_8_9  AISUnset
4193
4194 Syntax:       
4195 ~~~~~
4196 AISUnset docname entry 
4197 ~~~~~
4198
4199 Deletes *AISPresentation* attribute (if it exists) of an *entry* label. 
4200
4201 **Example:** 
4202 ~~~~~
4203 AISUnset D 0:5 
4204 ~~~~~
4205
4206 @subsubsection occt_draw_5_8_10  AISTransparency
4207
4208 Syntax:       
4209 ~~~~~
4210 AISTransparency docname entry [transparency] 
4211 ~~~~~
4212
4213 Sets (if *transparency* is defined) or gets the value of transparency for *AISPresentation* attribute of an *entry* label. 
4214
4215 **Example:** 
4216 ~~~~~
4217 AISTransparency D 0:5 0.5 
4218 ~~~~~
4219
4220 @subsubsection occt_draw_5_8_11  AISHasOwnTransparency
4221
4222 Syntax:       
4223 ~~~~~
4224 AISHasOwnTransparency docname entry 
4225 ~~~~~
4226
4227 Tests *AISPresentation* attribute of an *entry* label by own transparency. 
4228
4229 **Example:** 
4230 ~~~~~
4231 AISHasOwnTransparency D 0:5 
4232 ~~~~~
4233
4234 @subsubsection occt_draw_5_8_12  AISMaterial
4235
4236 Syntax:       
4237 ~~~~~
4238 AISMaterial docname entry [material] 
4239 ~~~~~
4240
4241 Sets (if *material* is defined) or gets the value of transparency for *AISPresentation* attribute of an *entry* label. *material* is integer from 0 to 20 (see @ref occt_draw_4_5_6 "meshmat" command). 
4242
4243 **Example:** 
4244 ~~~~~
4245 AISMaterial D 0:5 5 
4246 ~~~~~
4247
4248 @subsubsection occt_draw_5_8_13  AISHasOwnMaterial
4249
4250 Syntax:       
4251 ~~~~~
4252 AISHasOwnMaterial docname entry 
4253 ~~~~~
4254
4255 Tests *AISPresentation* attribute of an *entry* label by own material. 
4256
4257 **Example:** 
4258 ~~~~~
4259 AISHasOwnMaterial D 0:5 
4260 ~~~~~
4261
4262 @subsubsection occt_draw_5_8_14  AISColor
4263
4264 Syntax:       
4265 ~~~~~
4266 AISColor docname entry [color] 
4267 ~~~~~
4268
4269 Sets (if *color* is defined) or gets value of color for *AISPresentation* attribute of an *entry* label. *color* is integer from 0 to 516 (see color names in *vsetcolor*). 
4270
4271 **Example:** 
4272 ~~~~~
4273 AISColor D 0:5 25 
4274 ~~~~~
4275
4276 @subsubsection occt_draw_5_8_15  AISHasOwnColor
4277
4278 Syntax:       
4279 ~~~~~
4280 AISHasOwnColor docname entry 
4281 ~~~~~
4282
4283 Tests *AISPresentation* attribute of an *entry* label by own color. 
4284
4285 **Example:** 
4286 ~~~~~
4287 AISHasOwnColor D 0:5 
4288 ~~~~~
4289
4290 @section occt_draw_6 Geometry commands
4291
4292 @subsection occt_draw_6_1 Overview
4293
4294 Draw provides a set of commands to test geometry libraries. These commands are found in the TGEOMETRY executable, or in any Draw executable which includes *GeometryTest* commands. 
4295
4296 In the context of Geometry, Draw includes the following types of variable: 
4297
4298   * 2d and 3d points
4299   * The 2d curve, which corresponds to *Curve* in *Geom2d*.
4300   * The 3d curve and surface, which correspond to *Curve* and *Surface* in <a href="user_guides__modeling_data.html#occt_modat_1">Geom package</a>.
4301   
4302 Draw geometric variables never share data; the *copy* command will always make a complete copy of the content of the variable. 
4303
4304 The following topics are covered in the nine sections of this chapter: 
4305
4306   * **Curve creation** deals with the various types of curves and how to create them.
4307   * **Surface creation** deals with the different types of surfaces and how to create them.
4308   * **Curve and surface modification** deals with the commands used to modify the definition of curves and surfaces, most of which concern modifications to bezier and bspline curves.
4309   * **Geometric transformations** covers translation, rotation, mirror image and point scaling transformations.
4310   * **Curve and Surface Analysis** deals with the commands used to compute points, derivatives and curvatures.
4311   * **Intersections** presents intersections of surfaces and curves.
4312   * **Approximations** deals with creating curves and surfaces from a set of points.
4313   * **Constraints** concerns construction of 2d circles and lines by constraints such as tangency.
4314   * **Display** describes commands to control the display of curves and surfaces.
4315
4316 Where possible, the commands have been made broad in application, i.e. they apply to 2d curves, 3d curves and surfaces. For instance, the *circle* command may create a 2d or a 3d circle depending on the number of arguments given. 
4317
4318 Likewise, the *translate* command will process points, curves or surfaces, depending on argument type. You may not always find the specific command you are looking for in the section where you expect it to be. In that case, look in another section. The *trim* command, for example, is described in the surface section. It can, nonetheless, be used with curves as well. 
4319
4320 @subsection occt_draw_6_2  Curve creation
4321
4322 This section deals with both points and curves. Types of curves are: 
4323
4324   * Analytical curves such as lines, circles, ellipses, parabolas, and hyperbolas.
4325   * Polar curves such as bezier curves and bspline curves.
4326   * Trimmed curves and offset curves made from other curves with the *trim* and *offset* commands. Because they are used on both curves and surfaces, the *trim* and *offset* commands are described in the *surface creation* section.
4327   * NURBS can be created from other curves using *convert* in the *Surface Creation* section.
4328   * Curves can be created from the isoparametric lines of surfaces by the *uiso* and *viso* commands.
4329   * 3d curves can be created from 2d curves and vice versa using the *to3d* and *to2d* commands. The *project* command computes a 2d curve on a 3d surface.
4330
4331 Curves are displayed with an arrow showing the last parameter. 
4332
4333
4334 @subsubsection occt_draw_6_2_1 point
4335
4336 Syntax:      
4337 ~~~~~
4338 point name x y [z] 
4339 ~~~~~
4340   
4341 Creates a 2d or 3d point, depending on the number of arguments. 
4342
4343 **Example:**
4344 ~~~~~
4345 # 2d point 
4346 point p1 1 2 
4347
4348 # 3d point 
4349 point p2 10 20 -5 
4350 ~~~~~
4351   
4352 @subsubsection occt_draw_6_2_2  line
4353
4354 Syntax:      
4355 ~~~~~
4356 line name x y [z] dx dy [dz]
4357 ~~~~~ 
4358
4359   
4360 Creates a 2d or 3d line. *x y z* are the coordinates of the line’s point of origin; *dx, dy, dz* give the direction vector. 
4361
4362 A 2d line will be represented as *x y dx dy*, and a 3d line as *x y z dx dy dz* . A line is parameterized along its length starting from the point of origin along the direction vector. The direction vector is normalized and must not be null. Lines are infinite, even though their representation is not. 
4363
4364 **Example:** 
4365 ~~~~~
4366 # a 2d line at 45 degrees of the X axis 
4367 line l 2 0 1 1 
4368
4369 # a 3d line through the point 10 0 0 and parallel to Z 
4370 line l 10 0 0 0 0 1 
4371 ~~~~~
4372
4373 @subsubsection occt_draw_6_2_3  circle
4374
4375 Syntax:      
4376 ~~~~~
4377 circle name x y [z [dx dy dz]] [ux uy [uz]] radius
4378 ~~~~~ 
4379
4380 Creates a 2d or a 3d circle. 
4381
4382 In 2d, *x, y* are the coordinates of the center and *ux, uy* define the vector towards the point of origin of the parameters. By default, this direction is (1,0). The X Axis of the local coordinate system defines the origin of the parameters of the circle. Use another vector than the x axis to change the origin of parameters. 
4383
4384 In 3d, *x, y, z* are the coordinates of the center; *dx, dy, dz* give the vector normal to the plane of the circle. By default, this vector is (0,0,1) i.e. the Z axis (it must not be null). *ux, uy, uz* is the direction of the origin; if not given, a default direction will be computed. This vector must neither be null nor parallel to *dx, dy, dz*. 
4385
4386 The circle is parameterized by the angle in [0,2*pi] starting from the origin and. Note that the specification of origin direction and plane is the same for all analytical curves and surfaces. 
4387
4388 **Example:** 
4389 ~~~~~
4390 # A 2d circle of radius 5 centered at 10,-2 
4391 circle c1 10 -2 5 
4392
4393 # another 2d circle with a user defined origin 
4394 # the point of parameter 0 on this circle will be 
4395 # 1+sqrt(2),1+sqrt(2) 
4396 circle c2 1 1 1 1 2 
4397
4398 # a 3d circle, center 10 20 -5, axis Z, radius 17 
4399 circle c3 10 20 -5 17 
4400
4401 # same 3d circle with axis Y 
4402 circle c4 10 20 -5 0 1 0 17 
4403
4404 # full 3d circle, axis X, origin on Z 
4405 circle c5 10 20 -5 1 0 0 0 0 1 17 
4406 ~~~~~
4407
4408 @subsubsection occt_draw_6_2_4  ellipse
4409
4410 Syntax: 
4411 ~~~~~
4412 ellipse name x y [z [dx dy dz]] [ux uy [uz]] firstradius secondradius 
4413 ~~~~~
4414
4415 Creates a 2d or 3d ellipse. In a 2d ellipse, the first two arguments define the center; in a 3d ellipse, the first three. The axis system is given by *firstradius*, the major radius, and *secondradius*, the minor radius. The parameter range of the ellipse is [0,2.*pi] starting from the X axis and going towards the Y axis. The Draw ellipse is parameterized by an angle: 
4416
4417 ~~~~~
4418 P(u) = O + firstradius*cos(u)*Xdir + secondradius*sin(u)*Ydir 
4419 ~~~~~
4420 where: 
4421
4422   * P is the point of parameter *u*,
4423   * *O, Xdir* and *Ydir* are respectively the origin, *X Direction* and *Y Direction* of its local coordinate system.
4424  
4425 **Example:**
4426 ~~~~~
4427 # default 2d ellipse 
4428 ellipse e1 10 5 20 10 
4429
4430 # 2d ellipse at angle 60 degree 
4431 ellipse e2 0 0 1 2 30 5 
4432
4433 # 3d ellipse, in the XY plane 
4434 ellipse e3 0 0 0 25 5 
4435
4436 # 3d ellipse in the X,Z plane with axis 1, 0 ,1 
4437 ellipse e4 0 0 0 0 1 0 1 0 1 25 5 
4438 ~~~~~
4439
4440 @subsubsection occt_draw_6_2_5  hyperbola
4441
4442 Syntax:      
4443 ~~~~~
4444 hyperbola name x y [z [dx dy dz]] [ux uy [uz]] firstradius secondradius
4445 ~~~~~ 
4446
4447 Creates a 2d or 3d conic. The first arguments define the center. The axis system is given by *firstradius*, the major radius, and *secondradius*, the minor radius. Note that the hyperbola has only one branch, that in the X direction. 
4448
4449 The Draw hyperbola is parameterized as follows: 
4450 ~~~~~
4451 P(U) = O + firstradius*Cosh(U)*XDir + secondradius*Sinh(U)*YDir 
4452 ~~~~~
4453 where: 
4454
4455   * *P* is the point of parameter *U*,
4456   * *O, XDir* and *YDir* are respectively the origin, *X Direction* and *YDirection* of its local coordinate system. 
4457
4458 **Example:** 
4459 ~~~~~
4460 # default 2d hyperbola, with asymptotes 1,1 -1,1 
4461 hyperbola h1 0 0 30 30 
4462
4463 # 2d hyperbola at angle 60 degrees 
4464 hyperbola h2 0 0 1 2 20 20 
4465
4466 # 3d hyperbola, in the XY plane 
4467 hyperbola h3 0 0 0 50 50 
4468 ~~~~~
4469
4470 @subsubsection occt_draw_6_2_6  parabola
4471
4472 Syntax:      
4473 ~~~~~
4474 parabola name x y [z [dx dy dz]] [ux uy [uz]] FocalLength 
4475 ~~~~~
4476
4477 Creates a 2d or 3d parabola. in the axis system defined by the first arguments. The origin is the apex of the parabola. 
4478
4479 The *Geom_Parabola* is parameterized as follows: 
4480
4481 ~~~~~
4482 P(u) = O + u*u/(4.*F)*XDir + u*YDir 
4483 ~~~~~
4484
4485 where: 
4486   * *P* is the point of parameter *u*,
4487   * *O, XDir* and *YDir* are respectively the origin, *X Direction* and *Y Direction* of its local coordinate system,
4488   * *F* is the focal length of the parabola.
4489
4490 **Example:** 
4491 ~~~~~
4492 # 2d parabola 
4493 parabola p1 0 0 50 
4494
4495 # 2d parabola with convexity +Y 
4496 parabola p2 0 0 0 1 50 
4497
4498 # 3d parabola in the Y-Z plane, convexity +Z 
4499 parabola p3 0 0 0 1 0 0 0 0 1 50 
4500 ~~~~~
4501
4502 @subsubsection occt_draw_6_2_7  beziercurve, 2dbeziercurve
4503
4504 Syntax:      
4505 ~~~~~
4506 beziercurve name nbpole pole, [weight] 
4507 2dbeziercurve name nbpole pole, [weight]
4508 ~~~~~ 
4509
4510 Creates a 3d rational or non-rational Bezier curve. Give the number of poles (control points,) and the coordinates of the poles *(x1 y1 z1 [w1] x2 y2 z2 [w2])*. The degree will be *nbpoles-1*. To create a rational curve, give weights with the poles. You must give weights for all poles or for none. If the weights of all the poles are equal, the curve is polynomial, and therefore non-rational. 
4511
4512 **Example:** 
4513 ~~~~~
4514 # a rational 2d bezier curve (arc of circle) 
4515 2dbeziercurve ci 3 0 0 1 10 0 sqrt(2.)/2. 10 10 1 
4516
4517 # a 3d bezier curve, not rational 
4518 beziercurve cc 4 0 0 0 10 0 0 10 0 10 10 10 10 
4519 ~~~~~
4520
4521 @subsubsection occt_draw_6_2_8  bsplinecurve, 2dbsplinecurve, pbsplinecurve, 2dpbsplinecurve
4522
4523 Syntax:      
4524 ~~~~~
4525 bsplinecurve   name degree nbknots knot, umult pole, weight
4526 2dbsplinecurve name degree nbknots knot, umult pole, weight
4527
4528 pbsplinecurve   name degree nbknots knot, umult pole, weight (periodic)
4529 2dpbsplinecurve name degree nbknots knot, umult pole, weight (periodic)
4530 ~~~~~
4531
4532 Creates 2d or 3d bspline curves; the **pbsplinecurve** and **2dpbsplinecurve** commands create periodic bspline curves. 
4533
4534 A bspline curve is defined by its degree, its periodic or non-periodic nature, a table of knots and a table of poles (i.e. control points). Consequently, specify the degree, the number of knots, and for each knot, the multiplicity, for each pole, the weight. In the syntax above, the commas link the adjacent arguments which they fall between: knot and multiplicities, pole and weight. 
4535
4536 The table of knots is an increasing sequence of reals without repetition. 
4537 Multiplicities must be lower or equal to the degree of the curve. For non-periodic curves, the first and last multiplicities can be equal to degree+1. For a periodic curve, the first and last multiplicities must be equal. 
4538
4539 The poles must be given with their weights, use weights of 1 for a non rational curve, the number of poles must be: 
4540
4541   * For a non periodic curve: Sum of multiplicities - degree + 1
4542   * For a periodic curve: Sum of multiplicities - last multiplicity
4543
4544 **Example:** 
4545 ~~~~~
4546 # a bspline curve with 4 poles and 3 knots 
4547 bsplinecurve bc 2 3 0 3 1 1 2 3 \ 
4548 10 0 7 1 7 0 7 1 3 0 8 1 0 0 7 1 
4549 # a 2d periodic circle (parameter from 0 to 2*pi !!) 
4550 dset h sqrt(3)/2 
4551 2dpbsplinecurve c 2 \ 
4552 4 0 2 pi/1.5 2 pi/0.75 2 2*pi 2 \ 
4553 0 -h/3 1 \ 
4554 0.5 -h/3 0.5 \ 
4555 0.25 h/6 1 \ 
4556 0 2*h/3 0.5 \ 
4557 -0.25 h/6 1 \ 
4558 -0.5 -h/3 0.5 \ 
4559 0 -h/3 1 
4560 ~~~~~
4561
4562 **Note** that you can create the **NURBS** subset of bspline curves and surfaces by trimming analytical curves and surfaces and executing the command *convert*. 
4563
4564
4565 @subsubsection occt_draw_6_2_9  uiso, viso
4566
4567 Syntax:      
4568 ~~~~~
4569 uiso name surface u 
4570 viso name surface u 
4571 ~~~~~
4572
4573 Creates a U or V isoparametric curve from a surface. 
4574
4575 **Example:** 
4576 ~~~~~
4577 # create a cylinder and extract iso curves 
4578
4579 cylinder c 10 
4580 uiso c1 c pi/6 
4581 viso c2 c 
4582 ~~~~~
4583
4584 **Note** that this cannot be done from offset surfaces.
4585
4586
4587 @subsubsection occt_draw_6_2_10  to3d, to2d
4588
4589 Syntax:      
4590 ~~~~~
4591 to3d name curve2d [plane] 
4592 to2d name curve3d [plane] 
4593 ~~~~~
4594
4595 Create respectively a 3d curve from a 2d curve and a 2d curve from a 3d curve. The transformation uses a planar surface to define the XY plane in 3d (by default this plane is the default OXYplane). **to3d** always gives a correct result, but as **to2d** is not a projection, it may surprise you. It is always correct if the curve is planar and parallel to the plane of projection. The points defining the curve are projected on the plane. A circle, however, will remain a circle and will not be changed to an ellipse. 
4596
4597 **Example:** 
4598 ~~~~~
4599 # the following commands 
4600 circle c 0 0 5 
4601 plane p -2 1 0 1 2 3 
4602 to3d c c p 
4603
4604 # will create the same circle as 
4605 circle c -2 1 0 1 2 3 5 
4606 ~~~~~
4607
4608 See also: **project** 
4609
4610
4611 @subsubsection occt_draw_6_2_11  project
4612
4613 Syntax:      
4614 ~~~~~
4615 project name curve3d surface 
4616 ~~~~~
4617
4618 Computes a 2d curve in the parametric space of a surface corresponding to a 3d curve. This can only be used on analytical surfaces. 
4619
4620 If we, for example, intersect a cylinder and a plane and project the resulting ellipse on the cylinder, this will create a 2d sinusoid-like bspline. 
4621
4622 ~~~~~
4623 cylinder c 5 
4624 plane p 0 0 0 0 1 1 
4625 intersect i c p 
4626 project i2d i c 
4627 ~~~~~
4628
4629 @subsection occt_draw_6_3  Surface creation
4630
4631 The following types of surfaces exist: 
4632   * Analytical surfaces: plane, cylinder, cone, sphere, torus;
4633   * Polar surfaces: bezier surfaces, bspline surfaces;
4634   * Trimmed and Offset surfaces;
4635   * Surfaces produced by Revolution and Extrusion, created from curves with the *revsurf* and *extsurf*;
4636   * NURBS surfaces.
4637
4638 Surfaces are displayed with isoparametric lines. To show the parameterization, a small parametric line with a length 1/10 of V is displayed at 1/10 of U. 
4639
4640 @subsubsection occt_draw_6_3_1  plane
4641
4642 Syntax:      
4643 ~~~~~
4644 plane name [x y z [dx dy dz [ux uy uz]]]
4645 ~~~~~ 
4646
4647 Creates an infinite plane. 
4648
4649 A plane is the same as a 3d coordinate system, *x,y,z* is the origin, *dx, dy, dz* is the Z direction and *ux, uy, uz* is the X direction. 
4650
4651 The plane is perpendicular to Z and X is the U parameter. *dx,dy,dz* and *ux,uy,uz* must not be null or collinear. *ux,uy,uz* will be modified to be orthogonal to *dx,dy,dz*. 
4652
4653 There are default values for the coordinate system. If no arguments are given, the global system (0,0,0), (0,0,1), (1,0,0). If only the origin is given, the axes are those given by default(0,0,1), (1,0,0). If the origin and the Z axis are given, the X axis is generated perpendicular to the Z axis. 
4654
4655 Note that this definition will be used for all analytical surfaces. 
4656
4657 **Example:** 
4658 ~~~~~
4659 # a plane through the point 10,0,0 perpendicular to X 
4660 # with U direction on Y 
4661 plane p1 10 0 0 1 0 0 0 1 0 
4662
4663 # an horixontal plane with origin 10, -20, -5 
4664 plane p2 10 -20 -5 
4665 ~~~~~
4666
4667 @subsubsection occt_draw_6_3_2  cylinder
4668
4669 Syntax:      
4670 ~~~~~
4671 cylinder name [x y z [dx dy dz [ux uy uz]]] radius 
4672 ~~~~~
4673
4674 A cylinder is defined by a coordinate system, and a radius. The surface generated is an infinite cylinder with the Z axis as the axis. The U parameter is the angle starting from X going in the Y direction. 
4675
4676 **Example:** 
4677 ~~~~~
4678 # a cylinder on the default Z axis, radius 10 
4679 cylinder c1 10 
4680
4681 # a cylinder, also along the Z axis but with origin 5, 
4682 10, -3 
4683 cylinder c2 5 10 -3 10 
4684
4685 # a cylinder through the origin and on a diagonal 
4686 # with longitude pi/3 and latitude pi/4 (euler angles) 
4687 dset lo pi/3. la pi/4. 
4688 cylinder c3 0 0 0 cos(la)*cos(lo) cos(la)*sin(lo) 
4689 sin(la) 10 
4690 ~~~~~
4691
4692 @subsubsection occt_draw_6_3_3  cone
4693
4694 Syntax:      
4695 ~~~~~
4696 cone name [x y z [dx dy dz [ux uy uz]]] semi-angle radius 
4697 ~~~~~
4698 Creates a cone in the infinite coordinate system along the Z-axis. The radius is that of the circle at the intersection of the cone and the XY plane. The semi-angle is the angle formed by the cone relative to the axis; it should be between –90 and 90. If the radius is 0, the vertex is the origin. 
4699
4700 **Example:** 
4701 ~~~~~
4702 # a cone at 45 degrees at the origin on Z 
4703 cone c1 45 0 
4704
4705 # a cone on axis Z with radius r1 at z1 and r2 at z2 
4706 cone c2 0 0 z1 180.*atan2(r2-r1,z2-z1)/pi r1 
4707 ~~~~~
4708
4709 @subsubsection occt_draw_6_3_4  sphere
4710
4711 Syntax:      
4712 ~~~~~
4713 sphere name [x y z [dx dy dz [ux uy uz]]] radius 
4714 ~~~~~
4715
4716 Creates a sphere in the local coordinate system defined in the **plane** command. The sphere is centered at the origin. 
4717
4718 To parameterize the sphere, *u* is the angle from X to Y, between 0 and 2*pi. *v* is the angle in the half-circle at angle *u* in the plane containing the Z axis. *v* is between -pi/2 and pi/2. The poles are the points Z = +/- radius; their parameters are u,+/-pi/2 for any u in 0,2*pi. 
4719
4720 **Example:**
4721 ~~~~~ 
4722 # a sphere at the origin 
4723 sphere s1 10 
4724 # a sphere at 10 10 10, with poles on the axis 1,1,1 
4725 sphere s2 10 10 10 1 1 1 10 
4726 ~~~~~
4727
4728 @subsubsection occt_draw_6_3_5  torus
4729
4730 Syntax:      
4731 ~~~~~
4732 torus name [x y z [dx dy dz [ux uy uz]]] major minor
4733 ~~~~~ 
4734
4735 Creates a torus in the local coordinate system with the given major and minor radii. *Z* is the axis for the major radius. The major radius may be lower in value than the minor radius. 
4736
4737 To parameterize a torus, *u* is the angle from X to Y; *v* is the angle in the plane at angle *u* from the XY plane to Z. *u* and *v* are in 0,2*pi. 
4738
4739 **Example:** 
4740 ~~~~~
4741 # a torus at the origin 
4742 torus t1 20 5 
4743
4744 # a torus in another coordinate system 
4745 torus t2 10 5 -2 2 1 0 20 5 
4746 ~~~~~
4747
4748
4749 @subsubsection occt_draw_6_3_6  beziersurf
4750
4751 Syntax:      
4752 ~~~~~
4753 beziersurf name nbupoles nbvolpes pole, [weight] 
4754 ~~~~~
4755
4756 Use this command to create a bezier surface, rational or non-rational. First give the numbers of poles in the u and v directions. 
4757
4758 Then give the poles in the following order: *pole(1, 1), pole(nbupoles, 1), pole(1, nbvpoles)* and *pole(nbupoles, nbvpoles)*. 
4759
4760 Weights may be omitted, but if you give one weight you must give all of them. 
4761
4762 **Example:** 
4763 ~~~~~
4764 # a non-rational degree 2,3 surface 
4765 beziersurf s 3 4 \ 
4766 0 0 0 10 0 5 20 0 0 \ 
4767 0 10 2 10 10 3 20 10 2 \ 
4768 0 20 10 10 20 20 20 20 10 \ 
4769 0 30 0 10 30 0 20 30 0 
4770 ~~~~~
4771
4772 @subsubsection occt_draw_6_3_7   bsplinesurf, upbsplinesurf, vpbsplinesurf, uvpbsplinesurf
4773
4774 Syntax:     
4775 ~~~~~
4776 bsplinesurf name udegree nbuknots uknot umult ... nbvknot vknot 
4777 vmult ... x y z w ... 
4778 upbsplinesurf ... 
4779 vpbsplinesurf ... 
4780 uvpbsplinesurf ... 
4781 ~~~~~
4782
4783 * **bsplinesurf** generates bspline surfaces;
4784 * **upbsplinesurf** creates a bspline surface periodic in u; 
4785 * **vpbsplinesurf** creates one periodic in v; 
4786 * **uvpbsplinesurf** creates one periodic in uv. 
4787
4788 The syntax is similar to the *bsplinecurve* command. First give the degree in u and the knots in u with their multiplicities, then do the same in v. The poles follow. The number of poles is the product of the number in u and the number in v. 
4789
4790 See *bsplinecurve* to compute the number of poles, the poles are first given in U as in the *beziersurf* command. You must give weights if the surface is rational. 
4791
4792 **Example:** 
4793 ~~~~~
4794 # create a bspline surface of degree 1 2 
4795 # with two knots in U and three in V 
4796 bsplinesurf s \ 
4797 1 2 0 2 1 2 \ 
4798 2 3 0 3 1 1 2 3 \ 
4799 0 0 0 1 10 0 5 1 \ 
4800 0 10 2 1 10 10 3 1 \ 
4801 0 20 10 1 10 20 20 1 \ 
4802 0 30 0 1 10 30 0 1 
4803 ~~~~~
4804
4805
4806 @subsubsection occt_draw_6_3_8  trim, trimu, trimv
4807
4808 Syntax:      
4809 ~~~~~
4810 trim newname name [u1 u2 [v1 v2]] 
4811 trimu newname name 
4812 trimv newname name 
4813 ~~~~~
4814
4815 The **trim** commands create trimmed curves or trimmed surfaces. Note that trimmed curves and surfaces are classes of the *Geom* package. 
4816 * *trim* creates either a new trimmed curve from a curve or a new trimmed surface in u and v from a surface.
4817 * *trimu* creates a u-trimmed surface, 
4818 * *trimv* creates a v-trimmed surface. 
4819
4820 After an initial trim, a second execution with no parameters given recreates the basis curve. The curves can be either 2d or 3d. If the trimming parameters decrease and if the curve or surface is not periodic, the direction is reversed. 
4821
4822 **Note** that a trimmed curve or surface contains a copy of the basis geometry: modifying that will not modify the trimmed geometry. Trimming trimmed geometry will not create multiple levels of trimming. The basis geometry will be used. 
4823
4824 **Example:** 
4825 ~~~~~
4826 # create a 3d circle 
4827 circle c 0 0 0 10 
4828
4829 # trim it, use the same variable, the original is 
4830 deleted 
4831 trim c c 0 pi/2 
4832
4833 # the original can be recovered! 
4834 trim orc c 
4835
4836 # trim again 
4837 trim c c pi/4 pi/2 
4838
4839 # the original is not the trimmed curve but the basis 
4840 trim orc c 
4841
4842 # as the circle is periodic, the two following commands 
4843 are identical 
4844 trim cc c pi/2 0 
4845 trim cc c pi/2 2*pi 
4846
4847 # trim an infinite cylinder 
4848 cylinder cy 10 
4849 trimv cy cy 0 50 
4850 ~~~~~
4851
4852 @subsubsection occt_draw_6_3_9  offset
4853
4854 Syntax:      
4855 ~~~~~
4856 offset name basename distance [dx dy dz]
4857 ~~~~~ 
4858
4859 Creates offset curves or surfaces at a given distance from a basis curve or surface. Offset curves and surfaces are classes from the *Geom *package. 
4860
4861 The curve can be a 2d or a 3d curve. To compute the offsets for a 3d curve, you must also give a vector *dx,dy,dz*. For a planar curve, this vector is usually the normal to the plane containing the curve. 
4862
4863 The offset curve or surface copies the basic geometry, which can be modified later. 
4864
4865 **Example:** 
4866 ~~~~~
4867 # graphic demonstration that the outline of a torus 
4868 # is the offset of an ellipse 
4869 smallview +X+Y 
4870 dset angle pi/6 
4871 torus t 0 0 0 0 cos(angle) sin(angle) 50 20 
4872 fit 
4873 ellipse e 0 0 0 50 50*sin(angle) 
4874 # note that the distance can be negative 
4875 offset l1 e 20 0 0 1 
4876 ~~~~~
4877
4878 @subsubsection occt_draw_6_3_10  revsurf
4879
4880 Syntax:      
4881 ~~~~~
4882 revsurf name curvename x y z dx dy dz
4883 ~~~~~ 
4884
4885 Creates a surface of revolution from a 3d curve. 
4886
4887 A surface of revolution or revolved surface is obtained by rotating a curve (called the *meridian*) through a complete revolution about an axis (referred to as the *axis of revolution*). The curve and the axis must be in the same plane (the *reference plane* of the surface). Give the point of origin x,y,z and the vector dx,dy,dz to define the axis of revolution. 
4888
4889 To parameterize a surface of revolution: u is the angle of rotation around the axis. Its origin is given by the position of the meridian on the surface. v is the parameter of the meridian. 
4890
4891 **Example:** 
4892 ~~~~~
4893 # another way of creating a torus like surface 
4894 circle c 50 0 0 20 
4895 revsurf s c 0 0 0 0 1 0 
4896 ~~~~~
4897
4898 @subsubsection occt_draw_6_3_11  extsurf
4899
4900 Syntax:      
4901 ~~~~~
4902 extsurf newname curvename dx dy dz 
4903 ~~~~~
4904
4905 Creates a surface of linear extrusion from a 3d curve. The basis curve is swept in a given direction,the *direction of extrusion* defined by a vector. 
4906
4907 In the syntax, *dx,dy,dz* gives the direction of extrusion. 
4908
4909 To parameterize a surface of extrusion: *u* is the parameter along the extruded curve; the *v* parameter is along the direction of extrusion. 
4910
4911 **Example:** 
4912 ~~~~~
4913 # an elliptic cylinder 
4914 ellipse e 0 0 0 10 5 
4915 extsurf s e 0 0 1 
4916 # to make it finite 
4917 trimv s s 0 10 
4918 ~~~~~
4919
4920 @subsubsection occt_draw_6_3_12  convert
4921
4922 Syntax:      
4923 ~~~~~
4924 convert newname name 
4925 ~~~~~
4926
4927 Creates a 2d or 3d NURBS curve or a NURBS surface from any 2d curve, 3d curve or surface. In other words, conics, beziers and bsplines are turned into NURBS. Offsets are not processed.
4928  
4929 **Example:** 
4930 ~~~~~
4931 # turn a 2d arc of a circle into a 2d NURBS 
4932 circle c 0 0 5 
4933 trim c c 0 pi/3 
4934 convert c1 c 
4935
4936 # an easy way to make a planar bspline surface 
4937 plane p 
4938 trim p p -1 1 -1 1 
4939 convert p1 p 
4940 ~~~~~
4941
4942 **Note** that offset curves and surfaces are not processed by this command.
4943
4944 @subsection occt_draw_6_4  Curve and surface modifications
4945
4946 Draw provides commands to modify curves and surfaces, some of them are general, others restricted to bezier curves or bsplines. 
4947
4948 General modifications: 
4949
4950   * Reversing the parametrization: **reverse**, **ureverse**, **vreverse**
4951
4952 Modifications for both bezier curves and bsplines: 
4953
4954   * Exchanging U and V on a surface: **exchuv**
4955   * Segmentation: **segment**, **segsur**
4956   * Increasing the degree: **incdeg**, **incudeg**, **incvdeg**
4957   * Moving poles: **cmovep**, **movep**, **movecolp**, **moverowp**
4958
4959 Modifications for bezier curves: 
4960
4961   * Adding and removing poles: **insertpole**, **rempole**, **remcolpole**, **remrowpole**
4962
4963 Modifications for bspline: 
4964
4965   * Inserting and removing knots: **insertknot**, **remknot**, **insertuknot**, **remuknot**, **insetvknot**, **remvknot**
4966   * Modifying periodic curves and surfaces: **setperiodic**, **setnotperiodic**, **setorigin**, **setuperiodic**, **setunotperiodic**, **setuorigin**, **setvperiodic**, **setvnotperiodic**, **setvorigin**
4967
4968
4969
4970 @subsubsection occt_draw_6_4_1  reverse, ureverse, vreverse
4971
4972
4973 Syntax:            
4974 ~~~~~
4975 reverse curvename 
4976 ureverse surfacename 
4977 vreverse surfacename 
4978 ~~~~~
4979
4980 The **reverse** command reverses the parameterization and inverses the orientation of a 2d or 3d curve. Note that the geometry is modified. To keep the curve or the surface, you must copy it before modification. 
4981
4982 **ureverse** or **vreverse** reverse the u or v parameter of a surface. Note that the new parameters of the curve may change according to the type of curve. For instance, they will change sign on a line or stay 0,1 on a bezier. 
4983
4984 Reversing a parameter on an analytical surface may create an indirect coordinate system. 
4985
4986 **Example:** 
4987 ~~~~~
4988 # reverse a trimmed 2d circle 
4989 circle c 0 0 5 
4990 trim c c pi/4 pi/2 
4991 reverse c 
4992
4993 # dumping c will show that it is now trimmed between 
4994 # 3*pi/2 and 7*pi/4 i.e. 2*pi-pi/2 and 2*pi-pi/4 
4995 ~~~~~
4996
4997 @subsubsection occt_draw_6_4_2  exchuv
4998
4999 Syntax:                 
5000 ~~~~~
5001 exchuv surfacename 
5002 ~~~~~
5003
5004 For a bezier or bspline surface this command exchanges the u and v parameters. 
5005
5006 **Example:** 
5007 ~~~~~
5008 # exchanging u and v on a spline (made from a cylinder) 
5009 cylinder c 5 
5010 trimv c c 0 10 
5011 convert c1 c 
5012 exchuv c1 
5013 ~~~~~
5014
5015 @subsubsection occt_draw_6_4_3  segment, segsur
5016
5017 Syntax:                  
5018 ~~~~~
5019 segment curve Ufirst Ulast 
5020 segsur surface Ufirst Ulast Vfirst Vlast 
5021 ~~~~~
5022
5023 **segment** and **segsur** segment a bezier curve and a bspline curve or surface respectively. 
5024
5025 These commands modify the curve to restrict it between the new parameters: *Ufirst*, the starting point of the modified curve, and *Ulast*, the end point. *Ufirst* is less than *Ulast*. 
5026
5027 This command must not be confused with **trim** which creates a new geometry. 
5028
5029 **Example:** 
5030 ~~~~~
5031 # segment a bezier curve in half 
5032 beziercurve c 3 0 0 0 10 0 0 10 10 0 
5033 segment c ufirst ulast 
5034 ~~~~~
5035
5036 @subsubsection occt_draw_6_4_4  iincudeg, incvdeg
5037
5038 Syntax:      
5039 ~~~~~
5040 incudeg surfacename newdegree 
5041 incvdeg surfacename newdegree 
5042 ~~~~~
5043
5044 **incudeg** and **incvdeg** increase the degree in the U or V parameter of a bezier or bspline surface.
5045  
5046 **Example:** 
5047 ~~~~~
5048 # make a planar bspline and increase the degree to 2 3 
5049 plane p 
5050 trim p p -1 1 -1 1 
5051 convert p1 p 
5052 incudeg p1 2 
5053 incvdeg p1 3 
5054 ~~~~~
5055
5056 **Note** that the geometry is modified.
5057
5058
5059 @subsubsection occt_draw_6_4_5  cmovep, movep, movecolp, moverowp
5060
5061 Syntax:      
5062 ~~~~~
5063 cmovep curve index dx dy [dz] 
5064 movep surface uindex vindex dx dy dz 
5065 movecolp surface uindex dx dy dz 
5066 moverowp surface vindex dx dy dz 
5067 ~~~~~
5068
5069 **move** methods translate poles of a bezier curve, a bspline curve or a bspline surface. 
5070 * **cmovep** and **movep** translate one pole with a given index. 
5071 * **movecolp** and **moverowp** translate a whole column (expressed by the *uindex*) or row (expressed by the *vindex*) of poles. 
5072
5073 **Example:** 
5074 ~~~~~
5075 # start with a plane 
5076 # transform to bspline, raise degree and add relief 
5077 plane p 
5078 trim p p -10 10 -10 10 
5079 convert p1 p 
5080 incud p1 2 
5081 incvd p1 2 
5082 movecolp p1 2 0 0 5 
5083 moverowp p1 2 0 0 5 
5084 movep p1 2 2 0 0 5 
5085 ~~~~~
5086
5087 @subsubsection occt_draw_6_4_6  insertpole, rempole, remcolpole, remrowpole
5088
5089 Syntax:                  
5090 ~~~~~
5091 insertpole curvename index x y [z] [weight] 
5092 rempole curvename index 
5093 remcolpole surfacename index 
5094 remrowpole surfacename index
5095 ~~~~~ 
5096
5097 **insertpole** inserts a new pole into a 2d or 3d bezier curve. You may add a weight for the pole. The default value for the weight is 1. The pole is added at the position after that of the index pole. Use an index 0 to insert the new pole before the first one already existing in your drawing. 
5098
5099 **rempole** removes a pole from a 2d or 3d bezier curve. Leave at least two poles in the curves. 
5100
5101 **remcolpole** and **remrowpole** remove a column or a row of poles from a bezier surface. A column is in the v direction and a row in the u direction The resulting degree must be at least 1; i.e there will be two rows and two columns left. 
5102
5103 **Example:** 
5104 ~~~~~
5105 # start with a segment, insert a pole at end 
5106 # then remove the central pole 
5107 beziercurve c 2 0 0 0 10 0 0 
5108 insertpole c 2 10 10 0 
5109 rempole c 2 
5110 ~~~~~
5111
5112 @subsubsection occt_draw_6_4_7  insertknot, insertuknot, insertvknot
5113
5114 Syntax:                  
5115 ~~~~~
5116 insertknot name knot [mult = 1] [knot mult ...] 
5117 insertuknot surfacename knot mult 
5118 insertvknot surfacename knot mult 
5119 ~~~~~
5120
5121 **insertknot** inserts knots in the knot sequence of a bspline curve. You must give a knot value and a target multiplicity. The default multiplicity is 1. If there is already a knot with the given value and a multiplicity lower than the target one, its multiplicity will be raised. 
5122
5123 **insertuknot** and **insertvknot** insert knots in a surface. 
5124
5125 **Example:** 
5126 ~~~~~
5127 # create a cylindrical surface and insert a knot 
5128 cylinder c 10 
5129 trim c c 0 pi/2 0 10 
5130 convert c1 c 
5131 insertuknot c1 pi/4 1 
5132 ~~~~~
5133
5134 @subsubsection occt_draw_6_4_8  remknot, remuknot, remvknot
5135
5136 Syntax:      
5137 ~~~~~
5138 remknot index [mult] [tol] 
5139 remuknot index [mult] [tol] 
5140 remvknot index [mult] [tol] 
5141 ~~~~~
5142
5143 **remknot** removes a knot from the knot sequence of a curve or a surface. Give the index of the knot and optionally, the target multiplicity. If the target multiplicity is not 0, the multiplicity of the knot will be lowered. As the curve may be modified, you are allowed to set a tolerance to control the process. If the tolerance is low, the knot will only be removed if the curve will not be modified. 
5144
5145 By default, if no tolerance is given, the knot will always be removed. 
5146
5147 **Example:** 
5148 ~~~~~
5149 # bspline circle, remove a knot 
5150 circle c 0 0 5 
5151 convert c1 c 
5152 incd c1 5 
5153 remknot c1 2 
5154 ~~~~~
5155
5156 **Note** that Curves or Surfaces may be modified.
5157
5158
5159 @subsubsection occt_draw_6_4_9  setperiodic, setnotperiodic, setuperiodic, setunotperiodic, setvperiodic, setvnotperiodic
5160
5161 Syntax:      
5162 ~~~~~
5163 setperiodic curve 
5164 setnotperiodic curve 
5165 setuperiodic surface 
5166 setunotperiodic surface 
5167 setvperiodic surface 
5168 setvnotperiodic surface
5169 ~~~~~ 
5170
5171 **setperiodic** turns a bspline curve into a periodic bspline curve; the knot vector stays the same and excess poles are truncated. The curve may be modified if it has not been closed. **setnotperiodic** removes the periodicity of a periodic curve. The pole table mau be modified. Note that knots are added at the beginning and the end of the knot vector and the multiplicities are knots set to degree+1 at the start and the end. 
5172
5173 **setuperiodic** and **setvperiodic** make the u or the v parameter of bspline surfaces periodic; **setunotperiodic**, and **setvnotperiodic** remove periodicity from the u or the v parameter of bspline surfaces. 
5174
5175 **Example:** 
5176 ~~~~~
5177 # a circle deperiodicized 
5178 circle c 0 0 5 
5179 convert c1 c 
5180 setnotperiodic c1 
5181 ~~~~~
5182
5183 @subsubsection occt_draw_6_4_10  setorigin, setuorigin, setvorigin
5184
5185 Syntax:      
5186 ~~~~~
5187 setorigin curvename index 
5188 setuorigin surfacename index 
5189 setuorigin surfacename index 
5190 ~~~~~
5191
5192 These commands change the origin of the parameters on periodic curves or surfaces. The new origin must be an existing knot. To set an origin other than an existing knot, you must first insert one with the *insertknot* command. 
5193
5194 **Example:** 
5195 ~~~~~
5196 # a torus with new U and V origins 
5197 torus t 20 5 
5198 convert t1 t 
5199 setuorigin t1 2 
5200 setvorigin t1 2
5201 ~~~~~ 
5202
5203
5204 @subsection occt_draw_6_5  Transformations
5205
5206 Draw provides commands to apply linear transformations to geometric objects: they include translation, rotation, mirroring and scaling. 
5207
5208 @subsubsection occt_draw_6_5_1  translate, dtranslate
5209
5210 Syntax:                  
5211 ~~~~~
5212 translate name [names ...] dx dy dz 
5213 2dtranslate name [names ...] dx dy 
5214 ~~~~~
5215
5216 The **Translate** command translates 3d points, curves and surfaces along a vector *dx,dy,dz*. You can translate more than one object with the same command. 
5217
5218 For 2d points or curves, use the **2dtranslate** command. 
5219
5220 **Example:** 
5221 ~~~~~
5222 # 3d tranlation 
5223 point p 10 20 30 
5224 circle c 10 20 30 5 
5225 torus t 10 20 30 5 2 
5226 translate p c t 0 0 15
5227 ~~~~~
5228  
5229 *NOTE* 
5230 *Objects are modified by this command.* 
5231
5232 @subsubsection occt_draw_6_5_2  rotate, 2drotate
5233
5234 Syntax:      
5235 ~~~~~
5236 rotate name [name ...] x y z dx dy dz angle 
5237 2drotate name [name ...] x y angle
5238 ~~~~~ 
5239
5240 The **rotate** command rotates a 3d point curve or surface. You must give an axis of rotation with a point *x,y,z*, a vector *dx,dy,dz* and an angle in degrees. 
5241
5242 For a 2d rotation, you need only give the center point and the angle. In 2d or 3d, the angle can be negative. 
5243
5244 **Example:** 
5245 ~~~~~
5246 # make a helix of circles. create a scripte file with 
5247 this code and execute it using **source**. 
5248 circle c0 10 0 0 3 
5249 for {set i 1} {$i = 10} {incr i} { 
5250 copy c[expr $i-1] c$i 
5251 translate c$i 0 0 3 
5252 rotate c$i 0 0 0 0 0 1 36 
5253
5254 ~~~~~
5255
5256 @subsubsection occt_draw_6_5_3  pmirror, lmirror, smirror, dpmirror, dlmirror
5257
5258 Syntax:      
5259 ~~~~~
5260 pmirror name [names ...] x y z 
5261 lmirror name [names ...] x y z dx dy dz 
5262 smirror name [names ...] x y z dx dy dz 
5263 2dpmirror name [names ...] x y 
5264 2dlmirror name [names ...] x y dx dy 
5265 ~~~~~
5266
5267 The mirror commands perform a mirror transformation of 2d or 3d geometry. 
5268
5269 * **pmirror** is the point mirror, mirroring 3d curves and surfaces about a point of symmetry. 
5270 * **lmirror** is the line mirror commamd, mirroring 3d curves and surfaces about an axis of symmetry.
5271 * **smirror** is the surface mirror, mirroring 3d curves and surfaces about a plane of symmetry. In the last case, the plane of symmetry is perpendicular to dx,dy,dz. 
5272 * **2dpmirror** is the point mirror in 2D.
5273 * **2dlmirror** is the axis symmetry mirror in 2D.
5274
5275 **Example:** 
5276 ~~~~~
5277 # build 3 images of a torus 
5278 torus t 10 10 10 1 2 3 5 1 
5279 copy t t1 
5280 pmirror t1 0 0 0 
5281 copy t t2 
5282 lmirror t2 0 0 0 1 0 0 
5283 copy t t3 
5284 smirror t3 0 0 0 1 0 0 
5285 ~~~~~
5286
5287 @subsubsection occt_draw_6_5_4  pscale, dpscale
5288
5289 Syntax:                  
5290 ~~~~~
5291 pscale name [name ...] x y z s 
5292 2dpscale name [name ...] x y s 
5293 ~~~~~
5294
5295 The **pscale** and **2dpscale** commands transform an object by point scaling. You must give the center and the scaling factor. Because other scalings modify the type of the object, they are not provided. For example, a sphere may be transformed into an ellipsoid. Using a scaling factor of -1 is similar to using **pmirror**.
5296
5297  
5298 **Example:** 
5299 ~~~~~
5300 # double the size of a sphere 
5301 sphere s 0 0 0 10 
5302 pscale s 0 0 0 2 
5303 ~~~~~
5304
5305 @subsection occt_draw_6_6  Curve and surface analysis
5306
5307 **Draw** provides methods to compute information about curves and surfaces: 
5308
5309   * **coord** to find the coordinates of a point.
5310   * **cvalue** and **2dcvalue** to compute points and derivatives on curves.
5311   * **svalue** to compute points and derivatives on a surface.
5312   * **localprop** and **minmaxcurandif** to compute the curvature on a curve.
5313   * **parameters** to compute (u,v) values for a point on a surface.
5314   * **proj** and **2dproj** to project a point on a curve or a surface.
5315   * **surface_radius** to compute the curvature on a surface.
5316
5317 @subsubsection occt_draw_6_6_1  coord
5318
5319 Syntax:            
5320 ~~~~~
5321 coord P x y [z] 
5322 ~~~~~
5323
5324 Sets the x, y (and optionally z) coordinates of the point P. 
5325
5326 **Example:** 
5327 ~~~~~
5328 # translate a point 
5329 point p 10 5 5 
5330 translate p 5 0 0 
5331 coord p x y z 
5332 # x value is 15 
5333 ~~~~~
5334
5335
5336 @subsubsection occt_draw_6_6_2   cvalue, 2dcvalue
5337
5338 Syntax:      
5339 ~~~~~
5340 cvalue curve U x y z [d1x d1y d1z [d2x d2y d2z]] 
5341 2dcvalue curve U x y [d1x d1y [d2x d2y]] 
5342 ~~~~~
5343
5344 For a curve at a given parameter, and depending on the number of arguments, **cvalue** computes the coordinates in *x,y,z*, the first derivative in *d1x,d1y,d1z* and the second derivative in *d2x,d2y,d2z*. 
5345
5346 **Example:**
5347
5348 Let on a bezier curve at parameter 0 the point is the first pole; the first derivative is the vector to the second pole multiplied by the degree; the second derivative is the difference first to the second pole, second to the third pole multipied by *degree-1* : 
5349
5350 ~~~~~
5351 2dbeziercurve c 4 0 0 1 1 2 1 3 0 
5352 2dcvalue c 0 x y d1x d1y d2x d2y 
5353
5354 # values of x y d1x d1y d2x d2y 
5355 # are 0 0 3 3 0 -6 
5356 ~~~~~
5357
5358 @subsubsection occt_draw_6_6_3  svalue
5359
5360 Syntax: 
5361 ~~~~~
5362 svalue surfname U v x y z [dux duy duz dvx dvy dvz [d2ux d2uy d2uz d2vx d2vy d2vz d2uvx d2uvy d2uvz]] 
5363 ~~~~~
5364
5365 Computes points and derivatives on a surface for a pair of parameter values. The result depends on the number of arguments. You can compute the first and the second derivatives. 
5366
5367 **Example:** 
5368 ~~~~~
5369 # display points on a sphere 
5370 sphere s 10 
5371 for {dset t 0} {[dval t] = 1} {dset t t+0.01} { 
5372 svalue s t*2*pi t*pi-pi/2 x y z 
5373 point . x y z 
5374
5375 ~~~~~
5376
5377 @subsubsection occt_draw_6_6_4  localprop, minmaxcurandinf
5378
5379 Syntax:      
5380 ~~~~~
5381 localprop curvename U 
5382 minmaxcurandinf curve
5383 ~~~~~ 
5384
5385 **localprop** computes the curvature of a curve. 
5386 **minmaxcurandinf** computes and prints the parameters of the points where the curvature is minimum and maximum on a 2d curve. 
5387
5388 **Example:** 
5389 ~~~~~
5390 # show curvature at the center of a bezier curve 
5391 beziercurve c 3 0 0 0 10 2 0 20 0 0 
5392 localprop c 0.5 
5393 == Curvature : 0.02 
5394 ~~~~~
5395
5396 @subsubsection occt_draw_6_6_5  parameters
5397
5398 Syntax:      
5399 ~~~~~
5400 parameters surf/curve x y z U [V] 
5401 ~~~~~
5402
5403 Returns the parameters on the surface of the 3d point *x,y,z* in variables *u* and *v*. This command may only be used on analytical surfaces: plane, cylinder, cone, sphere and torus. 
5404
5405 **Example:** 
5406 ~~~~~
5407 # Compute parameters on a plane 
5408 plane p 0 0 10 1 1 0 
5409 parameters p 5 5 5 u v 
5410 # the values of u and v are : 0 5 
5411 ~~~~~
5412
5413 @subsubsection occt_draw_6_6_6  proj, dproj
5414
5415 Syntax:      
5416 ~~~~~
5417 proj name x y z 
5418 2dproj name xy 
5419 ~~~~~
5420
5421 Use **proj** to project a point on a 3d curve or a surface and **2dproj** for a 2d curve. 
5422
5423 The command will compute and display all points in the projection. The lines joining the point to the projections are created with the names *ext_1, ext_2, ... *
5424
5425 **Example:** 
5426
5427 Let us project a point on a torus 
5428
5429 ~~~~~
5430 torus t 20 5 
5431 proj t 30 10 7 
5432 == ext_1 ext_2 ext_3 ext_4 
5433 ~~~~~
5434
5435 @subsubsection occt_draw_6_6_7  surface_radius
5436
5437 Syntax:      
5438 ~~~~~
5439 surface_radius surface u v [c1 c2] 
5440 ~~~~~
5441
5442 Computes the main curvatures of a surface at parameters *(u,v)*. If there are extra arguments, their curvatures are stored in variables *c1* and *c2*. 
5443
5444 **Example:** 
5445
5446 Let us compute curvatures of a cylinder:
5447
5448 ~~~~~
5449 cylinder c 5 
5450 surface_radius c pi 3 c1 c2 
5451 == Min Radius of Curvature : -5 
5452 == Min Radius of Curvature : infinite 
5453 ~~~~~
5454
5455
5456 @subsection occt_draw_6_7  Intersections
5457
5458 * **intersect** computes intersections of surfaces; 
5459 * **2dintersect** computes intersections of 2d curves.
5460
5461 @subsubsection occt_draw_6_7_1  intersect
5462
5463 Syntax:      
5464 ~~~~~
5465 intersect name surface1 surface2
5466 ~~~~~ 
5467
5468 Intersects two surfaces; if there is one intersection curve it will be named *name*, if there are more than one they will be named *name_1*, *name_2*, ... 
5469
5470 **Example:** 
5471 ~~~~~
5472 # create an ellipse 
5473 cone c 45 0 
5474 plane p 0 0 40 0 1 5 
5475 intersect e c p 
5476 ~~~~~
5477
5478 @subsubsection occt_draw_6_7_2  dintersect
5479
5480 Syntax:      
5481 ~~~~~
5482 2dintersect curve1 curve2 
5483 ~~~~~
5484
5485 Displays the intersection points between two 2d curves. 
5486
5487 **Example:** 
5488 ~~~~~
5489 # intersect two 2d ellipses 
5490 ellipse e1 0 0 5 2 
5491 ellipse e2 0 0 0 1 5 2 
5492 2dintersect e1 e2 
5493 ~~~~~
5494
5495 @subsection occt_draw_6_8  Approximations
5496
5497 Draw provides command to create curves and surfaces by approximation. 
5498
5499 * **2dapprox** fits a curve through 2d points; 
5500 * **appro** fits a curve through 3d points;
5501 * **surfapp** and **grilapp** fit a surface through 3d points;
5502 * **2dinterpolate** interpolates a curve. 
5503
5504 @subsubsection occt_draw_6_8_1   appro, dapprox
5505
5506 Syntax:      
5507 ~~~~~
5508 appro result nbpoint [curve] 
5509 2dapprox result nbpoint [curve / x1 y1 x2 y2]
5510 ~~~~~ 
5511
5512 These commands fit a curve through a set of points. First give the number of points, then choose one of the three ways available to get the points. If you have no arguments, click on the points. If you have a curve argument or a list of points, the command launches computation of the points on the curve. 
5513
5514 **Example:** 
5515
5516 Let us pick points and they will be fitted 
5517
5518 ~~~~~
5519 2dapprox c 10 
5520 ~~~~~
5521
5522 @subsubsection occt_draw_6_8_2  surfapp, grilapp
5523
5524
5525 Syntax: 
5526 ~~~~~
5527 surfapp name nbupoints nbvpoints x y z .... 
5528 grilapp name nbupoints nbvpoints xo dx yo dy z11 z12 ... 
5529 ~~~~~
5530
5531 * **surfapp** fits a surface through an array of u and v points, nbupoints*nbvpoints. 
5532 * **grilapp** has the same function, but the x,y coordinates of the points are on a grid starting at x0,y0 with steps dx,dy. 
5533
5534 **Example:** 
5535 ~~~~~
5536 # a surface using the same data as in the beziersurf 
5537 example sect 4.4 
5538 surfapp s 3 4 \ 
5539 0 0 0 10 0 5 20 0 0 \ 
5540 0 10 2 10 10 3 20 10 2 \ 
5541 0 20 10 10 20 20 20 20 10 \ 
5542 0 30 0 10 30 0 20 30 0 
5543 ~~~~~
5544
5545 @subsection occt_draw_6_9  Constraints
5546
5547 * **cirtang** constructs 2d circles tangent to curves;
5548 * **lintan** constructs 2d lines tangent to curves. 
5549
5550
5551 @subsubsection occt_draw_6_9_1  cirtang
5552
5553 Syntax: 
5554 ~~~~~
5555 cirtang cname curve/point/radius curve/point/radius curve/point/radius 
5556 ~~~~~
5557
5558 Builds all circles satisfying the three constraints which are either a curve (the circle must be tangent to that curve), a point (the circle must pass through that point), or a radius for the circle. Only one constraint can be a radius. The solutions will be stored in variables *name_1*, *name_2*, etc. 
5559
5560 **Example:** 
5561 ~~~~~
5562 # a point, a line and a radius. 2 solutions 
5563 point p 0 0 
5564 line 1 10 0 -1 1 
5565 cirtang c p 1 4 
5566 == c_1 c_2 
5567 ~~~~~
5568
5569 @subsubsection occt_draw_6_9_2  lintan
5570
5571 Syntax:      
5572 ~~~~~
5573 lintan name curve curve [angle] 
5574 ~~~~~
5575
5576 Builds all 2d lines tangent to two curves. If the third angle argument is given the second curve must be a line and **lintan** will build all lines tangent to the first curve and forming the given angle with the line. The angle is given in degrees. The solutions are named *name_1*, *name_2*, etc. 
5577
5578 **Example:** 
5579 ~~~~~
5580 # lines tangent to 2 circles, 4 solutions 
5581 circle c1 -10 0 10 
5582 circle c2 10 0 5 
5583 lintan l c1 c2 
5584
5585 # lines at 15 degrees tangent to a circle and a line, 2 
5586 solutions: l1_1 l1_2 
5587 circle c1 -10 0 1 
5588 line l 2 0 1 1 
5589 lintan l1 c1 l 15 
5590 ~~~~~
5591
5592 @subsection occt_draw_6_10  Display
5593
5594 Draw provides commands to control the display of geometric objects. Some display parameters are used for all objects, others are valid for surfaces only, some for bezier and bspline only, and others for bspline only. 
5595
5596 On curves and surfaces, you can control the mode of representation with the **dmode** command. You can control the parameters for the mode with the **defle** command and the **discr** command, which control deflection and discretization respectively. 
5597
5598 On surfaces, you can control the number of isoparametric curves displayed on the surface with the **nbiso** command. 
5599
5600 On bezier and bspline curve and surface you can toggle the display of the control points with the **clpoles** and **shpoles** commands. 
5601
5602 On bspline curves and surfaces you can toggle the display of the knots with the **shknots** and **clknots** commands. 
5603
5604
5605 @subsubsection occt_draw_6_10_1  dmod, discr, defle
5606
5607 Syntax:      
5608 ~~~~~
5609 dmode name [name ...] u/d 
5610 discr name [name ...] nbintervals 
5611 defle name [name ...] deflection 
5612 ~~~~~
5613
5614 **dmod** command allows choosing the display mode for a curve or a surface. 
5615
5616 In mode *u*, or *uniform deflection*, the points are computed to keep the polygon at a distance lower than the deflection of the geometry. The deflection is set with the *defle* command. This mode involves intensive use of computational power. 
5617
5618 In *d*, or discretization mode, a fixed number of points is computed. This number is set with the *discr* command. This is the default mode. On a bspline, the fixed number of points is computed for each span of the curve. (A span is the interval between two knots). 
5619
5620 If the curve or the isolines seem to present too many angles, you can either increase the discretization or lower the deflection, depending on the mode. This will increase the number of points. 
5621
5622 **Example:** 
5623 ~~~~~
5624 # increment the number of points on a big circle 
5625 circle c 0 0 50 50 
5626 discr 100 
5627
5628 # change the mode 
5629 dmode c u 
5630 ~~~~~
5631
5632 @subsubsection occt_draw_6_10_2   nbiso
5633
5634 Syntax:      
5635 ~~~~~
5636 nbiso name [names...] nuiso nviso 
5637 ~~~~~
5638
5639 Changes the number of isoparametric curves displayed on a surface in the U and V directions. On a bspline surface, isoparametric curves are displayed by default at knot values. Use *nbiso* to turn this feature off. 
5640
5641 **Example:** 
5642
5643 Let us  display 35 meridians and 15 parallels on a sphere:
5644 ~~~~~ 
5645 sphere s 20 
5646 nbiso s 35 15 
5647 ~~~~~
5648
5649 @subsubsection occt_draw_6_10_3  clpoles, shpoles
5650
5651 Syntax:      
5652 ~~~~~
5653 clpoles name 
5654 shpoles name 
5655 ~~~~~
5656
5657 On bezier and bspline curves and surfaces, the control polygon is displayed by default: *clpoles* erases it and *shpoles* restores it. 
5658
5659 **Example:** 
5660
5661 Let us make a bezier curve and erase the poles 
5662
5663 ~~~~~
5664 beziercurve c 3 0 0 0 10 0 0 10 10 0 
5665 clpoles c 
5666 ~~~~~
5667
5668 @subsubsection occt_draw_6_10_4  clknots, shknots
5669
5670 Syntax:   
5671 ~~~~~
5672 clknots name 
5673 shknots name 
5674 ~~~~~
5675
5676 By default, knots on a bspline curve or surface are displayed with markers at the points with parametric value equal to the knots. *clknots* removes them and *shknots* restores them. 
5677
5678 **Example:** 
5679 ~~~~~
5680 # hide the knots on a bspline curve 
5681 bsplinecurve bc 2 3 0 3 1 1 2 3 \ 
5682 10 0 7 1 7 0 7 1 3 0 8 1 0 0 7 1 
5683 clknots bc
5684 ~~~~~
5685
5686
5687 @section occt_draw_7 Topology commands
5688
5689 Draw provides a set of commands to test OCCT Topology libraries. The Draw commands are found in the DRAWEXE executable or in any executable including the BRepTest commands. 
5690
5691 Topology defines the relationship between simple geometric entities, which can thus be linked together to represent complex shapes. The type of variable used by Topology in Draw is the shape variable. 
5692
5693 The <a href="user_guides__modeling_data.html#occt_modat_5">different topological shapes</a> include: 
5694
5695   * **COMPOUND**: A group of any type of topological object.
5696   * **COMPSOLID**: A set of solids connected by their faces. This expands the notions of WIRE and SHELL to solids.
5697   * **SOLID**: A part of space limited by shells. It is three dimensional.
5698   * **SHELL**: A set of faces connected by their edges. A shell can be open or closed.
5699   * **FACE**: In 2d, a plane; in 3d, part of a surface. Its geometry is constrained (trimmed) by contours. It is two dimensional.
5700   * **WIRE**: A set of edges connected by their vertices. It can be open or closed depending on whether the edges are linked or not.
5701   * **EDGE**: A topological element corresponding to a restrained curve. An edge is generally limited by vertices. It has one dimension.
5702   * **VERTEX**: A topological element corresponding to a point. It has a zero dimension.
5703
5704 Shapes are usually shared. **copy** will create a new shape which shares its representation with the original. Nonetheless, two shapes sharing the same topology can be moved independently (see the section on **transformation**). 
5705
5706 The following topics are covered in the eight sections of this chapter: 
5707
5708   * Basic shape commands to handle the structure of shapes and control the display.
5709   * Curve and surface topology, or methods to create topology from geometry and vice versa.
5710   * Primitive construction commands: box, cylinder, wedge etc.
5711   * Sweeping of shapes.
5712   * Transformations of shapes: translation, copy, etc.
5713   * Topological operations, or booleans.
5714   * Drafting and blending.
5715   * Analysis of shapes.
5716
5717
5718 @subsection occt_draw_7_1  Basic topology
5719
5720 The set of basic commands allows simple operations on shapes, or step-by-step construction of objects. These commands are useful for analysis of shape structure and include: 
5721
5722   * **isos** and **discretisation** to control display of shape faces by isoparametric curves .
5723   * **orientation**, **complement** and **invert** to modify topological attributes such as orientation.
5724   * **explode**, **exwire** and **nbshapes** to analyze the structure of a shape.
5725   * **emptycopy**, **add**, **compound** to create shapes by stepwise construction.
5726
5727 In Draw, shapes are displayed using isoparametric curves. There is color coding for the edges: 
5728
5729   * a red edge is an isolated edge, which belongs to no faces.
5730   * a green edge is a free boundary edge, which belongs to one face,
5731   * a yellow edge is a shared edge, which belongs to at least two faces.
5732
5733
5734 @subsubsection occt_draw_7_1_1  isos, discretisation
5735
5736 Syntax:                  
5737 ~~~~~
5738 isos [name ...][nbisos] 
5739 discretisation nbpoints
5740 ~~~~~
5741  
5742 Determines or changes the number of isoparametric curves on shapes. 
5743
5744 The same number is used for the u and v directions. With no arguments, *isos* prints the current default value. To determine, the number of isos for a shape, give it name as the first argument. 
5745
5746 *discretisation* changes the default number of points used to display the curves. The default value is 30. 
5747
5748 **Example:** 
5749 ~~~~~
5750 # Display only the edges (the wireframe) 
5751 isos 0 
5752 ~~~~~
5753
5754 **Warning**: don’t confuse *isos* and *discretisation* with the geometric commands *nbisos* and *discr*. 
5755
5756
5757 @subsubsection occt_draw_7_1_2  orientation, complement, invert, normals, range
5758
5759 Syntax:      
5760 ~~~~~
5761 orientation name [name ...] F/R/E/I 
5762 complement name [name ...] 
5763 invert name 
5764 normals s (length = 10), disp normals 
5765 range name value value 
5766 ~~~~~
5767
5768 * **orientation** assigns the orientation of shapes - simple and complex - to one of the following four values: *FORWARD, REVERSED, INTERNAL, EXTERNAL*. 
5769 * **complement** changes the current orientation of shapes to its complement, *FORWARD - REVERSED, INTERNAL - EXTERNAL*. 
5770 * **invert** creates a new shape which is a copy of the original with the orientation all subshapes reversed. For example, it may be useful to reverse the normals of a solid. 
5771 * *normals** returns the assignment of colors to orientation values. 
5772 * **range** defines the length of a selected edge by defining the values of a starting point and an end point.
5773  
5774 **Example:** 
5775 ~~~~~
5776 # to invert normals of a box 
5777 box b 10 20 30 
5778 normals b 5 
5779 invert b 
5780 normals b 5 
5781
5782 # to assign a value to an edge 
5783 box b1 10 20 30 
5784 # to define the box as edges 
5785 explode b1 e 
5786 b_1 b_2 b_3 b_4 b_5 b_6 b_7 b_8 b_9 b_10 b_11 b_12 
5787 # to define as an edge 
5788 makedge e 1 
5789 # to define the length of the edge as starting from 0 
5790 and finishing at 1 
5791 range e 0 1 
5792 ~~~~~
5793
5794 @subsubsection occt_draw_7_1_3  explode, exwire, nbshapes
5795
5796 Syntax:      
5797 ~~~~~
5798 explode name [C/So/Sh/F/W/E/V] 
5799 exwire name 
5800 nbshapes name 
5801 ~~~~~
5802
5803 **explode** extracts subshapes from an entity. The subshapes will be named *name_1*, *name_2*, ... Note that they are not copied but shared with the original. 
5804
5805 With name only, **explode** will extract the first sublevel of shapes: the shells of a solid or the edges of a wire, for example. With one argument, **explode** will extract all subshapes of that type: *C* for compounds, *So* for solids, *Sh* for shells, *F* for faces, *W* for wires, *E* for edges, *V* for vertices. 
5806
5807 **exwire** is a special case of **explode** for wires, which extracts the edges in an ordered way, if possible. Each edge, for example, is connected to the following one by a vertex. 
5808
5809 **nbshapes** counts the number of shapes of each type in an entity. 
5810
5811 **Example:** 
5812 ~~~~~
5813 # on a box 
5814 box b 10 20 30 
5815
5816 # whatis returns the type and various information 
5817 whatis b 
5818 = b is a shape SOLID FORWARD Free Modified 
5819
5820 # make one shell 
5821 explode b 
5822 whatis b_1 
5823 = b_1 is a shape SHELL FORWARD Modified Orientable 
5824 Closed 
5825
5826 # extract the edges b_1, ... , b_12 
5827 explode b e 
5828 ==b_1 ... b_12 
5829
5830 # count subshapes 
5831 nbshapes b 
5832 == 
5833 Number of shapes in b 
5834 VERTEX : 8 
5835 EDGE : 12 
5836 WIRE : 6 
5837 FACE : 6 
5838 SHELL : 1 
5839 SOLID : 1 
5840 COMPSOLID : 0 
5841 COMPOUND : 0 
5842 SHAPE : 34 
5843 ~~~~~
5844
5845 @subsubsection occt_draw_7_1_4  emptycopy, add, compound
5846
5847 Syntax:                  
5848 ~~~~~
5849 emptycopy [newname] name 
5850 add name toname 
5851 compound [name ...] compoundname 
5852 ~~~~~
5853
5854 **emptycopy** returns an empty shape with the same orientation, location, and geometry as the target shape, but with no sub-shapes. If the newname argument is not given, the new shape is stored with the same name. This command is used to modify a frozen shape. A frozen shape is a shape used by another one. To modify it, you must emptycopy it. Its subshape may be reinserted with the **add** command. 
5855
5856 **add** inserts shape *C* into shape *S*. Verify that *C* and *S* reference compatible types of objects: 
5857   * Any *Shape* can be added to a *Compound*.
5858   * Only a *Solid* can be added to a *CompSolid*.
5859   * Only a *Shell* can *Edge* or a *Vertex* can be added into a *Solid*.
5860   * Only a *Face* can be added to a *Shell*.
5861   * Only a *Wire* and *Vertex* can be added in a *Solid*.
5862   * Only an *Edge* can be added to a *Wire*.
5863   * Only a *Vertex* can be added to an *Edge*.
5864   * Nothing can be added to a *Vertex*.
5865
5866 **emptycopy** and **add** should be used with care. 
5867
5868 On the other hand, **compound** is a safe way to achieve a similar result. It creates a compound from shapes. If no shapes are given, the compound is empty. 
5869
5870 **Example:** 
5871 ~~~~~
5872 # a compound with three boxes 
5873 box b1 0 0 0 1 1 1 
5874 box b2 3 0 0 1 1 1 
5875 box b3 6 0 0 1 1 1 
5876 compound b1 b2 b3 c 
5877 ~~~~~
5878
5879 @subsubsection occt_draw_7_1_5  checkshape
5880
5881 Syntax:                  
5882 ~~~~~
5883 checkshape [-top] shape [result] [-short] 
5884 ~~~~~
5885
5886 Where: 
5887 * *top* – optional parameter, which allows checking only topological validity of a shape. 
5888 * *shape*– the only required parameter which represents the name of the shape to check. 
5889 * *result* – optional parameter which is the prefix of the output shape names. 
5890 * *short* – a short description of the check. 
5891
5892 **checkshape** examines the selected object for topological and geometric coherence. The object should be a three dimensional shape. 
5893
5894 **Example:** 
5895 ~~~~~
5896 # checkshape returns a comment valid or invalid 
5897 box b1 0 0 0 1 1 1 
5898 checkshape b1 
5899 # returns the comment 
5900 this shape seems to be valid 
5901 ~~~~~
5902
5903 **Note** that this test is performed using the tolerance set in the algorithm.
5904
5905
5906 @subsection occt_draw_7_2  Curve and surface topology
5907
5908 This group of commands is used to create topology from shapes and to extract shapes from geometry. 
5909
5910   * To create vertices, use the **vertex** command.
5911   * To create edges use, the **edge**, **mkedge** commands.
5912   * To create wires, use the **wire**, **polyline**, **polyvertex** commands.
5913   * To create faces, use the **mkplane**, **mkface** commands.
5914   * To extract the geometry from edges or faces, use the **mkcurve** and **mkface** commands.
5915   * To extract the 2d curves from edges or faces, use the **pcurve** command.
5916
5917
5918 @subsubsection occt_draw_7_2_1  vertex
5919
5920 Syntax:      
5921 ~~~~~
5922 vertex name [x y z / p edge] 
5923 ~~~~~
5924
5925 Creates a vertex at either a 3d location x,y,z or the point at parameter p on an edge. 
5926
5927 **Example:** 
5928 ~~~~~
5929 vertex v1 10 20 30 
5930 ~~~~~
5931
5932 @subsubsection occt_draw_7_2_2  edge, mkedge, uisoedge, visoedge
5933
5934 Syntax:      
5935 ~~~~~
5936 edge name vertex1 vertex2 
5937 mkedge edge curve [surface] [pfirst plast] [vfirst [pfirst] vlast [plast]] 
5938 uisoedge edge face u v1 v2 
5939 visoedge edge face v u1 u2 
5940 ~~~~~
5941
5942 * **edge** creates a straight line edge between two vertices. 
5943 * **mkedge** generates edges from curves<.Two parameters can be given for the vertices: the first and last parameters of the curve are given by default. Vertices can also be given with their parameters, this option allows blocking the creation of new vertices. If the parameters of the vertices are not given, they are computed by projection on the curve. Instead of a 3d curve, a 2d curve and a surface can be given. 
5944
5945 **Example:** 
5946 ~~~~~
5947 # straight line edge 
5948 vertex v1 10 0 0 
5949 vertex v2 10 10 0 
5950 edge e1 v1 v2 
5951
5952 # make a circular edge 
5953 circle c 0 0 0 5 
5954 mkedge e2 c 0 pi/2 
5955
5956 # A similar result may be achieved by trimming the curve 
5957 # The trimming is removed by mkedge 
5958 trim c c 0 pi/2 
5959 mkedge e2 c 
5960 ~~~~~
5961
5962 * **visoedge** and **uisoedge** are commands that generate a *uiso* parameter edge or a *viso* parameter edge. 
5963
5964 **Example:** 
5965 ~~~~~
5966 # to create an edge between v1 and v2 at point u 
5967 # to create the example plane 
5968 plane p 
5969 trim p p 0 1 0 1 
5970 convert p p 
5971 incudeg p 3 
5972 incvdeg p 3 
5973 movep p 2 2 0 0 1 
5974 movep p 3 3 0 0 0.5 
5975 mkface p p 
5976 # to create the edge in the plane at the u axis point 
5977 0.5, and between the v axis points v=0.2 and v =0.8 
5978 uisoedge e p 0.5 0.20 0.8 
5979 ~~~~~
5980
5981 @subsubsection occt_draw_7_2_3  wire, polyline, polyvertex
5982
5983 Syntax:      
5984 ~~~~~
5985 wire wirename e1/w1 [e2/w2 ...] 
5986 polyline name x1 y1 z1 x2 y2 z2 ... 
5987 polyvertex name v1 v2 ... 
5988 ~~~~~
5989
5990 **wire** creates a wire from edges or wires. The order of the elements should ensure that the wire is connected, and vertex locations will be compared to detect connection. If the vertices are different, new edges will be created to ensure topological connectivity. The original edge may be copied in the new one. 
5991
5992 **polyline** creates a polygonal wire from point coordinates. To make a closed wire, you should give the first point again at the end of the argument list. 
5993
5994 **polyvertex** creates a polygonal wire from vertices. 
5995
5996 **Example:** 
5997 ~~~~~
5998 # create two polygonal wires 
5999 # glue them and define as a single wire 
6000 polyline w1 0 0 0 10 0 0 10 10 0 
6001 polyline w2 10 10 0 0 10 0 0 0 0 
6002 wire w w1 w2 
6003 ~~~~~
6004
6005 @subsubsection occt_draw_7_2_4  profile
6006
6007 Syntax       
6008 ~~~~~
6009 profile name [code values] [code values] ... 
6010 ~~~~~
6011
6012
6013 **profile** builds a profile in a plane using a moving point and direction. By default, the profile is closed and a face is created. The original point is 0 0, and direction is 1 0 situated in the XY plane. 
6014
6015
6016 | **Code**     |    **Values **    |       **Action** |
6017 | :------------ | :------------- | :---------------- |
6018 | O                 |                     X Y Z      |          Sets the origin of the plane |
6019 | P                 |         DX DY DZ UX UY UZ  |  Sets the normal and X of the plane |
6020 | F                 |                      X Y    |               Sets the first point |
6021 | X                 |                      DX      |             Translates a point along X |
6022 | Y                 |                      DY       |            Translates a point along Y |
6023 | L                 |                      DL        |            Translates a point along direction |
6024 | XX                |                    X           |           Sets point X coordinate |
6025 | YY                |                    Y           |           Sets point Y coordinate |
6026 | T                 |                      DX DY     |         Translates a point |
6027 | TT                |                     X Y        |           Sets a point |
6028 | R                 |                      Angle     |           Rotates direction |
6029 | RR                |                    Angle       |         Sets direction |
6030 | D                 |                     DX DY      |        Sets direction |
6031 | IX                |                      X         |             Intersects with vertical |
6032 | IY                |                      Y         |             Intersects with horizontal |
6033 | C                 |                Radius Angle    |      Arc of circle tangent to direction |
6034
6035
6036 Codes and values are used to define the next point or change the direction. When the profile changes from a straight line to a curve, a tangent is created. All angles are in degrees and can be negative. 
6037
6038 The point [code values] can be repeated any number of times and in any order to create the profile contour. 
6039
6040 | Suffix | Action |
6041 | :----- | :----- |
6042 | No suffix  |             Makes a closed face |
6043 | W          |               Make a closed wire |
6044 | WW         |            Make an open wire |
6045
6046 The profile shape definition is the suffix; no suffix produces a face, *w* is a closed wire, *ww* is an open wire. 
6047
6048 Code letters are not case-sensitive. 
6049
6050 **Example:** 
6051 ~~~~~
6052 # to create a trianglular plane using a vertex at the 
6053 origin, in the xy plane 
6054 profile p O 0 0 0 X 1 Y 0 x 1 y 1 
6055 ~~~~~
6056
6057 **Example:** 
6058 ~~~~~
6059 # to create a contour using the different code 
6060 possibilities 
6061
6062 # two vertices in the xy plane 
6063 profile p F 1 0 x 2 y 1 ww 
6064
6065 # to view from a point normal to the plane 
6066 top 
6067
6068 # add a circular element of 45 degrees 
6069 profile p F 1 0 x 2 y 1 c 1 45 ww 
6070
6071 # add a tangential segment with a length value 1 
6072 profile p F 1 0 x 2 y 1 c 1 45 l 1 ww 
6073
6074 # add a vertex with xy values of 1.5 and 1.5 
6075 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 ww 
6076
6077 # add a vertex with the x value 0.2, y value is constant 
6078 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 xx 0.2 ww 
6079
6080 # add a vertex with the y value 2 x value is constant 
6081 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 yy 2 ww 
6082
6083 # add a circular element with a radius value of 1 and a circular value of 290 degrees 
6084 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 xx 0.2 yy 2 c 1 290 
6085
6086 # wire continues at a tangent to the intersection x = 0 
6087 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 xx 0.2 yy 2 c 1 290 ix 0 ww 
6088
6089 # continue the wire at an angle of 90 degrees until it intersects the y axis at y= -o.3 
6090 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 xx 0.2 yy 2 c 1 290 ix 0 r 90 ix -0.3 ww 
6091
6092 #close the wire 
6093 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 xx 0.2 yy 2 c 1 290 ix 0 r 90 ix -0.3 w 
6094
6095 # to create the plane with the same contour 
6096 profile p F 1 0 x 2 y 1 c 1 45 l 1 tt 1.5 1.5 xx 0.2 yy 2 c 1 290 ix 0 r 90 ix -0.3 
6097 ~~~~~
6098
6099 @subsubsection occt_draw_7_2_5   bsplineprof
6100
6101 Syntax:      
6102 ~~~~~
6103 bsplineprof name [S face] [W WW] 
6104 ~~~~~
6105
6106 * for an edge : \<digitizes\> ... <mouse button 2>
6107 * to end profile : <mouse button 3>
6108
6109 Builds a profile in the XY plane from digitizes. By default the profile is closed and a face is built. 
6110
6111 **bsplineprof** creates a 2d profile from bspline curves using the mouse as the input. *MB1* creates the points, *MB2* finishes the current curve and starts the next curve, *MB3* closes the profile. 
6112
6113 The profile shape definition is the suffix; no suffix produces a face, **w** is a closed wire, **ww** is an open wire. 
6114
6115 **Example:** 
6116 ~~~~~
6117 #to view the xy plane 
6118 top 
6119 #to create a 2d curve with the mouse 
6120 bsplineprof res 
6121 # click mb1 to start the curve 
6122 # click mb1 to create the second vertex 
6123 # click mb1 to create a curve 
6124 == 
6125 #click mb2 to finish the curve and start a new curve 
6126 == 
6127 # click mb1 to create the second curve 
6128 # click mb3 to create the face 
6129 ~~~~~
6130
6131 @subsubsection occt_draw_7_2_6  mkoffset
6132
6133 Syntax:      
6134 ~~~~~
6135 mkoffset result face/compound of wires nboffset stepoffset 
6136 ~~~~~
6137
6138 **mkoffset** creates a parallel wire in the same plane using a face or an existing continuous set of wires as a reference. The number of occurences is not limited. 
6139
6140 The offset distance defines the spacing and the positioning of the occurences. 
6141
6142 **Example:** 
6143 ~~~~~
6144 #Create a box and select a face 
6145 box b 1 2 3 
6146 explode b f 
6147 #Create three exterior parallel contours with an offset 
6148 value of 2 
6149 mkoffset r b_1 3 2 
6150 Create one interior parallel contour with an offset 
6151 value of 
6152 0.4 
6153 mkoffset r b_1 1 -0.4 
6154 ~~~~~
6155
6156 **Note** that *mkoffset* command must be used with prudence, as angular contours produce offset contours with fillets. Interior parallel contours can produce more than one wire, normally these are refused. In the following example, any increase in the offset value is refused.
6157
6158 **Example:** 
6159 ~~~~~
6160 # to create the example contour 
6161 profile p F 0 0 x 2 y 4 tt 1 1 tt 0 4 w 
6162 # to create an incoherent interior offset 
6163 mkoffset r p 1 -0.50 
6164 ==p is not a FACE but a WIRE 
6165 BRepFill_TrimEdgeTool: incoherent intersection 
6166 # to create two incoherent wires 
6167 mkoffset r p 1 -0.50 
6168 ~~~~~
6169
6170 @subsubsection occt_draw_7_2_7  mkplane, mkface
6171
6172 Syntax:      
6173 ~~~~~
6174 mkplane name wire 
6175 mkface name surface [ufirst ulast vfirst vlast] 
6176 ~~~~~
6177
6178 **mkplane** generates a face from a planar wire. The planar surface will be constructed with an orientation which keeps the face inside the wire. 
6179
6180 **mkface** generates a face from a surface. Parameter values can be given to trim a rectangular area. The default boundaries are those of the surface. 
6181
6182 **Example:** 
6183 ~~~~~
6184 # make a polygonal face 
6185 polyline f 0 0 0 20 0 0 20 10 0 10 10 0 10 20 0 0 20 0 0 0 0 
6186 mkplane f f 
6187
6188 # make a cylindrical face 
6189 cylinder g 10 
6190 trim g g -pi/3 pi/2 0 15 
6191 mkface g g 
6192 ~~~~~
6193
6194 @subsubsection occt_draw_7_2_8  mkcurve, mksurface
6195
6196 Syntax:      
6197 ~~~~~
6198 mkcurve curve edge 
6199 mksurface name face 
6200 ~~~~~
6201
6202 **mkcurve** creates a 3d curve from an edge. The curve will be trimmed to the edge boundaries. 
6203
6204 **mksurface** creates a surface from a face. The surface will not be trimmed. 
6205
6206 **Example:** 
6207 ~~~~~
6208 # make a line 
6209 vertex v1 0 0 0 
6210 vertex v2 10 0 0 
6211 edge e v1 v2 
6212 ~~~~~
6213
6214 @subsubsection occt_draw_7_2_9  pcurve
6215
6216 Syntax:      
6217
6218 ~~~~~
6219 pcurve [name edgename] facename 
6220 ~~~~~
6221
6222 Extracts the 2d curve of an edge on a face. If only the face is specified, the command extracts all the curves and colors them according to their orientation. This is useful in checking to see if the edges in a face are correctly oriented, i.e. they turn counter-clockwise. To make curves visible, use a fitted 2d view. 
6223
6224 **Example:** 
6225 ~~~~~
6226 # view the pcurves of a face 
6227 plane p 
6228 trim p p -1 1 -1 1 
6229 mkface p p 
6230 av2d; # a 2d view 
6231 pcurve p 
6232 2dfit 
6233 ~~~~~
6234
6235 @subsubsection occt_draw_7_2_10  chfi2d
6236
6237 Syntax:      
6238 ~~~~~
6239 chfi2d result face [edge1 edge2 (F radius/CDD d1 d2/CDA d ang) .... 
6240 ~~~~~
6241
6242
6243 Creates chamfers and fillets on 2D objects. Select two adjacent edges and: 
6244   * a radius value
6245   * two respective distance values
6246   * a distance value and an angle
6247
6248 The radius value produces a fillet between the two faces. 
6249
6250 The distance is the length value from the edge between the two selected faces in a normal direction. 
6251
6252 **Example:** 
6253
6254 Let us create a 2d fillet: 
6255
6256 ~~~~~
6257 top 
6258 profile p x 2 y 2 x -2 
6259 chfi2d cfr p . . F 0.3 
6260 ==Pick an object 
6261 #select an edge 
6262 ==Pick an object 
6263 #select an edge 
6264 ~~~~~
6265
6266 Let us create a 2d chamfer using two distances:
6267  
6268 ~~~~~
6269 profile p x 2 y 2 x -2 
6270 chfi2d cfr p . . CDD 0.3 0.6 
6271 ==Pick an object 
6272 #select an edge 
6273 ==Pick an object 
6274 #select an edge 
6275 ~~~~~
6276
6277 Let us create a 2d chamfer using a defined distance and angle 
6278
6279 ~~~~~
6280 top 
6281 profile p x 2 y 2 x -2 
6282 chfi2d cfr p . . CDA 0.3 75 
6283 ==Pick an object 
6284 #select an edge 
6285 ==Pick an object 
6286 #select an edge 
6287 ~~~~~
6288
6289 @subsubsection occt_draw_7_2_11  nproject
6290
6291 Syntax:      
6292 ~~~~~
6293 nproject pj e1 e2 e3 ... surf -g -d [dmax] [Tol 
6294 [continuity [maxdeg [maxseg]]] 
6295 ~~~~~
6296
6297 Creates a shape projection which is normal to the target surface. 
6298
6299 **Example:**
6300 ~~~~~
6301 # create a curved surface 
6302 line l 0 0 0 1 0 0 
6303 trim l l 0 2 
6304 convert l l 
6305
6306 incdeg l 3 
6307 cmovep l 1 0 0.5 0 
6308 cmovep l 3 0 0.5 0 
6309 copy l ll 
6310 translate ll 2 -0.5 0 
6311 mkedge e1 l 
6312 mkedge e2 ll 
6313 wire w e1 e2 
6314 prism p w 0 0 3 
6315 donl p 
6316 #display in four views 
6317 mu4 
6318 fit 
6319 # create the example shape 
6320 circle c 1.8 -0.5 1 0 1 0 1 0 0 0.4 
6321 mkedge e c 
6322 donly p e 
6323 # create the normal projection of the shape(circle) 
6324 nproject r e p 
6325 ~~~~~
6326
6327
6328 @subsection occt_draw_7_3  Primitives
6329
6330 Primitive commands make it possible to create simple shapes. They include: 
6331
6332   * **box** and **wedge** commands.
6333   * **pcylinder**, **pcone**, **psphere**, **ptorus** commands.
6334   * **halfspace** command
6335
6336
6337 @subsubsection occt_draw_7_3_1  box, wedge
6338
6339 Syntax:      
6340 ~~~~~
6341 box name [x y z] dx dy dz 
6342 wedge name dx dy dz ltx / xmin zmin xmax xmax 
6343 ~~~~~
6344
6345 **box** creates a box parallel to the axes with dimensions *dx,dy,dz*. *x,y,z* is the corner of the box. It is the default origin. 
6346
6347 **wedge** creates a box with five faces called a wedge. One face is in the OXZ plane, and has dimensions *dx,dz* while the other face is in the plane *y = dy*. This face either has dimensions *ltx, dz* or is bounded by *xmin,zmin,xmax,zmax*. 
6348
6349 The other faces are defined between these faces. The face in the *y=yd* plane may be degenerated into a line if *ltx = 0*, or a point if *xmin = xmax* and *ymin = ymax*. In these cases, the line and the point both have 5 faces each. To position the wedge use the *ttranslate* and *trotate* commands. 
6350
6351 **Example:** 
6352 ~~~~~
6353 # a box at the origin 
6354 box b1 10 20 30 
6355
6356 # another box 
6357 box b2 30 30 40 10 20 30 
6358
6359 # a wedge 
6360 wedge w1 10 20 30 5 
6361
6362 # a wedge with a sharp edge (5 faces) 
6363 wedge w2 10 20 30 0 
6364
6365 # a pyramid 
6366 wedge w3 20 20 20 10 10 10 10 
6367 ~~~~~
6368
6369 @subsubsection occt_draw_7_3_2  pcylinder, pcone, psphere, ptorus
6370
6371 Syntax:      
6372 ~~~~~
6373 pcylinder name [plane] radius height [angle] 
6374 pcone name [plane] radius1 radius2 height [angle] 
6375 pcone name [plane] radius1 radius2 height [angle] 
6376 psphere name [plane] radius1 [angle1 angle2] [angle] 
6377 ptorus name [plane] radius1 radius2 [angle1 angle2] [angle] 
6378 ~~~~~
6379
6380 All these commands create solid blocks in the default coordinate system, using the Z axis as the axis of revolution and the X axis as the origin of the angles. To use another system, translate and rotate the resulting solid or use a plane as first argument to specify a coordinate system. All primitives have an optional last argument which is an angle expressed in degrees and located on the Z axis, starting from the X axis. The default angle is 360. 
6381
6382 **pcylinder** creates a cylindrical block with the given radius and height. 
6383
6384 **pcone** creates a truncated cone of the given height with radius1 in the plane z = 0 and radius2 in the plane z = height. Neither radius can be negative, but one of them can be null. 
6385
6386 **psphere** creates a solid sphere centered on the origin. If two angles, *angle1* and *angle2*, are given, the solid will be limited by two planes at latitude *angle1* and *angle2*. The angles must be increasing and in the range -90,90. 
6387
6388 **ptorus** creates a solid torus with the given radii, centered on the origin, which is a point along the z axis. If two angles increasing in degree in the range 0 – 360 are given, the solid will be bounded by two planar surfaces at those positions on the circle. 
6389
6390 **Example:** 
6391 ~~~~~
6392 # a can shape 
6393 pcylinder cy 5 10 
6394
6395 # a quarter of a truncated cone 
6396 pcone co 15 10 10 90 
6397
6398 # three-quarters of sphere 
6399 psphere sp 10 270 
6400
6401 # half torus 
6402 ptorus to 20 5 0 90 
6403 ~~~~~
6404
6405 @subsubsection occt_draw_7_3_3  halfspace
6406
6407 Syntax:      
6408 ~~~~~
6409 halfspace result face/shell x y z 
6410 ~~~~~
6411
6412 **halfspace** creates an infinite solid volume based on a face in a defined direction. This volume can be used to perform the boolean operation of cutting a solid by a face or plane. 
6413
6414 **Example:** 
6415 ~~~~~
6416 box b 0 0 0 1 2 3 
6417 explode b f 
6418 ==b_1 b_2 b_3 b_4 b_5 b_6 
6419 halfspace hr b_3 0.5 0.5 0.5 
6420 ~~~~~
6421
6422
6423 @subsection occt_draw_7_4  Sweeping
6424
6425 Sweeping creates shapes by sweeping out a shape along a defined path: 
6426
6427   * **prism** sweeps along a direction.
6428   * **revol** sweeps around an axis.
6429   * **pipe** sweeps along a wire.
6430   * **mksweep** and **buildsweep** are commands to create sweeps by defining the arguments and algorithms.
6431   * **thrusections** creates a sweep from wire in different planes.
6432
6433
6434 @subsubsection occt_draw_7_4_1  prism
6435
6436 Syntax:      
6437 ~~~~~
6438 prism result base dx dy dz [Copy | Inf | SemiInf] 
6439 ~~~~~
6440
6441 Creates a new shape by sweeping a shape in a direction. Any shape can be swept: a vertex gives an edge; an edge gives a face; and a face gives a solid. 
6442
6443 The shape is swept along the vector *dx dy dz*. The original shape will be shared in the result unless *Copy* is specified. If *Inf* is specified the prism is infinite in both directions. If *SemiInf* is specified the prism is infinite in the *dx,dy,dz* direction, and the length of the vector has no importance. 
6444
6445 **Example:** 
6446 ~~~~~
6447 # sweep a planar face to make a solid 
6448 polyline f 0 0 0 10 0 0 10 5 0 5 5 0 5 15 0 0 15 0 0 0 0 
6449 mkplane f f 
6450 ~~~~~
6451
6452 @subsubsection occt_draw_7_4_2  revol
6453
6454 Syntax:      
6455 ~~~~~
6456 revol result base x y z dx dy dz angle [Copy] 
6457 ~~~~~
6458
6459 Creates a new shape by sweeping a base shape through an angle along the axis *x,y,z dx,dy,dz*. As with the prism command, the shape can be of any type and is not shared if *Copy* is specified. 
6460
6461 **Example:** 
6462 ~~~~~
6463 # shell by wire rotation 
6464 polyline w 0 0 0 10 0 0 10 5 0 5 5 0 5 15 0 0 15 0 
6465 revol s w 20 0 0 0 1 0 90 
6466 ~~~~~
6467
6468
6469 @subsubsection occt_draw_7_4_3  pipe
6470
6471 Syntax:      
6472 ~~~~~
6473 pipe name wire_spine Profile 
6474 ~~~~~
6475
6476 Creates a new shape by sweeping a shape known as the profile along a wire known as the spine. 
6477
6478 **Example:** 
6479 ~~~~~
6480 # sweep a circle along a bezier curve to make a solid 
6481 pipe 
6482
6483 beziercurve spine 4 0 0 0 10 0 0 10 10 0 20 10 0 
6484 mkedge spine spine 
6485 wire spine spine 
6486 circle profile 0 0 0 1 0 0 2 
6487 mkedge profile profile 
6488 wire profile profile 
6489 mkplane profile profile 
6490 pipe p spine profile 
6491 ~~~~~
6492
6493 @subsubsection occt_draw_7_4_4  mksweep, addsweep, setsweep, deletesweep, buildsweep, simulsweep
6494
6495 Syntax:      
6496 ~~~~~
6497 mksweep wire 
6498 addsweep wire[vertex][-M][-C] [auxiilaryshape]
6499 deletesweep wire 
6500 setsweep options [arg1 [arg2 [...]]] 
6501 simulsweep r [n] [option] 
6502 buildsweep [r] [option] [Tol] 
6503 ~~~~~
6504
6505 options are : 
6506  * *-FR* : Tangent and Normal are defined by a Frenet trihedron 
6507  * *-CF* : Tangent is given by Frenet, the Normal is computed to minimize the torsion 
6508  * *-DX Surf* : Tangent and Normal are given by Darboux trihedron, surf must be a shell or a face 
6509  * *-CN dx dy dz* : BiNormal is given by *dx dy dz* 
6510  * *-FX Tx Ty TZ [Nx Ny Nz]* : Tangent and Normal are fixed 
6511  * *-G guide* 
6512
6513 These commands are used to create a shape from wires. One wire is designated as the contour that defines the direction; it is called the spine. At least one other wire is used to define the the sweep profile. 
6514 * **mksweep** initializes the sweep creation and defines the wire to be used as the spine. 
6515 * **addsweep** defines the wire to be used as the profile. 
6516 * **deletesweep** cancels the choice of profile wire, without leaving the mksweep mode. You can re-select a profile wire. 
6517 * **setsweep** commands the algorithms used for the construction of the sweep. 
6518 * **simulsweep** can be used to create a preview of the shape. [n] is the number of sections that are used to simulate the sweep. 
6519 * **buildsweep** creates the sweep using the arguments defined by all the commands. 
6520
6521 **Example:** 
6522 ~~~~~
6523 #create a sweep based on a semi-circular wire using the 
6524 Frenet algorithm 
6525 #create a circular figure 
6526 circle c2 0 0 0 1 0 0 10 
6527 trim c2 c2 -pi/2 pi/2 
6528 mkedge e2 c2 
6529 donly e2 
6530 wire w e2 
6531 whatis w 
6532 mksweep w 
6533 # to display all the options for a sweep 
6534 setsweep 
6535 #to create a sweep using the Frenet algorithm where the 
6536 #normal is computed to minimise the torsion 
6537 setsweep -CF 
6538 addsweep w -R 
6539 # to simulate the sweep with a visual approximation 
6540 simulsweep w 3 
6541 ~~~~~
6542
6543 @subsubsection occt_draw_7_4_5  thrusections
6544
6545 Syntax:  
6546 ~~~~~
6547 thrusections [-N] result issolid isruled wire1 wire2 [..wire..] 
6548 ~~~~~
6549
6550 **thrusections** creates a shape using wires that are positioned in different planes. Each wire selected must have the same number of edges and vertices. 
6551 A bezier curve is generated between the vertices of each wire. The option *[-N]* means that no check is made on wires for direction. 
6552
6553 **Example:** 
6554 ~~~~~
6555 #create three wires in three planes 
6556 polyline w1 0 0 0 5 0 0 5 5 0 2 3 0 
6557 polyline w2 0 1 3 4 1 3 4 4 3 1 3 3 
6558 polyline w3 0 0 5 5 0 5 5 5 5 2 3 5 
6559 # create the shape 
6560 thrusections th issolid isruled w1 w2 w3 
6561 ==thrusections th issolid isruled w1 w2 w3 
6562 Tolerances obtenues   -- 3d : 0 
6563 -- 2d : 0 
6564 ~~~~~
6565
6566
6567 @subsection occt_draw_7_5  Topological transformation
6568
6569 Transformations are applications of matrices. When the transformation is nondeforming, such as translation or rotation, the object is not copied. The topology localcoordinate system feature is used. The copy can be enforced with the **tcopy** command. 
6570
6571   * **tcopy** makes a copy of the structure of a shape.
6572   * **ttranslate**, **trotate**, **tmove**, **reset** move a shape.
6573   * **tmirror**, **tscale** always modify the shape.
6574
6575
6576 @subsubsection occt_draw_7_5_1   tcopy
6577
6578 Syntax: 
6579 ~~~~~
6580 tcopy name toname [name toname ...] 
6581 ~~~~~
6582
6583 Copies the structure of one shape, including the geometry, into another, newer shape. 
6584
6585 **Example:** 
6586 ~~~~~
6587 # create an edge from a curve and copy it 
6588 beziercurve c 3 0 0 0 10 0 0 20 10 0 
6589 mkedge e1 c 
6590 ttranslate e1 0 5 0 
6591 tcopy e1 e2 
6592 ttranslate e2 0 5 0 
6593 # now modify the curve, only e1 and e2 will be modified 
6594 ~~~~~
6595
6596 @subsubsection occt_draw_7_5_2   tmove, treset
6597
6598 Syntax:      
6599 ~~~~~
6600 tmove name [name ...] shape 
6601 reset name [name ...] 
6602 ~~~~~
6603
6604 **tmove** and **reset** modify the location, or the local coordinate system of a shape. 
6605
6606 **tmove** applies the location of a given shape to other shapes. **reset** restores one or several shapes it to its or their original coordinate system(s). 
6607
6608 **Example:** 
6609 ~~~~~
6610 # create two boxes 
6611 box b1 10 10 10 
6612 box b2 20 0 0 10 10 10 
6613 # translate the first box 
6614 ttranslate b1 0 10 0 
6615 # and apply the same location to b2 
6616 tmove b2 b1 
6617 # return to original positions 
6618 reset b1 b2 
6619 ~~~~~
6620
6621 @subsubsection occt_draw_7_5_3   ttranslate, trotate
6622
6623 Syntax:      
6624 ~~~~~
6625 ttranslate [name ...] dx dy dz 
6626 trotate [name ...] x y z dx dy dz angle 
6627 ~~~~~
6628
6629 **ttranslate** translates a set of shapes by a given vector, and **trotate** rotates them by a given angle around an axis. Both commands only modify the location of the shape. 
6630 When creating multiple shapes, the same location is used for all the shapes. (See *toto.tcl* example below. Note that the code of this file can also be directly executed in interactive mode.) 
6631
6632 Locations are very economic in the data structure because multiple occurences of an object share the topological description. 
6633
6634 **Example:** 
6635 ~~~~~
6636 # make rotated copies of a sphere in between two cylinders 
6637 # create a file source toto.tcl 
6638 # toto.tcl code: 
6639 for {set i 0} {$i  360} {incr i 20} { 
6640 copy s s$i 
6641 trotate s$i 0 0 0 0 0 1 $i 
6642
6643
6644 # create two cylinders 
6645 pcylinder c1 30 5 
6646 copy c1 c2 
6647 ttranslate c2 0 0 20 
6648
6649 #create a sphere 
6650 psphere s 3 
6651 ttranslate s 25 0 12.5 
6652
6653 # call the source file for multiple copies 
6654 source toto.tcl 
6655 ~~~~~
6656
6657 @subsubsection occt_draw_7_5_4   tmirror, tscale
6658
6659 Syntax:      
6660 ~~~~~
6661 tmirror name x y z dx dy dz 
6662 tscale name x y z scale 
6663 ~~~~~
6664
6665 * **tmirror** makes a mirror copy of a shape about a plane x,y,z dx,dy,dz. 
6666
6667 * **Tscale** applies a central homotopic mapping to a shape. 
6668
6669 **Example:** 
6670 ~~~~~
6671 # mirror a portion of cylinder about the YZ plane 
6672 pcylinder c1 10 10 270 
6673 copy c1 c2 
6674 tmirror c2 15 0 0 1 0 0 
6675 # and scale it 
6676 tscale c1 0 0 0 0.5 
6677 ~~~~~
6678
6679
6680 @subsection occt_draw_7_6  Old Topological operations
6681
6682   *  **fuse**, **cut**, **common** are boolean operations. 
6683   *  **section**, **psection** compute sections. 
6684   *  **sewing** joins two or more shapes. 
6685
6686
6687 @subsubsection occt_draw_7_6_1  fuse, cut, common
6688
6689 Syntax:      
6690 ~~~~~
6691 fuse name shape1 shape2 
6692 cut name shape1 shape2 
6693 common name shape1 shape2 
6694 ~~~~~
6695
6696 **fuse** creates a new shape by a boolean operation on two existing shapes. The new shape contains both originals intact. 
6697
6698 **cut** creates a new shape which contains all parts of the second shape but only the first shape without the intersection of the two shapes. 
6699
6700 **common** creates a new shape which contains only what is in common between the two original shapes in their intersection. 
6701
6702 **Example:** 
6703 ~~~~~
6704 # all four boolean operations on a box and a cylinder 
6705
6706 box b 0 -10 5 20 20 10 
6707 pcylinder c 5 20 
6708
6709 fuse s1 b c 
6710 ttranslate s1 40 0 0 
6711
6712 cut s2 b c 
6713 ttranslate s2 -40 0 0 
6714
6715 cut s3 c b 
6716 ttranslate s3 0 40 0 
6717
6718 common s4 b c 
6719 ttranslate s4 0 -40 0 
6720 ~~~~~
6721
6722
6723 @subsubsection occt_draw_7_6_2  section, psection
6724
6725 Syntax:      
6726 ~~~~~
6727 section result shape1 shape2 
6728 psection name shape plane 
6729 ~~~~~
6730
6731 **section** creates a compound object consisting of the edges for the intersection curves on the faces of two shapes. 
6732
6733 **psection** creates a planar section consisting of the edges for the intersection curves on the faces of a shape and a plane. 
6734
6735 **Example:** 
6736 ~~~~~
6737 # section line between a cylinder and a box 
6738 pcylinder c 10 20 
6739 box b 0 0 5 15 15 15 
6740 trotate b 0 0 0 1 1 1 20 
6741 section s b c 
6742
6743 # planar section of a cone 
6744 pcone c 10 30 30 
6745 plane p 0 0 15 1 1 2 
6746 psection s c p 
6747 ~~~~~
6748
6749 @subsubsection occt_draw_7_6_3  sewing
6750
6751 Syntax:      
6752 ~~~~~
6753 sewing result [tolerance] shape1 shape2 ... 
6754 ~~~~~
6755
6756 **Sewing** joins shapes by connecting their adjacent or near adjacent edges. Adjacency can be redefined by modifying the tolerance value. 
6757
6758 **Example:** 
6759 ~~~~~
6760 # create two adjacent boxes 
6761 box b 0 0 0 1 2 3 
6762 box b2 0 2 0 1 2 3 
6763 sewing sr b b2 
6764 whatis sr 
6765 sr is a shape COMPOUND FORWARD Free Modified 
6766 ~~~~~
6767
6768 @subsection occt_draw_7_7  New Topological operations
6769
6770
6771 The new algorithm of Boolean operations avoids a large number of weak points and limitations presented in the old boolean operation algorithm. 
6772
6773
6774 @subsubsection occt_draw_7_7_1  bparallelmode
6775
6776 * **bparallelmode** enable or disable parallel mode for boolean operations. Sequential computing is used by default.
6777
6778 Syntax: 
6779 ~~~~~
6780 bparallelmode [1/0]
6781
6782 ~~~~~
6783
6784 Without arguments, bparallelmode shows current state of parallel mode for boolean operations.
6785
6786 * *0* Disable parallel mode, 
6787 * *1* Enable parallel mode 
6788
6789 **Example:**
6790 ~~~~~
6791 # Enable parallel mode for boolean operations.
6792 bparallelmode 1
6793
6794 # Show state of parallel mode for boolean operations.
6795 bparallelmode
6796 ~~~~~
6797
6798 @subsubsection occt_draw_7_7_2  bop, bopfuse, bopcut, boptuc, bopcommon
6799
6800 * **bop** defines *shape1* and *shape2* subject to ulterior Boolean operations 
6801 * **bopfuse** creates a new shape by a boolean operation on two existing shapes. The new shape contains both originals intact. 
6802 * **bopcut** creates a new shape which contains all parts of the second shape but only the first shape without the intersection of the two shapes. 
6803 * **boptuc** is a reverced **bopcut**. 
6804 * **bopcommon** creates a new shape which contains only whatever is in common between the two original shapes in their intersection. 
6805
6806 Syntax:      
6807 ~~~~~
6808 bop shape1 shape2 
6809 bopcommon result 
6810 bopfuse result 
6811 bopcut result 
6812 boptuc result 
6813 ~~~~~
6814
6815 These commands have short variants: 
6816
6817 ~~~~~
6818 bcommon result shape1 shape2 
6819 bfuse result shape1 shape2 
6820 bcut result shape1 shape2 
6821 ~~~~~
6822
6823
6824 **bop** fills data structure (DS) of boolean operation for *shape1* and *shape2*. 
6825 **bopcommon, bopfuse, bopcut, boptuc** commands are used after **bop** command. After one **bop** command it is possible to call several commands from the list above. For example:
6826
6827 ~~~~~
6828 bop S1 S2
6829 bopfuse R
6830 ~~~~~ 
6831
6832
6833 **Example:** 
6834
6835 Let us produce all four boolean operations on a box and a cylinder: 
6836
6837 ~~~~~
6838 box b 0 -10 5 20 20 10 
6839 pcylinder c 5 20 
6840
6841 # fills data structure 
6842 bop b c 
6843
6844 bopfuse s1 
6845 ttranslate s1 40 0 0 
6846
6847 bopcut s2 
6848 ttranslate s2 -40 0 0 
6849
6850 boptuc s3 
6851 ttranslate s3 0 40 0 
6852
6853 bopcommon s4 
6854 ttranslate s4 0 -40 0 
6855 ~~~~~
6856
6857 Now use short variants of the commands: 
6858
6859 ~~~~~
6860 bfuse s11 b c 
6861 ttranslate s11 40 0 100 
6862
6863 bcut s12 b c 
6864 ttranslate s12 -40 0 100 
6865
6866 bcommon s14 b c 
6867 ttranslate s14 0 -40 100 
6868 ~~~~~
6869
6870 @subsubsection occt_draw_7_7_3  bopsection
6871
6872 Syntax:      
6873 ~~~~~
6874 bop shape1 shape2 
6875 bopsection result 
6876 ~~~~~
6877
6878 * **bopsection** creates a compound object consisting of the edges for the intersection curves on the faces of two shapes.
6879 * **bop** fills data structure (DS) of boolean operation for *shape1* and *shape2*. 
6880 * **bopsection** command used after **bop** command.
6881  
6882 Short variant syntax:      
6883 ~~~~~
6884 bsection result shape1 shape2 [-2d/-2d1/-2s2] [-a] 
6885 ~~~~~
6886
6887 * <i>-2d</i>  -  PCurves are computed on both parts. 
6888 * <i>-2d1</i> - PCurves are computed on first part. 
6889 * <i>-2d2</i> - PCurves are computed on second part. 
6890 * <i>-a</i>  -   built geometries  are approximated. 
6891
6892 **Example:** 
6893
6894 Let us build a section line between a cylinder and a box 
6895 ~~~~~
6896 pcylinder c 10 20 
6897 box b 0 0 5 15 15 15 
6898 trotate b 0 0 0 1 1 1 20 
6899 bop b c 
6900 bopsection s 
6901 # Short variant: 
6902 bsection s2 b c 
6903 ~~~~~
6904
6905 @subsubsection occt_draw_7_7_4  bopcheck, bopargshape
6906
6907 Syntax:      
6908 ~~~~~
6909 bopcheck shape 
6910 bopargcheck shape1 [[shape2] [-F/O/C/T/S/U] [/R|F|T|V|E|I|P]] [#BF] 
6911 ~~~~~
6912
6913 **bopcheck** checks a shape for self-interference. 
6914
6915 **bopargcheck** checks the validity of argument(s) for boolean operations. 
6916
6917 * Boolean Operation - (by default a section is made) : 
6918   * **F** (fuse) 
6919   * **O** (common) 
6920   * **C** (cut) 
6921   * **T** (cut21) 
6922   * **S** (section) 
6923   * **U** (unknown) 
6924 * Test Options - (by default all options are enabled) : 
6925   * **R** (disable small edges (shrank range) test) 
6926   * **F** (disable faces verification test) 
6927   * **T** (disable tangent faces searching test) 
6928   * **V** (disable test possibility to merge vertices) 
6929   * **E** (disable test possibility to merge edges) 
6930   * **I** (disable self-interference test) 
6931   * **P** (disable shape type test) 
6932 * Additional Test Options :
6933   * **B** (stop test on first faulty found) - by default it is off; 
6934   * **F** (full output for faulty shapes) - by default the output is made in a short format.
6935
6936 **Note** that Boolean Operation and Test Options are used only for a couple of argument shapes, except for <b>I</b> and <b>P</b> options that are always used to test a couple of shapes as well as a single shape.
6937
6938 **Example:** 
6939 ~~~~~
6940 # checks a shape on self-interference 
6941 box b1 0 0 0 1 1 1 
6942 bopcheck b1 
6943
6944 # checks the validity of argument for boolean cut operations 
6945 box b2 0 0 0 10 10 10 
6946 bopargcheck b1 b2 -C 
6947 ~~~~~
6948
6949 @subsection occt_draw_7_8  Drafting and blending
6950
6951 Drafting is creation of a new shape by tilting faces through an angle. 
6952
6953 Blending is the creation of a new shape by rounding edges to create a fillet. 
6954
6955   * Use the **depouille** command for drafting.
6956   * Use the **chamf** command to add a chamfer to an edge
6957   * Use the **blend** command for simple blending.
6958   * Use **fubl** for a fusion + blending operation.
6959   * Use **buildevol**, **mkevol**, **updatevol** to realize varying radius blending.
6960
6961
6962 @subsubsection occt_draw_7_8_1  depouille
6963
6964 Syntax: 
6965 ~~~~~
6966 dep result shape dirx diry dirz face angle x y x dx dy dz [face angle...] 
6967 ~~~~~
6968
6969 Creates a new shape by drafting one or more faces of a shape. 
6970
6971 Identify the shape(s) to be drafted, the drafting direction, and the face(s) with an angle and an axis of rotation for each face. You can use dot syntax to identify the faces. 
6972
6973 **Example:** 
6974 ~~~~~
6975 # draft a face of a box 
6976 box b 10 10 10 
6977 explode b f 
6978 == b_1 b_2 b_3 b_4 b_5 b_6 
6979
6980 dep a b 0 0 1 b_2 10 0 10 0 1 0 5 
6981 ~~~~~
6982
6983 @subsubsection occt_draw_7_8_2  chamf
6984
6985 Syntax:      
6986 ~~~~~
6987 chamf newname shape edge face S dist 
6988 chamf newname shape edge face dist1 dist2 
6989 chamf newname shape edge face A dist angle 
6990 ~~~~~
6991
6992 Creates a chamfer along the edge between faces using: 
6993
6994   * a equal distances from the edge
6995   * the edge, a face and distance, a second distance
6996   * the edge, a reference face and an angle
6997
6998 Use the dot syntax to select the faces and edges. 
6999
7000 **Examples:**
7001
7002 Let us create a chamfer based on equal distances from the edge (45 degree angle):
7003 ~~~~~
7004 # create a box 
7005 box b 1 2 3 
7006 chamf ch b . . S 0.5 
7007 ==Pick an object 
7008 # select an edge 
7009 ==Pick an object 
7010 # select an adjacent face 
7011 ~~~~~
7012
7013 Let us create a chamfer based on different distances from the selected edge:
7014 ~~~~~
7015 box b 1 2 3 
7016 chamf ch b . . 0.3 0.4 
7017 ==Pick an object 
7018 # select an edge 
7019 ==Pick an object 
7020 # select an adjacent face
7021 ~~~~~
7022  
7023 Let us create a chamfer based on a distance from the edge and an angle:
7024  
7025 ~~~~~
7026 box b 1 2 3 
7027 chamf ch b . . A 0.4 30 
7028 ==Pick an object 
7029 # select an edge 
7030 ==Pick an object 
7031 # select an adjacent face 
7032 ~~~~~
7033
7034 @subsubsection occt_draw_7_8_3  blend
7035
7036 Syntax:      
7037 ~~~~~
7038 blend result object rad1 ed1 rad2 ed2 ... [R/Q/P] 
7039 ~~~~~
7040
7041 Creates a new shape by filleting the edges of an existing shape. The edge must be inside the shape. You may use the dot syntax. Note that the blend is propagated to the edges of tangential planar, cylindrical or conical faces. 
7042
7043 **Example:** 
7044 ~~~~~
7045 # blend a box, click on an edge 
7046 box b 20 20 20 
7047 blend b b 2 . 
7048 ==tolerance ang : 0.01 
7049 ==tolerance 3d : 0.0001 
7050 ==tolerance 2d : 1e-05 
7051 ==fleche : 0.001 
7052 ==tolblend 0.01 0.0001 1e-05 0.001 
7053 ==Pick an object 
7054 # click on the edge you want ot fillet 
7055
7056 ==COMPUTE: temps total 0.1s dont : 
7057 ==- Init + ExtentAnalyse 0s 
7058 ==- PerformSetOfSurf 0.02s 
7059 ==- PerformFilletOnVertex 0.02s 
7060 ==- FilDS 0s 
7061 ==- Reconstruction 0.06s 
7062 ==- SetRegul 0s 
7063 ~~~~~
7064
7065 @subsubsection occt_draw_7_8_4  fubl
7066
7067 Syntax:      
7068 ~~~~~
7069 fubl name shape1 shape2 radius
7070 ~~~~~ 
7071  
7072 Creates a boolean fusion of two shapes and then blends (fillets) the intersection edges using the given radius. 
7073
7074 **Example:** 
7075 ~~~~~
7076 # fuse-blend two boxes 
7077 box b1 20 20 5 
7078 copy b1 b2 
7079 ttranslate b2 -10 10 3 
7080 fubl a b1 b2 1 
7081 ~~~~~
7082
7083
7084 @subsubsection occt_draw_7_8_5  mkevol, updatevol, buildevol
7085
7086 Syntax:      
7087 ~~~~~
7088 mkevol result object (then use updatevol) [R/Q/P] 
7089 updatevol edge u1 radius1 [u2 radius2 ...] 
7090 buildevol 
7091 ~~~~~
7092
7093 These three commands work together to create fillets with evolving radii. 
7094
7095 * **mkevol** allows specifying the shape and the name of the result. It returns the tolerances of the fillet. 
7096 * **updatevol** allows describing the filleted edges you want to create. For each edge, you give a set of coordinates: parameter and radius and the command prompts you to pick the edge of the shape which you want to modify. The parameters will be calculated along the edges and the radius function applied to the whole edge. 
7097 * **buildevol** produces the result described previously in **mkevol** and **updatevol**. 
7098
7099 **Example:** 
7100 ~~~~~
7101 # makes an evolved radius on a box 
7102 box b 10 10 10 
7103 mkevol b b 
7104 ==tolerance ang : 0.01 
7105 ==tolerance 3d : 0.0001 
7106 ==tolerance 2d : 1e-05 
7107 ==fleche : 0.001 
7108 ==tolblend 0.01 0.0001 1e-05 0.001 
7109
7110 # click an edge 
7111 updatevol . 0 1 1 3 2 2 
7112 ==Pick an object 
7113
7114 buildevol 
7115 ==Dump of SweepApproximation 
7116 ==Error 3d = 1.28548881203818e-14 
7117 ==Error 2d = 1.3468326936926e-14 , 
7118 ==1.20292299999388e-14 
7119 ==2 Segment(s) of degree 3 
7120
7121 ==COMPUTE: temps total 0.91s dont : 
7122 ==- Init + ExtentAnalyse 0s 
7123 ==- PerformSetOfSurf 0.33s 
7124 ==- PerformFilletOnVertex 0.53s 
7125 ==- FilDS 0.01s 
7126 ==- Reconstruction 0.04s 
7127 ==- SetRegul 0s 
7128 ~~~~~
7129
7130
7131 @subsection occt_draw_7_9  Analysis of topology and geometry
7132
7133 Analysis of shapes includes commands to compute length, area, volumes and inertial properties. 
7134
7135   * Use **lprops**, **sprops**, **vprops** to compute integral properties.
7136   * Use **bounding** to display the bounding box of a shape.
7137   * Use **distmini** to calculate the minimum distance between two shapes.
7138   * Use **xdistef**, **xdistcs**, **xdistcc**, **xdistc2dc2dss**, **xdistcc2ds** to check the distance between two objects on even grid.
7139
7140
7141 @subsubsection occt_draw_7_9_1  lprops, sprops, vprops
7142
7143 Syntax:      
7144 ~~~~~
7145 lprops shape 
7146 sprops shape 
7147 vprops shape 
7148 ~~~~~
7149
7150 * **lprops** computes the mass properties of all edges in the shape with a linear density of 1;
7151 * **sprops** of all faces with a surface density of 1;
7152 * **vprops** of all solids with a density of 1. 
7153
7154 All three commands print the mass, the coordinates of the center of gravity, the matrix of inertia and the moments. Mass is either the length, the area or the volume. The center and the main axis of inertia are displayed. 
7155
7156 **Example:** 
7157 ~~~~~
7158 # volume of a cylinder 
7159 pcylinder c 10 20 
7160 vprops c 
7161 == results 
7162 Mass : 6283.18529981086 
7163
7164 Center of gravity : 
7165 X = 4.1004749224903e-06 
7166 Y = -2.03392858349861e-16 
7167 Z = 9.9999999941362 
7168
7169 Matrix of Inertia : 
7170 366519.141445068                    5.71451850691484e-12 
7171 0.257640437382627 
7172 5.71451850691484e-12                366519.141444962 
7173 2.26823064169991e-10                0.257640437382627 
7174 2.26823064169991e-10                314159.265358863 
7175
7176 Moments : 
7177 IX = 366519.141446336 
7178 IY = 366519.141444962 
7179 I.Z = 314159.265357595 
7180 ~~~~~
7181
7182
7183 @subsubsection occt_draw_7_9_2   bounding
7184
7185 Syntax:      
7186 ~~~~~
7187 bounding shape 
7188 ~~~~~
7189
7190 Displays the bounding box of a shape. The bounding box is a cuboid created with faces parallel to the x, y, and z planes. The command returns the dimension values of the the box, *xmin ymin zmin xmax ymax zmax.* 
7191
7192 **Example:** 
7193 ~~~~~
7194 # bounding box of a torus 
7195 ptorus t 20 5 
7196 bounding t 
7197 ==-27.059805107309852              -27.059805107309852 - 
7198 5.0000001000000003 
7199 ==27.059805107309852               27.059805107309852 
7200 5.0000001000000003 
7201 ~~~~~
7202
7203 @subsubsection occt_draw_7_9_3  distmini
7204
7205 Syntax:      
7206 ~~~~~
7207 distmini name Shape1 Shape2 
7208 ~~~~~
7209
7210 Calculates the minimum distance between two shapes. The calculation returns the number of solutions, If more than one solution exists. The options are displayed in the viewer(red) and the results are listed in the shell window. The *distmini* lines are considered as shapes which have a value v. 
7211
7212 **Example:** 
7213 ~~~~~
7214 box b 0 0 0 10 20 30 
7215 box b2 30 30 0 10 20 30 
7216 distmini d1 b b2 
7217 ==the distance value is : 22.3606797749979 
7218 ==the number of solutions is :2 
7219
7220 ==solution number 1 
7221 ==the type of the solution on the first shape is 0 
7222 ==the type of the solution on the second shape is 0 
7223 ==the coordinates of the point on the first shape are: 
7224 ==X=10 Y=20 Z=30 
7225 ==the coordinates of the point on the second shape 
7226 are: 
7227 ==X=30 Y=30 Z=30 
7228
7229 ==solution number 2: 
7230 ==the type of the solution on the first shape is 0 
7231 ==the type of the solution on the second shape is 0 
7232 ==the coordinates of the point on the first shape are: 
7233 ==X=10 Y=20 Z=0 
7234 ==the coordinates of the point on the second shape 
7235 are: 
7236 ==X=30 Y=30 Z=0 
7237
7238 ==d1_val d1 d12 
7239 ~~~~~
7240
7241 @subsubsection occt_draw_7_9_4 xdistef, xdistcs, xdistcc, xdistc2dc2dss, xdistcc2ds 
7242
7243 Syntax:
7244 ~~~~~
7245 xdistef edge face
7246 xdistcs curve surface firstParam lastParam [NumberOfSamplePoints]
7247 xdistcc curve1 curve2 startParam finishParam [NumberOfSamplePoints]
7248 xdistcc2ds c curve2d surf startParam finishParam [NumberOfSamplePoints]
7249 xdistc2dc2dss curve2d_1 curve2d_2 surface_1 surface_2 startParam finishParam [NumberOfSamplePoints]
7250 ~~~~~
7251
7252 It is assumed that curves have the same parametrization range and *startParam* is less than *finishParam*.
7253
7254 Commands with prefix *xdist* allow checking the distance between two objects on even grid:
7255   * **xdistef** - distance between edge and face;
7256   * **xdistcs** - distance between curve and surface. This means that the projection of each sample point to the surface is computed;
7257   * **xdistcc** - distance between two 3D curves;
7258   * **xdistcc2ds** - distance between 3d curve and 2d curve on surface;
7259   * **xdistc2dc2dss** - distance between two 2d curves on surface.
7260   
7261 **Examples**
7262 ~~~~~
7263 bopcurves b1 b2 -2d 
7264 mksurf s1 b1
7265 mksurf s2 b2
7266 xdistcs c_1 s1 0 1 100
7267 xdistcc2ds c_1 c2d2_1 s2 0 1
7268 xdistc2dc2dss c2d1_1 c2d2_1 s1 s2 0 1 1000
7269 ~~~~~
7270
7271
7272 @subsection occt_draw_7_10  Surface creation
7273
7274 Surface creation commands include surfaces created from boundaries and from spaces between shapes. 
7275   * **gplate** creates a surface from a boundary definition.
7276   * **filling** creates a surface from a group of surfaces.
7277
7278 @subsubsection occt_draw_7_10_1   gplate,
7279
7280 Syntax: 
7281 ~~~~~
7282 gplate result nbrcurfront nbrpntconst [SurfInit] [edge 0] [edge tang (1:G1;2:G2) surf]...[point] [u v tang (1:G1;2:G2) surf] ... 
7283 ~~~~~
7284
7285 Creates a surface from a defined boundary. The boundary can be defined using edges, points, or other surfaces. 
7286
7287 **Example:**
7288 ~~~~~
7289 plane p 
7290 trim p p -1 3 -1 3 
7291 mkface p p 
7292
7293 beziercurve c1 3 0 0 0 1 0 1 2 0 0 
7294 mkedge e1 c1 
7295 tcopy e1 e2 
7296 tcopy e1 e3 
7297
7298 ttranslate e2 0 2 0 
7299 trotate e3 0 0 0 0 0 1 90 
7300 tcopy e3 e4 
7301 ttranslate e4 2 0 0 
7302 # create the surface 
7303 gplate r1 4 0 p e1 0 e2 0 e3 0 e4 0 
7304 == 
7305 ======== Results =========== 
7306 DistMax=8.50014503228635e-16 
7307 * GEOMPLATE END* 
7308 Calculation time: 0.33 
7309 Loop number: 1 
7310 Approximation results 
7311 Approximation error : 2.06274907619957e-13 
7312 Criterium error : 4.97600631215754e-14 
7313
7314 #to create a surface defined by edges and passing through a point 
7315 # to define the border edges and the point 
7316 plane p 
7317 trim p p -1 3 -1 3 
7318 mkface p p 
7319
7320 beziercurve c1 3 0 0 0 1 0 1 2 0 0 
7321 mkedge e1 c1 
7322 tcopy e1 e2 
7323 tcopy e1 e3 
7324
7325 ttranslate e2 0 2 0 
7326 trotate e3 0 0 0 0 0 1 90 
7327 tcopy e3 e4 
7328 ttranslate e4 2 0 0 
7329 # to create a point 
7330 point pp 1 1 0 
7331 # to create the surface 
7332 gplate r2 4 1 p e1 0 e2 0 e3 0 e4 0 pp 
7333 == 
7334 ======== Results =========== 
7335 DistMax=3.65622157610934e-06 
7336 * GEOMPLATE END* 
7337 Calculculation time: 0.27 
7338 Loop number: 1 
7339 Approximation results 
7340 Approximation error : 0.000422195884750181 
7341 Criterium error : 3.43709808053967e-05 
7342 ~~~~~
7343
7344 @subsubsection occt_draw_7_10_2   filling, fillingparam
7345
7346 Syntax:      
7347 ~~~~~
7348 filling result nbB nbC nbP [SurfInit] [edge][face]order... 
7349 edge[face]order... point/u v face order... 
7350 ~~~~~
7351
7352 Creates a surface between borders. This command uses the **gplate** algorithm but creates a surface that is tangential to the adjacent surfaces. The result is a smooth continuous surface based on the G1 criterion. 
7353
7354 To define the surface border: 
7355
7356   * enter the number of edges, constraints, and points
7357   * enumerate the edges, constraints and points
7358
7359 The surface can pass through other points. These are defined after the border definition. 
7360
7361 You can use the *fillingparam* command to access the filling parameters. 
7362
7363 The options are: 
7364
7365  * <i>-l</i> : to list current values 
7366  * <i>-i</i> : to set default values 
7367  * <i>-rdeg nbPonC nbIt anis </i> : to set filling options 
7368  * <i>-c t2d t3d tang tcur </i> : to set tolerances 
7369  * <i>-a maxdeg maxseg </i> : Approximation option 
7370
7371 **Example:** 
7372 ~~~~~
7373 # to create four curved survaces and a point 
7374 plane p 
7375 trim p p -1 3 -1 3 
7376 mkface p p 
7377
7378 beziercurve c1 3 0 0 0 1 0 1 2 0 0 
7379 mkedge e1 c1 
7380 tcopy e1 e2 
7381 tcopy e1 e3 
7382
7383 ttranslate e2 0 2 0 
7384 trotate e3 0 0 0 0 0 1 90 
7385 tcopy e3 e4 
7386 ttranslate e4 2 0 0 
7387
7388 point pp 1 1 0 
7389
7390 prism f1 e1 0 -1 0 
7391 prism f2 e2 0 1 0 
7392 prism f3 e3 -1 0 0 
7393 prism f4 e4 1 0 0 
7394
7395 # to create a tangential surface 
7396 filling r1 4 0 0 p e1 f1 1 e2 f2 1 e3 f3 1 e4 f4 1 
7397 # to create a tangential surface passing through point pp 
7398 filling r2 4 0 1 p e1 f1 1 e2 f2 1 e3 f3 1 e4 f4 1 pp# 
7399 # to visualise the surface in detail 
7400 isos r2 40 
7401 # to display the current filling parameters 
7402 fillingparam -l 
7403 == 
7404 Degree = 3 
7405 NbPtsOnCur = 10 
7406 NbIter = 3 
7407 Anisotropie = 0 
7408 Tol2d = 1e-05 
7409 Tol3d = 0.0001 
7410 TolAng = 0.01 
7411 TolCurv = 0.1 
7412
7413 MaxDeg = 8 
7414 MaxSegments = 9 
7415 ~~~~~
7416
7417
7418 @subsection occt_draw_7_11  Complex Topology
7419
7420 Complex topology is the group of commands that modify the topology of shapes. This includes feature modeling. 
7421
7422
7423 @subsubsection occt_draw_7_11_1  offsetshape, offsetcompshape
7424
7425 Syntax:      
7426 ~~~~~
7427 offsetshape r shape offset [tol] [face ...] 
7428 offsetcompshape r shape offset [face ...] 
7429 ~~~~~
7430
7431 **offsetshape** and **offsetcompshape** assign a thickness to the edges of a shape. The *offset* value can be negative or positive. This value defines the thickness and direction of the resulting shape. Each face can be removed to create a hollow object. 
7432
7433 The resulting shape is based on a calculation of intersections. In case of simple shapes such as a box, only the adjacent intersections are required and you can use the **offsetshape** command. 
7434
7435 In case of complex shapes, where intersections can occur from non-adjacent edges and faces, use the **offsetcompshape** command. **comp** indicates complete and requires more time to calculate the result. 
7436
7437 The opening between the object interior and exterior is defined by the argument face or faces. 
7438
7439 **Example:** 
7440 ~~~~~
7441 box b1 10 20 30 
7442 explode b1 f 
7443 == b1_1 b1_2 b1_3 b1_4 b1_5 b1_6 
7444 offsetcompshape r b1 -1 b1_3 
7445 ~~~~~
7446
7447 @subsubsection occt_draw_7_11_2  featprism, featdprism, featrevol, featlf, featrf
7448
7449 Syntax:      
7450 ~~~~~
7451 featprism shape element skface Dirx Diry Dirz Fuse(0/1/2) Modify(0/1) 
7452 featdprism shape face skface angle Fuse(0/1/2) Modify(0/1) 
7453 featrevol shape element skface Ox Oy Oz Dx Dy Dz Fuse(0/1/2) Modify(0/1) 
7454 featlf shape wire plane DirX DirY DirZ DirX DirY DirZ Fuse(0/1/2) Modify(0/1) 
7455 featrf shape wire plane X Y Z DirX DirY DirZ Size Size Fuse(0/1/2) Modify(0/1) 
7456 featperform prism/revol/pipe/dprism/lf result [[Ffrom] Funtil] 
7457 featperformval prism/revol/dprism/lf result value 
7458 ~~~~~
7459
7460 **featprism** loads the arguments for a prism with contiguous sides normal to the face. 
7461
7462 **featdprism** loads the arguments for a prism which is created in a direction normal to the face and includes a draft angle. 
7463
7464 **featrevol** loads the arguments for a prism with a circular evolution. 
7465
7466 **featlf** loads the arguments for a linear rib or slot. This feature uses planar faces and a wire as a guideline. 
7467
7468 **featrf** loads the arguments for a rib or slot with a curved surface. This feature uses a circular face and a wire as a guideline. 
7469
7470 **featperform** loads the arguments to create the feature. 
7471
7472 **featperformval** uses the defined arguments to create a feature with a limiting value. 
7473
7474 All the features are created from a set of arguments which are defined when you initialize the feature context. Negative values can be used to create depressions. 
7475
7476 **Examples:** 
7477
7478 Let us create a feature prism with a draft angle and a normal direction :
7479
7480 ~~~~~
7481 # create a box with a wire contour on the upper face 
7482 box b 1 1 1 
7483 profil f O 0 0 1 F 0.25 0.25 x 0.5 y 0.5 x -0.5 
7484 explode b f 
7485 # loads the feature arguments defining the draft angle 
7486 featdprism b f b_6 5 1 0 
7487 # create the feature 
7488 featperformval dprism r 1 
7489 ==BRepFeat_MakeDPrism::Perform(Height) 
7490 BRepFeat_Form::GlobalPerform () 
7491  Gluer 
7492  still Gluer 
7493  Gluer result 
7494 ~~~~~
7495
7496 Let us  create a feature prism with circular direction :
7497
7498 ~~~~~
7499 # create a box with a wire contour on the upper face 
7500 box b 1 1 1 
7501 profil f O 0 0 1 F 0.25 0.25 x 0.5 y 0.5 x -0.5 
7502 explode b f 
7503 # loads the feature arguments defining a rotation axis 
7504 featrevol b f b_6 1 0 1 0 1 0 1 0 
7505 featperformval revol r 45 
7506 ==BRepFeat_MakeRevol::Perform(Angle) 
7507 BRepFeat_Form::GlobalPerform () 
7508  Gluer 
7509  still Gluer 
7510  Gluer result 
7511 ~~~~~
7512
7513
7514 Let us create a slot using the linear feature :
7515
7516 ~~~~~
7517 #create the base model using the multi viewer 
7518 mu4 
7519 profile p x 5 y 1 x -3 y -0.5 x -1.5 y 0.5 x 0.5 y 4 x -1 y -5 
7520 prism pr p 0 0 1 
7521 # create the contour for the linear feature 
7522 vertex v1 -0.2 4 0.3 
7523 vertex v2 0.2 4 0.3 
7524 vertex v3 0.2 0.2 0.3 
7525 vertex v4 4 0.2 0.3 
7526 vertex v5 4 -0.2 0.3 
7527 edge e1 v1 v2 
7528 edge e2 v2 v3 
7529 edge e3 v3 v4 
7530 edge e4 v4 v5 
7531 wire w e1 e2 e3 e4 
7532 # define a plane 
7533 plane pl 0.2 0.2 0.3 0 0 1 
7534 # loads the linear feature arguments 
7535 featlf pr w pl 0 0 0.3 0 0 0 0 1 
7536 featperform lf result 
7537 ~~~~~
7538
7539 Let us create a rib using the revolution feature :
7540
7541 ~~~~~
7542 #create the base model using the multi viewer 
7543 mu4 
7544 pcylinder c1 3 5 
7545 # create the contour for the revolution feature 
7546 profile w c 1 190 WW 
7547 trotate w 0 0 0 1 0 0 90 
7548 ttranslate w -3 0 1 
7549 trotate w -3 0 1.5 0 0 1 180 
7550 plane pl -3 0 1.5 0 1 0 
7551 # loads the revolution feature arguments 
7552 featrf c1 w pl 0 0 0 0 0 1 0.3 0.3 1 1 
7553 featperform rf result 
7554 ~~~~~
7555
7556 @subsubsection occt_draw_7_11_3  draft
7557
7558 Syntax: 
7559 ~~~~~
7560 draft result shape dirx diry dirz angle shape/surf/length [-IN/-OUT] [Ri/Ro] [-Internal] 
7561 ~~~~~
7562
7563 Computes a draft angle surface from a wire. The surface is determined by the draft direction, the inclination of the draft surface, a draft angle, and a limiting distance. 
7564
7565   * The draft angle is measured in radians.
7566   * The draft direction is determined by the argument -INTERNAL
7567   * The argument Ri/Ro deftermines wether the corner edges of the draft surfaces are angular or rounded.
7568   * Arguments that can be used to define the surface distance are:
7569    * length, a defined distance
7570    * shape, until the surface contacts a shape
7571    * surface, until the surface contacts a surface.
7572
7573 **Note** that the original aim of adding a draft angle to a shape is to produce a shape which can be removed easily from a mould. The Examples below use larger angles than are used normally and the calculation results returned are not indicated.
7574
7575 **Example:** 
7576 ~~~~~
7577 # to create a simple profile 
7578 profile p F 0 0 x 2 y 4 tt 0 4 w 
7579 # creates a draft with rounded angles 
7580 draft res p 0 0 1 3 1 -Ro 
7581 # to create a profile with an internal angle 
7582 profile p F 0 0 x 2 y 4 tt 1 1.5 tt 0 4 w 
7583 # creates a draft with rounded external angles 
7584 draft res p 0 0 1 3 1 -Ro 
7585 ~~~~~
7586
7587 @subsubsection occt_draw_7_11_4  deform
7588
7589 Syntax:      
7590 ~~~~~
7591 deform newname name CoeffX CoeffY CoeffZ
7592 ~~~~~
7593
7594 Modifies the shape using the x, y, and z coefficients. You can reduce or magnify the shape in the x,y, and z directions. 
7595  
7596 **Example:** 
7597 ~~~~~
7598 pcylinder c 20 20 
7599 deform a c 1 3 5 
7600 # the conversion to bspline is followed by the 
7601 deformation 
7602 ~~~~~
7603
7604
7605 @subsubsection occt_draw_7_11_5 nurbsconvert
7606
7607 Syntax:
7608  
7609 ~~~~~
7610 nurbsconvert result name [result name] 
7611 ~~~~~
7612
7613 Changes the NURBS curve definition of a shape to a Bspline curve definition. This conversion is required for assymetric deformation and prepares the arguments for other commands such as **deform**. The conversion can be necessary when transferring shape data to other applications. 
7614
7615
7616 @subsection occt_draw_7_12  Texture Mapping to a Shape
7617
7618 Texture mapping allows you to map textures on a shape. Textures are texture image files and several are predefined. You can control the number of occurrences of the texture on a face, the position of a texture and the scale factor of the texture. 
7619
7620 @subsubsection occt_draw_7_12_1  vtexture
7621
7622 Syntax:      
7623 ~~~~~
7624 vtexture NameOfShape TextureFile 
7625 vtexture NameOfShape 
7626 vtexture NameOfShape ? 
7627 vtexture NameOfShape IdOfTexture 
7628 ~~~~~
7629
7630 **TextureFile** identifies the file containing the texture you want. The same syntax without **TextureFile** disables texture mapping. The question-mark <b>?</b> lists available textures. **IdOfTexture** allows applying predefined textures. 
7631
7632 @subsubsection occt_draw_7_12_2  vtexscale
7633
7634 Syntax:      
7635 ~~~~~
7636 vtexscale NameOfShape ScaleU ScaleV 
7637 vtexscale NameOfShape ScaleUV 
7638 vtexscale NameOfShape 
7639 ~~~~~
7640
7641 *ScaleU* and *Scale V* allow scaling the texture according to the U and V parameters individually, while *ScaleUV* applies the same scale to both parameters. 
7642
7643 The syntax without *ScaleU*, *ScaleV* or *ScaleUV* disables texture scaling. 
7644
7645 @subsubsection occt_draw_7_12_3  vtexorigin
7646
7647 Syntax:       
7648 ~~~~~
7649 vtexorigin NameOfShape UOrigin VOrigin 
7650 vtexorigin NameOfShape UVOrigin 
7651 vtexorigin NameOfShape 
7652 ~~~~~
7653
7654 *UOrigin* and *VOrigin* allow placing the texture according to the U and V parameters individually, while *UVOrigin* applies the same position value to both parameters. 
7655
7656 The syntax without *UOrigin*, *VOrigin* or *UVOrigin* disables origin positioning. 
7657
7658 @subsubsection occt_draw_7_12_4  vtexrepeat
7659
7660 Syntax:       
7661 ~~~~~
7662 vtexrepeat NameOfShape URepeat VRepeat 
7663 vtexrepeat NameOfShape UVRepeat 
7664 vtexrepeat NameOfShape 
7665 ~~~~~
7666
7667 *URepeat* and *VRepeat* allow repeating the texture along the U and V parameters individually, while *UVRepeat* applies the same number of repetitions for both parameters. 
7668
7669 The same syntax without *URepeat*, *VRepeat* or *UVRepeat* disables texture repetition. 
7670
7671 @subsubsection occt_draw_7_12_5  vtexdefault
7672
7673 Syntax:       
7674 ~~~~~
7675 vtexdefault NameOfShape 
7676 ~~~~~
7677
7678 *Vtexdefault* sets or resets the texture mapping default parameters. 
7679
7680 The defaults are: 
7681
7682  * *URepeat = VRepeat = 1* no repetition 
7683  * *UOrigin = VOrigin = 1*  origin set at (0,0) 
7684  * *UScale = VScale = 1*  texture covers 100% of the face 
7685  
7686  
7687 @section occt_draw_20 General Fuse Algorithm commands
7688
7689 This chapter describes existing commands of Open CASCADE Draw Test Harness that are used for debugging of General Fuse Algorithm (GFA). It is also applicable for Boolean Operations Algorithm (BOA) and Partition Algorithm (PA) because these algorithms are subclasses of GFA. 
7690
7691 See @ref occt_user_guides__boolean_operations "Boolean operations" user's guide for the description of these algorithms.
7692
7693 @subsection occt_draw_20_1 Definitions
7694
7695 The following terms and definitions are used in this document:
7696 * **Objects** – list of shapes that are arguments of the algorithm.
7697 * **Tools** – list of shapes that are arguments of the algorithm. Difference between Objects and Tools is defined by specific requirements of the operations (Boolean Operations, Partition Operation).
7698 * **DS** – internal data structure used by the algorithm (*BOPDS_DS* object).
7699 * **PaveFiller** – intersection part of the algorithm (*BOPAlgo_PaveFiller* object).
7700 * **Builder** – builder part of the algorithm (*BOPAlgo_Builder* object).
7701 * **IDS Index** – the index of the vector *myLines*.
7702
7703 @subsection occt_draw_20_2 General commands
7704
7705 * **bclearobjects** - clears the list of Objects;       
7706 * **bcleartools**       - clears the list of Tools;     
7707 * **baddobjects** *S1 S2...Sn*  - adds shapes *S1, S2, ... Sn* as Objects;      
7708 * **baddtools** *S1 S2...Sn* - adds shapes *S1, S2, ... Sn* as Tools;
7709 * **bfillds** - performs the Intersection Part of the Algorithm;        
7710 * **bbuild** *r* - performs the Building Part of the Algorithm; *r* is the resulting shape.
7711
7712 @subsection occt_draw_20_3 Commands for Intersection Part
7713
7714 All commands listed below  are available when the Intersection Part of the algorithm is done (i.e. after the command *bfillds*).
7715
7716 @subsubsection occt_draw_20_3_1 bopds
7717         
7718 Syntax: 
7719 ~~~~
7720 bopds –v [e, f]       
7721 ~~~~
7722
7723 Displays:
7724 * all BRep shapes of arguments that are in the DS [default];
7725 * <i>–v</i> : only vertices of arguments that are in the DS;
7726 * <i>–e</i> : only edges of arguments that are in the DS;
7727 * <i>–f</i> : only faces of arguments that are in the DS.
7728
7729 @subsubsection occt_draw_20_3_2 bopdsdump
7730
7731 Prints contents of the DS. 
7732
7733 Example:
7734
7735 ~~~~
7736  Draw[28]> bopdsdump
7737  *** DS ***
7738  Ranges:2                       number of ranges
7739  range: 0 33            indices for range 1
7740  range: 34 67           indices for range 2
7741  Shapes:68              total number of source shapes
7742  0 : SOLID { 1 }
7743  1 : SHELL { 2 12 22 26 30 32 }
7744  2 : FACE { 4 5 6 7 8 9 10 11 }
7745  3 : WIRE { 4 7 9 11 }
7746  4 : EDGE { 5 6 }
7747  5 : VERTEX { }
7748  6 : VERTEX { }
7749  7 : EDGE { 8 5 }
7750  8 : VERTEX { }
7751 ~~~~
7752
7753 @code 0 : SOLID { 1 } @endcode has the following meaning:
7754 * *0* – index in the DS;
7755 * *SOLID* – type of the shape;
7756 * <i>{ 1 }</i> – a DS index of the successors.
7757
7758 @subsubsection occt_draw_20_3_3 bopindex
7759
7760 Syntax:
7761 ~~~~
7762 bopindex S
7763 ~~~~
7764 Prints DS index of shape *S*.
7765
7766 @subsubsection occt_draw_20_3_4 bopiterator
7767
7768 Syntax:
7769 ~~~~~
7770 bopiterator [t1 t2]
7771 ~~~~~
7772
7773 Prints pairs of DS indices of source shapes that are intersected in terms of bounding boxes.
7774
7775 <i>[t1 t2]</i> are types of the shapes:
7776 * *7* - vertex;
7777 * *6* - edge;
7778 * *4* – face.
7779
7780 Example:
7781 ~~~~
7782  Draw[104]> bopiterator 6 4
7783  EF: ( z58 z12 )
7784  EF: ( z17 z56 )
7785  EF: ( z19 z64 )
7786  EF: ( z45 z26 )
7787  EF: ( z29 z36 )
7788  EF: ( z38 z32 )
7789 ~~~~
7790
7791 * *bopiterator 6 4* prints pairs of indices for types: edge/face;
7792 * *z58 z12* - DS indices of intersecting edge and face.
7793
7794
7795 @subsubsection occt_draw_20_3_5 bopinterf
7796
7797 Syntax: 
7798 ~~~~
7799 bopinterf t
7800 ~~~~
7801
7802 Prints contents of *myInterfTB* for the type of interference *t*:
7803 * *t=0* : vertex/vertex;
7804 * *t=1* : vertex/edge;
7805 * *t=2* : edge/edge;
7806 * *t=3* : vertex/face;
7807 * *t=4* : edge/face.
7808
7809 Example:
7810 ~~~~
7811  Draw[108]> bopinterf 4
7812  EF: (58, 12, 68), (17, 56, 69), (19, 64, 70), (45, 26, 71), (29, 36, 72), (38, 32, 73), 6 EF found.
7813 ~~~~
7814
7815 Here, record <i>(58, 12, 68)</i> means:
7816 * *58* – a DS index of the edge;
7817 * *12* – a DS index of the face;
7818 * *68* – a DS index of the new vertex.
7819
7820 @subsubsection occt_draw_20_3_6 bopsp   
7821
7822 Displays split edges. 
7823
7824 Example:
7825 ~~~~
7826  Draw[33]> bopsp
7827  edge 58 : z58_74 z58_75
7828  edge 17 : z17_76 z17_77
7829  edge 19 : z19_78 z19_79
7830  edge 45 : z45_80 z45_81
7831  edge 29 : z29_82 z29_83
7832  edge 38 : z38_84 z38_85
7833 ~~~~
7834
7835 * *edge 58* – 58 is a DS index of the original edge.
7836 * *z58_74 z58_75* – split edges, where 74, 75 are DS indices of the split edges.
7837
7838 @subsubsection occt_draw_20_3_7 bopcb
7839
7840 Syntax:
7841 ~~~~
7842 bopcb [nE]
7843 ~~~~
7844
7845 Prints Common Blocks for:
7846 * all source edges (by default);
7847 * the source edge with the specified index *nE*.
7848
7849 Example:
7850 ~~~~
7851  Draw[43]> bopcb 17
7852  -- CB:
7853  PB:{ E:71 orE:17 Pave1: { 68 3.000 } Pave2: { 18 10.000 } }
7854  Faces: 36
7855 ~~~~
7856
7857 This command dumps common blocks for the source edge with index 17. 
7858 * *PB* – information about the Pave Block;
7859         * *71* – a DS index of the split edge
7860         * *17* – a DS index of the original edge
7861 * <i>Pave1 : { 68 3.000 }</i> – information about the Pave:
7862         * *68* – a DS index of the vertex of the pave
7863         * *3.000* – a parameter of vertex 68 on edge 17
7864 * *Faces: 36* – 36 is a DS index of the face the common block belongs to. 
7865
7866
7867 @subsubsection occt_draw_20_3_8 bopfin
7868
7869 Syntax:
7870
7871 ~~~~
7872 bopfin nF       
7873 ~~~~
7874 Prints Face Info about IN-parts for the face with DS index *nF*.
7875
7876 Example:
7877 ~~~~
7878  Draw[47]> bopfin 36
7879  pave blocks In:
7880  PB:{ E:71 orE:17 Pave1: { 68 3.000 } Pave2: { 18 10.000 } }
7881  PB:{ E:75 orE:19 Pave1: { 69 3.000 } Pave2: { 18 10.000 } }
7882  vrts In:
7883  18
7884 ~~~~
7885
7886
7887 * <i>PB:{ E:71 orE:17 Pave1: { 68 3.000 } Pave2: { 18 10.000 } }</i> – information about the Pave Block; 
7888 * <i>vrts In ... 18 – 18</i> a DS index of the vertex IN the face.
7889
7890 @subsubsection occt_draw_20_3_9 bopfon
7891
7892 Syntax:
7893 ~~~~
7894 bopfon nF
7895 ~~~~
7896 Print Face Info about ON-parts for the face with DS index *nF*.
7897
7898 Example:
7899 ~~~~
7900  Draw[58]> bopfon 36
7901  pave blocks On:
7902  PB:{ E:72 orE:38 Pave1: { 69 0.000 } Pave2: { 68 10.000 } }
7903  PB:{ E:76 orE:45 Pave1: { 69 0.000 } Pave2: { 71 10.000 } }
7904  PB:{ E:78 orE:43 Pave1: { 71 0.000 } Pave2: { 70 10.000 } }
7905  PB:{ E:74 orE:41 Pave1: { 68 0.000 } Pave2: { 70 10.000 } }
7906  vrts On:
7907  68 69 70 71
7908 ~~~~
7909
7910 * <i>PB:{ E:72 orE:38 Pave1: { 69 0.000 } Pave2: { 68 10.000 } }</i> – information about the Pave Block; 
7911 * <i>vrts On: ... 68 69 70 71 – 68, 69, 70, 71 </i> DS indices of the vertices ON the face.
7912
7913 @subsubsection occt_draw_20_3_10 bopwho
7914
7915 Syntax:
7916 ~~~~
7917 bopwho nS
7918 ~~~~
7919
7920 Prints the information about the shape with DS index *nF*.
7921
7922 Example:
7923 ~~~~
7924  Draw[116]> bopwho 5
7925  rank: 0
7926 ~~~~
7927
7928 * *rank: 0* – means that shape 5 results from the Argument with index 0.
7929
7930 Example:
7931 ~~~~
7932  Draw[118]> bopwho 68
7933  the shape is new
7934  EF: (58, 12),
7935  FF curves: (12, 56),
7936  FF curves: (12, 64),
7937 ~~~~
7938
7939 This means that shape 68 is a result of the following interferences:
7940 * *EF: (58, 12)* – edge 58 / face 12
7941 * *FF curves: (12, 56)* – edge from the intersection curve between faces 12 and 56
7942 * *FF curves: (12, 64)* – edge from the intersection curve between faces 12 and 64
7943
7944 @subsubsection occt_draw_20_3_11 bopnews
7945
7946 Syntax:
7947 ~~~~
7948 bopnews -v [-e]
7949 ~~~~
7950
7951 * <i>-v</i> - displays all new vertices produced during the operation;
7952 * <i>-e</i> - displays all new edges produced during the operation.
7953
7954 @subsection occt_draw_20_4      Commands for the Building Part
7955
7956 The commands listed below are available when the Building Part of the algorithm is done (i.e. after the command *bbuild*).
7957
7958 @subsubsection occt_draw_20_4_1 bopim
7959
7960 Syntax: 
7961
7962 ~~~~
7963 bopim S
7964 ~~~~
7965 Shows the compound of shapes that are images of shape *S* from the argument.
7966
7967  
7968 @section occt_draw_8 Data Exchange commands
7969
7970 This chapter presents some general information about Data Exchange (DE) operations. 
7971
7972 DE commands are intended for translation files of various formats (IGES,STEP) into OCCT shapes with their attributes (colors, layers etc.) 
7973
7974 This files include a number of entities. Each entity has its own number in the file which we call label and denote as # for a STEP file and D for an IGES file. Each file has entities called roots (one or more). A full description of such entities is contained in the Users' Guides 
7975 * for <a href="user_guides__step.html#occt_step_1">STEP format</a> and
7976 * for <a href="user_guides__iges.html#occt_iges_1">IGES format</a>. 
7977
7978 Each Draw session has an interface model, which is a structure for keeping various information. 
7979
7980 The first step of translation is loading information from a file into a model. 
7981 The second step is creation of an OpenCASCADE shape from this model. 
7982
7983 Each entity from a file has its own number in the model (num). During the translation a map of correspondences between labels(from file) and numbers (from model) is created. 
7984
7985 The model and the map are used for working with most of DE commands. 
7986
7987 @subsection occt_draw_8_1  IGES commands 
7988
7989 @subsubsection occt_draw_8_1_1  igesread
7990
7991 Syntax:      
7992 ~~~~~
7993 igesread <file_name> <result_shape_name> [<selection>]
7994 ~~~~~
7995
7996 Reads an IGES file to an OCCT shape. This command will interactively ask the user to select a set of entities to be converted. 
7997
7998
7999 | N | Mode | Description |
8000 | :-- | :-- | :---------- |
8001 | 0 | End | finish conversion and exit igesbrep |
8002 | 1 | Visible roots | convert only visible roots |
8003 | 2 | All roots | convert all roots |
8004 | 3 | One entity | convert entity with number provided by the user |
8005 | 4 | Selection | convert only entities contained in selection |
8006
8007
8008 After the selected set of entities is loaded the user will be asked how loaded entities should be converted into OCCT shapes (e.g., one shape per root or one shape for all the entities). It is also possible to save loaded shapes in files, and to cancel loading. 
8009
8010 The second parameter of this command defines the name of the loaded shape. If several shapes are created, they will get indexed names. For instance, if the last parameter was *s*, they will be *s_1, ... s_N*. 
8011
8012 <i>\<selection\></i> specifies the scope of selected entities in the model, by default it is *xst-transferrable-roots*.  If we use symbol <i>*</i> as <i>\<selection\></i> all roots will be translated. 
8013
8014 See also the detailed description of <a href="user_guides__iges.html#occt_iges_2_3_4">Selecting IGES entities</a>.
8015
8016 **Example:**
8017 ~~~~~
8018 # translation all roots from file 
8019 igesread /disk01/files/model.igs a  * 
8020 ~~~~~
8021
8022 @subsubsection occt_draw_8_1_2   tplosttrim
8023
8024 Syntax:      
8025 ~~~~~
8026 tplosttrim [<IGES_type>] 
8027 ~~~~~
8028
8029 Sometimes the trimming contours of IGES faces (i.e., entity 141 for 143, 142 for 144) can be lost during translation due to fails. This command gives us a number of lost trims and the number of corresponding IGES entities. 
8030 It outputs the rank and numbers of faces that lost their trims and their numbers for each type (143, 144, 510) and their total number. If a face lost several of its trims it is output only once. 
8031 Optional parameter <i>\<IGES_type\></i> can be *0TrimmedSurface, BoundedSurface* or *Face* to specify the only type of IGES faces. 
8032
8033 **Example:**
8034 ~~~~~
8035 tplosttrim TrimmedSurface 
8036 ~~~~~
8037
8038 @subsubsection occt_draw_8_1_3  brepiges
8039
8040 Syntax:      
8041 ~~~~~
8042 brepiges <shape_name> <filename.igs>
8043 ~~~~~
8044
8045 Writes an OCCT shape to an IGES file. 
8046
8047 **Example:** 
8048 ~~~~~    
8049 # write shape with name aa to IGES file 
8050 brepiges aa /disk1/tmp/aaa.igs 
8051 == unit (write) : MM 
8052 == mode  write  : Faces 
8053 ==   To modifiy : command  param 
8054 == 1 Shapes written, giving 345 Entities 
8055 ==  Now, to write a file, command : writeall filename 
8056 ==  Output on file : /disk1/tmp/aaa.igs 
8057 ==  Write OK 
8058 ~~~~~
8059
8060 @subsection occt_draw_8_2  STEP commands 
8061
8062 These commands are used during the translation of STEP models. 
8063
8064
8065 @subsubsection occt_draw_8_2_1  stepread
8066
8067 Syntax:      
8068 ~~~~~
8069 stepread file_name result_shape_name [selection] 
8070 ~~~~~
8071
8072 Read a STEP file to an OCCT shape. 
8073 This command will interactively ask the user to select a set of entities to be converted: 
8074
8075 | N | Mode | Description |
8076 | :---- | :---- | :---- |  
8077 | 0 | End | Finish transfer and exit stepread | 
8078 | 1 | root with rank 1 | Transfer first root | 
8079 | 2 | root by its rank | Transfer root specified by its rank | 
8080 | 3 | One entity | Transfer entity with a number provided by the user | 
8081 | 4 | Selection | Transfer only entities contained in selection | 
8082
8083 After the selected set of entities is loaded the user will be asked how loaded entities should be converted into OCCT shapes. 
8084 The second parameter of this command defines the name of the loaded shape. If several shapes are created, they will get indexed names. For instance, if the last parameter was *s*, they will be *s_1, ... s_N*. 
8085 <i>\<selection\></i> specifies the scope of selected entities in the model.  If we use symbol <i>*</i> as <i>\<selection\></i> all roots will be translated. 
8086
8087 See also the detailed description of <a href="user_guides__step.html#occt_step_2_3_6">Selecting STEP entities</a>.
8088
8089 **Example:**
8090 ~~~~~
8091 # translation all roots from file 
8092 stepread /disk01/files/model.stp a  * 
8093 ~~~~~
8094
8095 @subsubsection occt_draw_8_2_2   stepwrite
8096
8097 Syntax:      
8098 ~~~~~
8099 stepwrite mode shape_name file_name 
8100 ~~~~~
8101
8102 Writes an OCCT shape to a STEP file. 
8103
8104 The following  modes are available : 
8105     * *a* - as is – mode is selected automatically depending on the type & geometry of the shape; 
8106     * *m* - *manifold_solid_brep* or *brep_with_voids* 
8107     * *f* - *faceted_brep* 
8108     * *w* - *geometric_curve_set* 
8109     * *s* - *shell_based_surface_model* 
8110  
8111 For further information see <a href="#user_guides__step.html#occt_step_6_5">Writing a STEP file</a>. 
8112
8113 **Example:**
8114
8115 Let us write shape *a* to a STEP file in mode *0*. 
8116
8117 ~~~~~
8118 stepwrite 0 a /disk1/tmp/aaa.igs 
8119 ~~~~~
8120
8121
8122 @subsection occt_draw_8_3  General commands 
8123
8124 These are auxilary commands used for the analysis of result of translation of IGES and STEP files. 
8125
8126 @subsubsection occt_draw_8_3_1  count
8127
8128 Syntax:      
8129 ~~~~~
8130 count <counter> [<selection>] 
8131 ~~~~~
8132
8133 Calculates statistics on the entities in the model and outputs a count of entities. 
8134
8135 The optional selection argument, if specified, defines a subset of entities, which are to be taken into account. The first argument should be one of the currently defined counters. 
8136
8137 | Counter | Operation |
8138 | :-------- | :-------- | 
8139 | xst-types | Calculates how many entities of each OCCT type exist | 
8140 | step214-types | Calculates how many entities of each STEP type exist |
8141
8142 **Example:**
8143 ~~~~~
8144 count xst-types 
8145 ~~~~~
8146
8147 @subsubsection occt_draw_8_3_2 data
8148
8149 Syntax:      
8150 ~~~~~
8151 data <symbol>
8152 ~~~~~
8153
8154 Obtains general statistics on the loaded data. 
8155 The information printed by this command depends on the symbol specified. 
8156
8157 **Example:**
8158 ~~~~~
8159 # print full information about warnings and fails 
8160 data c 
8161 ~~~~~
8162
8163 | Symbol | Output |
8164 | :------ | :------ |
8165 | g | Prints the information contained in the header of the file |
8166 | c or f | Prints messages generated during the loading of the STEP file (when the procedure of the integrity of the loaded data check is performed) and the resulting statistics (f works only with fail messages while c with both fail and warning messages) |
8167 | t | The same as c or f, with a list of failed or warned entities |
8168 | m or l | The same as t but also prints a status for each entity | 
8169 | e | Lists all entities of the model with their numbers, types, validity status etc. |
8170 | R | The same as e but lists only root entities |
8171
8172
8173
8174 @subsubsection occt_draw_8_3_3  elabel
8175
8176 Syntax:      
8177 ~~~~~
8178 elabel <num>
8179 ~~~~~
8180
8181 Entities in the IGES and STEP files are numbered in the succeeding order. An entity can be identified either by its number or by its label. Label is the letter ‘#'(for STEP, for IGES use ‘D’) followed by the rank. This command gives us a label for an entity with a known number. 
8182
8183 **Example:**
8184 ~~~~~
8185 elabel 84 
8186 ~~~~~
8187
8188 @subsubsection occt_draw_8_3_4  entity
8189
8190 Syntax:      
8191 ~~~~~
8192 entity <#(D)>_or_<num> <level_of_information>
8193 ~~~~~
8194
8195 The content of an IGES or STEP entity can be obtained by using this command. 
8196 Entity can be determined by its number or label. 
8197 <i>\<level_of_information\></i> has range [0-6]. You can get more information about this level using this command without parameters. 
8198
8199 **Example:**
8200 ~~~~~
8201 # full information for STEP entity with label 84 
8202 entity #84 6 
8203 ~~~~~
8204
8205 @subsubsection occt_draw_8_3_5  enum
8206
8207 Syntax:      
8208 ~~~~~
8209 enum <#(D)> 
8210 ~~~~~
8211
8212 Prints a number for the entity with a given label. 
8213
8214 **Example:**
8215 ~~~~~
8216 # give a number for IGES entity with label 21 
8217 enum D21 
8218 ~~~~~
8219
8220 @subsubsection occt_draw_8_3_6  estatus
8221
8222 Syntax:      
8223 ~~~~~
8224 estatus <#(D)>_or_<num>
8225 ~~~~~
8226
8227 The list of entities referenced by a given entity and the list of entities referencing to it can be obtained by this command. 
8228
8229 **Example:**
8230 ~~~~~
8231 estatus #315 
8232 ~~~~~
8233
8234 @subsubsection occt_draw_8_3_7  fromshape
8235
8236 Syntax:      
8237 ~~~~~
8238 fromshape <shape_name>
8239 ~~~~~
8240
8241 Gives the number of an IGES or STEP entity corresponding to an OCCT shape. If no corresponding entity can be found and if OCCT shape is a compound the command explodes it to subshapes and try to find corresponding entities for them. 
8242
8243 **Example:**
8244 ~~~~~
8245 fromshape a_1_23 
8246 ~~~~~
8247
8248 @subsubsection occt_draw_8_3_8  givecount
8249
8250 Syntax:
8251 ~~~~~
8252 givecount <selection_name> [<selection_name>]
8253 ~~~~~
8254
8255
8256 Prints a number of loaded entities defined by the selection argument.
8257 Possible values of \<selection_name\> you can find in the “IGES FORMAT Users’s Guide”.
8258
8259 **Example:**
8260 ~~~~~
8261 givecount xst-model-roots 
8262 ~~~~~
8263
8264 @subsubsection occt_draw_8_3_9  givelist
8265
8266 Syntax:      
8267 ~~~~~
8268 givelist <selection_name>
8269 ~~~~~
8270
8271 Prints a list of a subset of loaded entities defined by the selection argument: 
8272 | Selection | Description |
8273 | :-------- | :----------- |
8274 | xst-model-all | all entities of the model |
8275 | xst-model-roots | all roots |
8276 | xst-pointed | (Interactively) pointed entities (not used in DRAW) |
8277 | xst-transferrable-all | all transferable (recognized) entities |
8278 | xst-transferrable-roots | Transferable roots | 
8279
8280
8281 **Example:**
8282 ~~~~~
8283 # give a list of all entities of the model 
8284 givelist xst-model-all 
8285 ~~~~~
8286
8287 @subsubsection occt_draw_8_3_10  listcount
8288
8289 Syntax:     listcount \<counter\> [\<selection\> ...]
8290
8291 Prints a list of entities per each type matching the criteria defined by arguments. 
8292 Optional <i>\<selection\></i> argument, if specified, defines a subset of entities, which are to be taken into account. Argument <i>\<counter\></i>  should be one of the currently defined counters: 
8293
8294 | Counter     | Operation |
8295 | :-----      | :------   |
8296 | xst-types   | Calculates how many entities of each OCCT type exist |
8297 | iges-types  | Calculates how many entities of each IGES type and form exist |
8298 | iges-levels | Calculates how many entities lie in different IGES levels |
8299
8300 **Example:**
8301 ~~~~~
8302 listcount xst-types 
8303 ~~~~~
8304
8305 @subsubsection occt_draw_8_3_11  listitems
8306
8307 Syntax:      
8308 ~~~~~
8309 listitems 
8310 ~~~~~
8311
8312 This command prints a list of objects (counters, selections etc.) defined in the current session. 
8313
8314
8315 @subsubsection occt_draw_8_3_12  listtypes
8316
8317 Syntax:      
8318 ~~~~~
8319 listtypes [<selection_name> ...]
8320 ~~~~~
8321
8322 Gives a list of entity types which were encountered in the last loaded file (with a number of entities of each type). The list can be shown not for all entities but for a subset of them. This subset is defined by an optional selection argument. 
8323
8324
8325 @subsubsection occt_draw_8_3_13  newmodel
8326
8327 Syntax:      
8328 ~~~~~
8329 newmodel 
8330 ~~~~~
8331
8332 Clears the current model. 
8333
8334
8335 @subsubsection occt_draw_8_3_14  param
8336
8337 Syntax:      
8338 ~~~~~
8339 param [<parameter>] [<value>]
8340 ~~~~~
8341
8342 This command is used to manage translation parameters. 
8343 Command without arguments gives a full list of parameters with current values. 
8344 Command with <i>\<parameter\></i> (without <i><value></i>) gives us the current value of this parameter and all possible values for it. Command with <i><value></i> sets this new value to <i>\<parameter\></i>.
8345
8346 **Example:**
8347
8348 Let us get the information about possible schemes for writing STEP file :
8349
8350 ~~~~~
8351 param write.step.schema 
8352 ~~~~~
8353
8354 @subsubsection occt_draw_8_3_15  sumcount
8355
8356 Syntax:      
8357 ~~~~~
8358 sumcount <counter> [<selection> ...]
8359 ~~~~~
8360
8361 Prints only a number of entities per each type matching the criteria defined by arguments. 
8362
8363 **Example:**
8364 ~~~~~
8365 sumcount xst-types 
8366 ~~~~~
8367
8368 @subsubsection occt_draw_8_3_16  tpclear
8369
8370 Syntax:      
8371 ~~~~~
8372 tpclear  
8373 ~~~~~
8374
8375 Clears the map of correspondences between IGES or STEP entities and OCCT shapes. 
8376
8377
8378
8379 @subsubsection occt_draw_8_3_17  tpdraw
8380
8381 Syntax:      
8382 ~~~~~
8383 tpdraw <#(D)>_or_<num>
8384 ~~~~~
8385
8386 **Example:**
8387 ~~~~~
8388 tpdraw 57 
8389 ~~~~~
8390
8391 @subsubsection occt_draw_8_3_18  tpent
8392
8393 Syntax:      
8394 ~~~~~
8395 tpent <#(D)>_or_<num>
8396 ~~~~~
8397
8398 Get information about the result of translation of the given IGES or STEP entity.
8399
8400 **Example:**
8401 ~~~~~
8402 tpent \#23 
8403 ~~~~~
8404
8405 @subsubsection occt_draw_8_3_19  tpstat
8406
8407 Syntax:      
8408 ~~~~~
8409 tpstat [*|?]<symbol> [<selection>]
8410 ~~~~~
8411
8412
8413 Provides all statistics on the last transfer, including a list of transferred entities with mapping from IGES or STEP to OCCT types, as well as fail and warning messages. The parameter <i>\<symbol\></i> defines what information will be printed: 
8414
8415 * *g* - General statistics (a list of results and messages)
8416 * *c* - Count of all warning and fail messages
8417 * *C* - List of all warning and fail messages
8418 * *f* - Count of all fail messages
8419 * *F* - List of all fail messages
8420 * *n* - List of all transferred roots
8421 * *s* - The same, with types of source entity and the type of result
8422 * *b* - The same, with messages
8423 * *t* - Count of roots for geometrical types
8424 * *r* - Count of roots for topological types
8425 * *l* - The same, with the type of the source entity
8426
8427 The sign \* before parameters *n, s, b, t, r* makes it work on all entities (not only on roots).
8428
8429 The sign ? before *n, s, b, t* limits the scope of information to invalid entities. 
8430
8431 Optional argument \<selection\> can limit the action of the command to the selection, not to all entities. 
8432
8433 To get help, run this command without arguments. 
8434
8435 **Example:**
8436 ~~~~~
8437 # translation ratio on IGES faces 
8438 tpstat *l iges-faces 
8439 ~~~~~
8440
8441 @subsubsection occt_draw_8_3_20  xload
8442
8443 Syntax:      
8444 ~~~~~
8445 xload <file_name>
8446 ~~~~~
8447
8448 This command loads an IGES or STEP file into memory (i.e. to fill the model with data from the file) without creation of an OCCT shape. 
8449
8450 **Example:**
8451 ~~~~~
8452 xload /disk1/tmp/aaa.stp 
8453 ~~~~~
8454
8455
8456 @subsection occt_draw_8_4  Overview of XDE commands 
8457
8458 These commands are used for translation of IGES and STEP files into an XCAF document (special document is inherited from CAF document and is intended for Extended Data Exchange (XDE) ) and working with it. XDE translation allows reading and writing of shapes with additional attributes – colors, layers etc. All commands can be divided into the following groups: 
8459   * XDE translation commands
8460   * XDE general commands
8461   * XDE shape’s commands
8462   * XDE color’s commands
8463   * XDE layer’s commands
8464   * XDE property’s commands
8465
8466 Reminding: All operations of translation are performed with parameters managed by command @ref occt_draw_8_3_14 "param".
8467
8468 @subsubsection occt_draw_8_4_1  ReadIges
8469
8470 Syntax:      
8471 ~~~~~
8472 ReadIges document file_name 
8473 ~~~~~
8474
8475 Reads information from an IGES file to an XCAF document. 
8476
8477 **Example:**
8478 ~~~~~
8479 ReadIges D /disk1/tmp/aaa.igs 
8480 ==> Document saved with name D 
8481 ~~~~~
8482
8483 @subsubsection occt_draw_8_4_2  ReadStep
8484
8485 Syntax:      
8486 ~~~~~
8487 ReadStep <document> <file_name>
8488 ~~~~~
8489
8490 Reads information from a STEP file to an XCAF document. 
8491
8492 **Example:**
8493 ~~~~~
8494 ReadStep D /disk1/tmp/aaa.stp 
8495 == Document saved with name D 
8496 ~~~~~
8497
8498 @subsubsection occt_draw_8_4_3  WriteIges
8499
8500 Syntax:      
8501 ~~~~~
8502 WriteIges <document> <file_name>
8503 ~~~~~
8504
8505 **Example:**
8506 ~~~~~
8507 WriteIges D /disk1/tmp/aaa.igs 
8508 ~~~~~
8509
8510 @subsubsection occt_draw_8_4_4  WriteStep
8511
8512 Syntax:      
8513 ~~~~~
8514 WriteStep <document> <file_name>
8515 ~~~~~
8516
8517 Writes information from an XCAF document to a STEP file. 
8518
8519 **Example:**
8520 ~~~~~
8521 WriteStep D /disk1/tmp/aaa.stp 
8522 ~~~~~
8523
8524 @subsubsection occt_draw_8_4_5  XFileCur
8525
8526 Syntax:      
8527 ~~~~~
8528 XFileCur  
8529 ~~~~~
8530
8531 Returns the name of file which is set as the current one in the Draw session. 
8532
8533 **Example:**
8534 ~~~~~
8535 XFileCur 
8536 == *as1-ct-203.stp* 
8537 ~~~~~
8538
8539 @subsubsection occt_draw_8_4_6  XFileList
8540
8541 Syntax:      
8542 ~~~~~
8543 XFileList  
8544 ~~~~~
8545
8546 Returns a list all files that were transferred by the last transfer. This command is  meant (assigned) for the assemble step file. 
8547
8548 **Example:**
8549 ~~~~~
8550 XFileList 
8551 ==> *as1-ct-Bolt.stp* 
8552 ==> *as1-ct-L-Bracktet.stp* 
8553 ==> *as1-ct-LBA.stp* 
8554 ==> *as1-ct-NBA.stp* 
8555 ==> … 
8556 ~~~~~
8557
8558 @subsubsection occt_draw_8_4_7  XFileSet
8559
8560 Syntax:      
8561 ~~~~~
8562 XFileSet <filename> 
8563 ~~~~~
8564
8565 Sets the current file taking it from the components list of the assemble file. 
8566
8567 **Example:**
8568 ~~~~~
8569 XFileSet as1-ct-NBA.stp 
8570 ~~~~~
8571
8572 @subsubsection occt_draw_8_4_8  XFromShape
8573
8574 Syntax:      
8575 ~~~~~
8576 XFromShape <shape>
8577 ~~~~~
8578
8579 This command is similar to the command @ref occt_draw_8_3_7 "fromshape", but gives additional information about the file name. It is useful if a shape was translated from several files. 
8580
8581 **Example:**
8582 ~~~~~
8583 XFromShape a 
8584 ==> Shape a: imported from entity 217:#26 in file as1-ct-Nut.stp 
8585 ~~~~~
8586
8587 @subsection occt_draw_8_5  XDE general commands 
8588
8589 @subsubsection occt_draw_8_5_1  XNewDoc
8590
8591 Syntax:      
8592 ~~~~~
8593 XNewDoc <document>
8594 ~~~~~
8595
8596 Creates a new XCAF document. 
8597
8598 **Example:**
8599 ~~~~~
8600 XNewDoc D 
8601 ~~~~~
8602
8603 @subsubsection occt_draw_8_5_2  XShow
8604
8605 Syntax:      
8606 ~~~~~
8607 XShow <document> [ <label1> … ]
8608 ~~~~~
8609
8610 Shows a shape from a given label in the 3D viewer. If the label is not given – shows all shapes from the document. 
8611
8612 **Example:**
8613 ~~~~~
8614 # show shape from label 0:1:1:4 from document D 
8615 XShow D 0:1:1:4 
8616 ~~~~~
8617
8618 @subsubsection occt_draw_8_5_3  XStat
8619
8620 Syntax:      
8621 ~~~~~
8622 XStat <document>
8623 ~~~~~
8624
8625 Prints common information from an XCAF document. 
8626
8627 **Example:**
8628 ~~~~~
8629 XStat D 
8630 ==>Statistis of shapes in the document: 
8631 ==>level N 0 : 9 
8632 ==>level N 1 : 18 
8633 ==>level N 2 : 5 
8634 ==>Total number of labels for shapes in the document = 32 
8635 ==>Number of labels with name = 27 
8636 ==>Number of labels with color link = 3 
8637 ==Number of labels with layer link = 0 
8638 ==>Statistis of Props in the document: 
8639 ==>Number of Centroid Props = 5 
8640 ==>Number of Volume Props = 5 
8641 ==>Number of Area Props = 5 
8642 ==>Number of colors = 4 
8643 ==>BLUE1 RED YELLOW BLUE2 
8644 ==>Number of layers = 0 
8645 ~~~~~
8646
8647 @subsubsection occt_draw_8_5_4  XWdump
8648
8649 Syntax:      
8650 ~~~~~
8651 XWdump <document> <filename>
8652 ~~~~~
8653
8654 Saves the contents of the viewer window as an image (XWD, png or BMP file). 
8655 <i>\<filename\></i> must have a corresponding extention. 
8656
8657 **Example:**
8658 ~~~~~
8659 XWdump D /disk1/tmp/image.png 
8660 ~~~~~
8661
8662 @subsubsection occt_draw_8_5_5  Xdump
8663
8664 Syntax:      
8665 ~~~~~
8666 Xdump <document> [int deep {0|1}]
8667 ~~~~~
8668
8669 Prints information about the tree structure of the document. If parameter 1 is given, then the tree is printed with a link to shapes. 
8670
8671 **Example:**
8672 ~~~~~
8673 Xdump D 1 
8674 ==> ASSEMBLY 0:1:1:1 L-BRACKET(0xe8180448) 
8675 ==> ASSEMBLY 0:1:1:2 NUT(0xe82151e8) 
8676 ==> ASSEMBLY 0:1:1:3 BOLT(0xe829b000) 
8677 ==> ASSEMBLY 0:1:1:4 PLATE(0xe8387780) 
8678 ==> ASSEMBLY 0:1:1:5 ROD(0xe8475418) 
8679 ==> ASSEMBLY 0:1:1:6 AS1(0xe8476968) 
8680 ==>    ASSEMBLY 0:1:1:7 L-BRACKET-ASSEMBLY(0xe8476230) 
8681 ==>       ASSEMBLY 0:1:1:1 L-BRACKET(0xe8180448) 
8682 ==>       ASSEMBLY 0:1:1:8 NUT-BOLT-ASSEMBLY(0xe8475ec0) 
8683 ==>               ASSEMBLY 0:1:1:2 NUT(0xe82151e8) 
8684 ==>               ASSEMBLY 0:1:1:3 BOLT(0xe829b000) 
8685 etc. 
8686 ~~~~~
8687
8688 @subsection occt_draw_8_6  XDE shape commands 
8689
8690 @subsubsection occt_draw_8_6_1  XAddComponent
8691
8692 Syntax:      
8693 ~~~~~
8694 XAddComponent <document> <label> <shape> 
8695 ~~~~~
8696
8697 Adds a component shape to assembly. 
8698
8699 **Example:**
8700
8701 Let us add shape b as component shape to assembly shape from label *0:1:1:1* 
8702
8703 ~~~~~
8704 XAddComponent D 0:1:1:1 b 
8705 ~~~~~
8706
8707 @subsubsection occt_draw_8_6_2  XAddShape
8708
8709 Syntax:      
8710 ~~~~~
8711 XAddShape <document> <shape> [makeassembly=1]
8712 ~~~~~
8713
8714 Adds a shape (or an assembly) to a document. If this shape already exists in the document, then prints the label which points to it. By default, a new shape is added as an assembly (i.e. last parameter 1), otherwise it is necessary to pass 0 as the last parameter. 
8715
8716 **Example:**
8717 ~~~~~
8718 # add shape b to document D 
8719 XAddShape D b 0 
8720 == 0:1:1:10 
8721 # if pointed shape is compound and last parameter in 
8722 # XAddShape command is used by default (1), then for 
8723 # each subshapes new label is created 
8724 ~~~~~
8725
8726 @subsubsection occt_draw_8_6_3  XFindComponent
8727
8728 Syntax:      
8729 ~~~~~
8730 XFindComponent <document> <shape>
8731 ~~~~~
8732
8733 Prints a sequence of labels of the assembly path. 
8734
8735 **Example:**
8736 ~~~~~
8737 XFindComponent D b 
8738 ~~~~~
8739
8740 @subsubsection occt_draw_8_6_4  XFindShape
8741
8742 Syntax:      
8743 ~~~~~
8744 XFindShape <document> <shape>
8745 ~~~~~
8746
8747 Finds and prints a label with an indicated top-level shape. 
8748
8749 **Example:**
8750 ~~~~~
8751 XFindShape D a 
8752 ~~~~~
8753
8754 @subsubsection occt_draw_8_6_5  XGetFreeShapes
8755
8756 Syntax:      
8757 ~~~~~
8758 XGetFreeShapes <document> [shape_prefix]
8759 ~~~~~
8760
8761 Print labels or create DRAW shapes for all free shapes in the document. 
8762 If *shape_prefix* is absent – prints labels, else – creates DRAW shapes with names 
8763 <i>shape_prefix</i>_num (i.e. for example: there are 3 free shapes and *shape_prefix* = a therefore shapes will be created with names a_1, a_2 and a_3). 
8764
8765 **Note**: a free shape is a shape to which no other shape refers to. 
8766
8767 **Example:**
8768 ~~~~~
8769 XGetFreeShapes D 
8770 == 0:1:1:6 0:1:1:10 0:1:1:12 0:1:1:13 
8771
8772 XGetFreeShapes D sh 
8773 == sh_1 sh_2 sh_3 sh_4 
8774 ~~~~~
8775
8776 @subsubsection occt_draw_8_6_6  XGetOneShape
8777
8778 Syntax:      
8779 ~~~~~
8780 XGetOneShape <shape> <document>
8781 ~~~~~
8782
8783 Creates one DRAW shape for all free shapes from a document. 
8784
8785 **Example:**
8786 ~~~~~
8787 XGetOneShape a D 
8788 ~~~~~
8789
8790 @subsubsection occt_draw_8_6_7  XGetReferredShape
8791
8792 Syntax:      
8793 ~~~~~
8794 XGetReferredShape <document> <label>
8795 ~~~~~
8796
8797 Prints a label that contains a top-level shape that corresponds to a shape at a given label. 
8798
8799 **Example:**
8800 ~~~~~
8801 XGetReferredShape D 0:1:1:1:1 
8802 ~~~~~
8803
8804 @subsubsection occt_draw_8_6_8  XGetShape
8805
8806 Syntax:      
8807 ~~~~~
8808 XGetShape <result> <document> <label>
8809 ~~~~~
8810
8811 Puts a shape from the indicated label in document to result. 
8812
8813 **Example:**
8814 ~~~~~
8815 XGetShape b D 0:1:1:3 
8816 ~~~~~
8817
8818 @subsubsection occt_draw_8_6_9  XGetTopLevelShapes
8819
8820 Syntax:      
8821 ~~~~~
8822 XGetTopLevelShapes <document>
8823 ~~~~~
8824
8825 Prints labels that contain top-level shapes. 
8826
8827 **Example:**
8828 ~~~~~
8829 XGetTopLevelShapes D 
8830 == 0:1:1:1 0:1:1:2 0:1:1:3 0:1:1:4 0:1:1:5 0:1:1:6 0:1:1:7 
8831 0:1:1:8 0:1:1:9 
8832 ~~~~~
8833
8834 @subsubsection occt_draw_8_6_10  XLabelInfo
8835
8836 Syntax:      
8837 ~~~~~
8838 XLabelInfo <document> <label>
8839 ~~~~~
8840
8841 Prints information about a shape, stored at an indicated label. 
8842
8843 **Example:** 
8844 ~~~~~    
8845 XLabelInfo D 0:1:1:6 
8846 ==> There are TopLevel shapes. There is an Assembly. This Shape is not used. 
8847 ~~~~~
8848
8849 @subsubsection occt_draw_8_6_11  XNewShape
8850
8851 Syntax:      
8852 ~~~~~
8853 XNewShape <document>
8854 ~~~~~
8855
8856 Creates a new empty top-level shape. 
8857
8858 **Example:**
8859 ~~~~~
8860 XNewShape D 
8861 ~~~~~
8862
8863 @subsubsection occt_draw_8_6_12  XRemoveComponent
8864
8865 Syntax:      
8866 ~~~~~
8867 XRemoveComponent <document> <label>
8868 ~~~~~
8869
8870 Removes a component from the components label. 
8871
8872 **Example:**
8873 ~~~~~
8874 XRemoveComponent D 0:1:1:1:1 
8875 ~~~~~
8876
8877 @subsubsection occt_draw_8_6_13  XRemoveShape
8878
8879 Syntax:      
8880 ~~~~~
8881 XRemoveShape <document> <label>
8882 ~~~~~
8883
8884 Removes a shape from a document (by it’s label). 
8885
8886 **Example:**
8887 ~~~~~
8888 XRemoveShape D 0:1:1:2 
8889 ~~~~~
8890
8891 @subsubsection occt_draw_8_6_14  XSetShape
8892
8893 Syntax:      
8894 ~~~~~
8895 XSetShape <document> <label> <shape>
8896 ~~~~~
8897
8898 Sets a shape at the indicated label. 
8899
8900 **Example:**
8901 ~~~~~
8902 XSetShape D 0:1:1:3 b 
8903 ~~~~~
8904
8905
8906 @subsection occt_draw_8_7_  XDE color commands 
8907
8908 @subsubsection occt_draw_8_7_1  XAddColor
8909
8910 Syntax:      
8911 ~~~~~
8912 XAddColor <document> <R> <G> <B>
8913 ~~~~~
8914
8915 Adds color in document to the color table. Parameters R,G,B are real. 
8916
8917 **Example:**
8918 ~~~~~
8919 XAddColor D 0.5 0.25 0.25 
8920 ~~~~~
8921
8922 @subsubsection occt_draw_8_7_2  XFindColor
8923
8924 Syntax:      
8925 ~~~~~
8926 XFindColor <document> <R> <G> <B>
8927 ~~~~~
8928
8929 Finds a label where the indicated color is situated. 
8930
8931 **Example:**
8932 ~~~~~
8933 XFindColor D 0.25 0.25 0.5 
8934 ==> 0:1:2:2 
8935 ~~~~~
8936
8937 @subsubsection occt_draw_8_7_3  XGetAllColors
8938
8939 Syntax:      
8940 ~~~~~
8941 XGetAllColors <document> 
8942 ~~~~~
8943
8944 Prints all colors that are defined in the document. 
8945
8946 **Example:**
8947 ~~~~~
8948 XGetAllColors D 
8949 ==> RED DARKORANGE BLUE1 GREEN YELLOW3 
8950 ~~~~~
8951
8952 @subsubsection occt_draw_8_7_4  XGetColor
8953
8954 Syntax:      
8955 ~~~~~
8956 XGetColor <document> <label>
8957 ~~~~~
8958
8959 Returns a color defined at the indicated label from the color table. 
8960
8961 **Example:**
8962 ~~~~~
8963 XGetColor D 0:1:2:3 
8964 == BLUE1 
8965 ~~~~~
8966
8967 @subsubsection occt_draw_8_7_5  XGetObjVisibility
8968
8969 Syntax:      
8970 ~~~~~
8971 XGetObjVisibility <document> {<label>|<shape>}
8972 ~~~~~
8973
8974 Returns the visibility of a shape. 
8975
8976 **Example:**
8977 ~~~~~
8978 XGetObjVisibility D 0:1:1:4 
8979 ~~~~~
8980
8981 @subsubsection occt_draw_8_7_6  XGetShapeColor
8982
8983 Syntax:      
8984 ~~~~~
8985 XGetShapeColor <document> <label> <colortype(s|c)>
8986 ~~~~~
8987
8988 Returns the color defined by label. If <i>colortype</i>=’s’ – returns surface color, else – returns curve color. 
8989
8990 **Example:**
8991 ~~~~~
8992 XGetShapeColor D 0:1:1:4 c 
8993 ~~~~~
8994
8995 @subsubsection occt_draw_8_7_7  XRemoveColor
8996
8997 Syntax:      
8998 ~~~~~
8999 XRemoveColor <document> <label>
9000 ~~~~~
9001
9002 Removes a color from the color table in a document. 
9003
9004 **Example:**
9005 ~~~~~
9006 XRemoveColor D 0:1:2:1 
9007 ~~~~~
9008
9009 @subsubsection occt_draw_8_7_8  XSetColor
9010
9011 Syntax:      
9012 ~~~~~
9013 XSetColor <document> {<label>|<shape>} <R> <G> <B>
9014 ~~~~~
9015
9016 Sets an RGB color to a shape given by label. 
9017
9018 **Example:**
9019 ~~~~~
9020 XsetColor D 0:1:1:4 0.5 0.5 0. 
9021 ~~~~~
9022
9023 @subsubsection occt_draw_8_7_9  XSetObjVisibility
9024
9025 Syntax:      
9026 ~~~~~
9027 XSetObjVisibility <document> {<label>|<shape>} {0|1}
9028 ~~~~~
9029
9030 Sets the visibility of a shape. 
9031
9032 **Example:**
9033 ~~~~~
9034 # set shape from label 0:1:1:4 as invisible 
9035 XSetObjVisibility D 0:1:1:4 0 
9036 ~~~~~
9037
9038 @subsubsection occt_draw_8_7_10  XUnsetColor
9039
9040 Syntax:      
9041 ~~~~~
9042 XUnsetColor <document> {<label>|<shape>} <colortype>
9043 ~~~~~
9044
9045 Unset a color given type (‘s’ or ‘c’) for the indicated shape. 
9046
9047 **Example:**
9048 ~~~~~
9049 XUnsetColor D 0:1:1:4 s 
9050 ~~~~~
9051
9052
9053 @subsection occt_draw_8_8_  XDE layer commands 
9054
9055 @subsubsection occt_draw_8_8_1  XAddLayer
9056
9057 Syntax:      
9058 ~~~~~
9059 XAddLayer <document> <layer>
9060 ~~~~~
9061
9062 Adds a new layer in an XCAF document. 
9063
9064 **Example:**
9065 ~~~~~
9066 XAddLayer D layer2 
9067 ~~~~~
9068
9069 @subsubsection occt_draw_8_8_2  XFindLayer
9070
9071 Syntax:      
9072 ~~~~~
9073 XFindLayer <document> <layer>
9074 ~~~~~
9075
9076 Prints a label where a layer is situated. 
9077
9078 **Example:**
9079 ~~~~~
9080 XFindLayer D Bolt 
9081 == 0:1:3:2 
9082 ~~~~~
9083
9084 @subsubsection occt_draw_8_8_3  XGetAllLayers
9085
9086 Syntax:      
9087 ~~~~~
9088 XGetAllLayers <document> 
9089 ~~~~~
9090
9091 Prints all layers in an XCAF document. 
9092
9093 **Example:**
9094 ~~~~~
9095 XGetAllLayers D 
9096 == *0:1:1:3* *Bolt* *0:1:1:9* 
9097 ~~~~~
9098
9099 @subsubsection occt_draw_8_8_4  XGetLayers
9100
9101 Syntax:      
9102 ~~~~~
9103 XGetLayers <document> {<shape>|<label>}
9104 ~~~~~
9105
9106 Returns names of layers, which are pointed to by links of an indicated shape. 
9107
9108 **Example:**
9109 ~~~~~
9110 XGetLayers D 0:1:1:3 
9111 == *bolt* *123* 
9112 ~~~~~
9113
9114 @subsubsection occt_draw_8_8_5  XGetOneLayer
9115
9116 Syntax:      
9117 ~~~~~
9118 XGetOneLayer <document> <label>
9119 ~~~~~
9120
9121 Prints the name of a layer at a given label. 
9122
9123 **Example:**
9124 ~~~~~
9125 XGetOneLayer D 0:1:3:2 
9126 ~~~~~
9127
9128 @subsubsection occt_draw_8_8_6  XIsVisible
9129
9130 Syntax:      
9131 ~~~~~
9132 XIsVisible <document> {<label>|<layer>}
9133 ~~~~~
9134
9135 Returns 1 if the indicated layer is visible, else returns 0. 
9136
9137 **Example:**
9138 ~~~~~
9139 XIsVisible D 0:1:3:1 
9140 ~~~~~
9141
9142 @subsubsection occt_draw_8_8_7  XRemoveAllLayers
9143
9144 Syntax:      
9145 ~~~~~
9146 XRemoveAllLayers <document> 
9147 ~~~~~
9148
9149 Removes all layers from an XCAF document. 
9150
9151 **Example:**
9152 ~~~~~
9153 XRemoveAllLayers D 
9154 ~~~~~
9155
9156 @subsubsection occt_draw_8_8_8  XRemoveLayer
9157
9158 Syntax:      
9159 ~~~~~
9160 XRemoveLayer <document> {<label>|<layer>}
9161 ~~~~~
9162
9163 Removes the indicated layer from an XCAF document. 
9164
9165 **Example:**
9166 ~~~~~
9167 XRemoveLayer D layer2 
9168 ~~~~~
9169
9170 @subsubsection occt_draw_8_8_9  XSetLayer
9171
9172 Syntax:      
9173 ~~~~~
9174 XSetLayer XSetLayer <document> {<shape>|<label>} <layer> [shape_in_one_layer {0|1}]
9175
9176 ~~~~~
9177  
9178 Sets a reference between a shape and a layer (adds a layer if it is necessary). 
9179 Parameter <i>\<shape_in_one_layer\></i> shows whether a shape could be in a number of layers or only in one (0 by default). 
9180
9181 **Example:**
9182 ~~~~~
9183 XSetLayer D 0:1:1:2 layer2 
9184 ~~~~~
9185
9186 @subsubsection occt_draw_8_8_10  XSetVisibility
9187
9188 Syntax:      
9189 ~~~~~
9190 XSetVisibility <document> {<label>|<layer>} <isvisible {0|1}>
9191 ~~~~~
9192
9193 Sets the visibility of a layer. 
9194
9195 **Example:**
9196 ~~~~~
9197 # set layer at label 0:1:3:2 as invisible 
9198 XSetVisibility D 0:1:3:2 0 
9199 ~~~~~
9200
9201 @subsubsection occt_draw_8_8_11  XUnSetAllLayers
9202
9203 Syntax:      
9204 ~~~~~
9205 XUnSetAllLayers <document> {<label>|<shape>}
9206 ~~~~~
9207
9208 Unsets a shape from all layers. 
9209
9210 **Example:**
9211 ~~~~~
9212 XUnSetAllLayers D 0:1:1:2 
9213 ~~~~~
9214
9215 @subsubsection occt_draw_8_8_12  XUnSetLayer
9216
9217 Syntax:      
9218 ~~~~~
9219 XUnSetLayer <document> {<label>|<shape>} <layer>
9220 ~~~~~
9221
9222 Unsets a shape from the indicated layer. 
9223
9224 **Example:**
9225 ~~~~~
9226 XUnSetLayer D 0:1:1:2 layer1 
9227 ~~~~~
9228
9229 @subsection occt_draw_8_9  XDE property commands 
9230
9231 @subsubsection occt_draw_8_9_1  XCheckProps
9232
9233 Syntax:      
9234 ~~~~~
9235 XCheckProps <document> [ {0|deflection} [<shape>|<label>] ]
9236 ~~~~~
9237
9238 Gets properties for a given shape (*volume*, *area* and <i>centroid</i>) and compares them with the results after internal calculations. If the second parameter is 0, the standard OCCT tool is used for the computation of properties. If the second parameter is not 0, it is processed as a deflection. If the deflection is positive the computation is done by triangulations, if it is negative – meshing is forced. 
9239
9240 **Example:**
9241 ~~~~~
9242 # check properties for shapes at label 0:1:1:1 from 
9243 # document using standard Open CASCADE Technology tools 
9244 XCheckProps D 0 0:1:1:1 
9245 == Label 0:1:1:1      ;L-BRACKET* 
9246 ==  Area defect:        -0.0 (  0%) 
9247 ==  Volume defect:       0.0 (  0%) 
9248 ==  CG defect: dX=-0.000, dY=0.000, dZ=0.000 
9249 ~~~~~
9250
9251 @subsubsection occt_draw_8_9_2  XGetArea
9252
9253 Syntax:      
9254 ~~~~~
9255 XGetArea <document> {<shape>|<label>}
9256 ~~~~~
9257
9258 Returns the area of a given shape. 
9259
9260 **Example:**
9261 ~~~~~
9262 XGetArea D 0:1:1:1 
9263 == 24628.31815094999 
9264 ~~~~~
9265
9266 @subsubsection occt_draw_8_9_3  XGetCentroid
9267
9268 Syntax:      
9269 ~~~~~
9270 XGetCentroid <document> {<shape>|<label>}
9271 ~~~~~
9272
9273 Returns the center of gravity coordinates of a given shape. 
9274
9275 **Example:**
9276 ~~~~~
9277 XGetCentroid D 0:1:1:1 
9278 ~~~~~
9279
9280 @subsubsection occt_draw_8_9_4  XGetVolume
9281
9282 Syntax:      
9283 ~~~~~
9284 XGetVolume <document> {<shape>|<label>}
9285 ~~~~~
9286
9287 Returns the volume of a given shape. 
9288
9289 **Example:**
9290 ~~~~~
9291 XGetVolume D 0:1:1:1 
9292 ~~~~~
9293
9294 @subsubsection occt_draw_8_9_5  XSetArea
9295
9296 Syntax:      
9297 ~~~~~
9298 XSetArea <document> {<shape>|<label>} <area>
9299 ~~~~~
9300
9301 Sets new area to attribute list ??? given shape. 
9302
9303 **Example:**
9304 ~~~~~
9305 XSetArea D 0:1:1:1 2233.99 
9306 ~~~~~
9307
9308 @subsubsection occt_draw_8_9_6  XSetCentroid
9309
9310 Syntax:      
9311 ~~~~~
9312 XSetCentroid <document> {<shape>|<label>} <x> <y> <z>
9313 ~~~~~
9314
9315 Sets new center of gravity  to the attribute list given shape. 
9316
9317 **Example:**
9318 ~~~~~
9319 XSetCentroid D 0:1:1:1 0. 0. 100. 
9320 ~~~~~
9321
9322 @subsubsection occt_draw_8_9_7  XSetMaterial
9323
9324 Syntax:      
9325 ~~~~~
9326 XSetMaterial <document> {<shape>|<label>} <name> <density(g/cu sm)>
9327 ~~~~~ 
9328
9329 Adds a new label with material into the material table in a document, and adds a link to this material to the attribute list of a given shape or a given label. The last parameter sets the density of a pointed material. 
9330
9331 **Example:**
9332 ~~~~~
9333 XSetMaterial D 0:1:1:1 Titanium 8899.77 
9334 ~~~~~
9335
9336 @subsubsection occt_draw_8_9_8  XSetVolume
9337
9338 Syntax:      
9339 ~~~~~
9340 XSetVolume <document> {<shape>|<label>} <volume>
9341 ~~~~~
9342
9343 Sets new volume to the attribute list ??? given shape. 
9344
9345 **Example:**
9346 ~~~~~
9347 XSetVolume D 0:1:1:1 444555.33 
9348 ~~~~~
9349
9350 @subsubsection occt_draw_8_9_9  XShapeMassProps
9351
9352 Syntax:      
9353 ~~~~~
9354 XShapeMassProps <document> [ <deflection> [{<shape>|<label>}] ]
9355 ~~~~~
9356
9357 Computes and returns real mass and real center of gravity for a given shape or for all shapes in a document. The second parameter is used for calculation of the volume and CG(center of gravity). If it is 0, then the standard CASCADE tool (geometry) is used for computation, otherwise - by triangulations with a given deflection. 
9358
9359 **Example:**
9360 ~~~~~
9361 XShapeMassProps D 
9362 == Shape from label : 0:1:1:1 
9363 == Mass = 193.71681469282299 
9364 == CenterOfGravity X = 14.594564763807696,Y = 
9365     20.20271885211281,Z = 49.999999385313245 
9366 == Shape from label : 0:1:1:2 not have a mass 
9367 etc. 
9368 ~~~~~
9369
9370 @subsubsection occt_draw_8_9_10  XShapeVolume
9371
9372 Syntax:      
9373 ~~~~~
9374 XShapeVolume <shape> <deflection>
9375 ~~~~~
9376
9377 Calculates the real volume of a pointed shape with a given deflection. 
9378
9379 **Example:**
9380 ~~~~~
9381 XShapeVolume a 0 
9382 ~~~~~
9383
9384 @section occt_draw_9 Shape Healing commands
9385
9386
9387
9388 @subsection occt_draw_9_1 General commands 
9389
9390 @subsubsection occt_draw_9_1_1 bsplres
9391
9392 Syntax:      
9393 ~~~~~
9394 bsplres <result> <shape> <tol3d> <tol2d< <reqdegree> <reqnbsegments> <continuity3d> <continuity2d> <PriorDeg> <RationalConvert>
9395 ~~~~~
9396
9397 Performs approximations of a given shape (BSpline curves and surfaces or other surfaces) to BSpline with given required parameters. The specified continuity can be reduced if the approximation with a specified continuity was not done successfully. Results are put into the shape, which is given as a parameter result. For a more detailed description see the ShapeHealing User’s Guide (operator: **BSplineRestriction**). 
9398
9399 @subsubsection occt_draw_9_1_2 checkfclass2d
9400
9401 Syntax:      
9402 ~~~~~
9403 checkfclass2d <face> <ucoord> <vcoord>
9404 ~~~~~
9405
9406 Shows where a point which is given by coordinates is located in relation to a given face – outbound, inside or at the bounds. 
9407
9408 **Example:**
9409 ~~~~~
9410 checkfclass2d f 10.5 1.1 
9411 == Point is OUT 
9412 ~~~~~
9413
9414 @subsubsection occt_draw_9_1_3 checkoverlapedges
9415
9416 Syntax:      
9417 ~~~~~
9418 checkoverlapedges <edge1> <edge2> [<toler> <domaindist>]
9419 ~~~~~
9420
9421 Checks the overlapping of two given edges. If the distance between two edges is less than the given value of tolerance then edges are overlapped. Parameter \<domaindist\> sets length of part of edges on which edges are overlapped. 
9422
9423 **Example:**
9424 ~~~~~
9425 checkoverlapedges e1 e2 
9426 ~~~~~
9427
9428 @subsubsection occt_draw_9_1_4 comtol
9429
9430 Syntax:      
9431 ~~~~~
9432 comptol <shape> [nbpoints] [prefix]
9433 ~~~~~
9434
9435 Compares the real value of tolerance on curves with the value calculated by standard (using 23 points). The maximal value of deviation of 3d curve from pcurve at given simple points is taken as a real value (371 is by default). Command returns the maximal, minimal and average value of tolerance for all edges and difference between real values and set values. Edges with the maximal value of tolerance and relation will be saved if the ‘prefix’ parameter is given. 
9436
9437 **Example:** 
9438 ~~~~~    
9439 comptol h 871 t 
9440
9441 ==> Edges tolerance computed by 871 points: 
9442 ==> MAX=8.0001130696523449e-008 AVG=6.349346868091096e-009 MIN=0 
9443 ==> Relation real tolerance / tolerance set in edge 
9444 ==> MAX=0.80001130696523448 AVG=0.06349345591805905 MIN=0 
9445 ==> Edge with max tolerance saved to t_edge_tol 
9446 ==> Concerned faces saved to shapes t_1, t_2 
9447 ~~~~~
9448
9449 @subsubsection occt_draw_9_1_5 convtorevol
9450
9451 Syntax:      
9452 ~~~~~
9453 convtorevol <result> <shape>
9454 ~~~~~
9455
9456 Converts all elementary surfaces of a given shape into surfaces of revolution. 
9457 Results are put into the shape, which is given as the <i>\<result\></i> parameter. 
9458
9459 **Example:**
9460 ~~~~~
9461 convtorevol r a 
9462 ~~~~~
9463
9464 @subsubsection occt_draw_9_1_6 directfaces
9465
9466 Syntax:      
9467 ~~~~~
9468 directfaces <result> <shape>
9469 ~~~~~
9470
9471 Converts indirect surfaces and returns the results into the shape, which is given as the result parameter. 
9472
9473 **Example:**
9474 ~~~~~
9475 directfaces r a 
9476 ~~~~~
9477
9478 @subsubsection occt_draw_9_1_7 expshape
9479
9480 Syntax:   
9481 ~~~~~
9482 expshape <shape> <maxdegree> <maxseg>
9483 ~~~~~
9484
9485 Gives statistics for a given shape. This test command is working with Bezier and BSpline entities. 
9486
9487 **Example:**
9488 ~~~~~
9489 expshape a 10 10 
9490 ==> Number of Rational Bspline curves 128 
9491 ==> Number of Rational Bspline pcurves 48 
9492 ~~~~~
9493
9494 @subsubsection occt_draw_9_1_8 fixsmall
9495
9496 Syntax:      
9497 ~~~~~
9498 fixsmall <result> <shape> [<toler>=1.]
9499 ~~~~~
9500
9501 Fixes small edges in given shape by merging adjacent edges with agiven tolerance. Results are put into the shape, which is given as the result parameter. 
9502
9503 **Example:**
9504 ~~~~~
9505 fixsmall r a 0.1 
9506 ~~~~~
9507
9508 @subsubsection occt_draw_9_1_9 fixsmalledges
9509
9510 Syntax:      
9511 ~~~~~
9512 fixsmalledges <result> <shape> [<toler> <mode> <maxangle>]
9513 ~~~~~
9514
9515 Searches at least one small edge at a given shape. If such edges have been found, then small edges are merged with a given tolerance. If parameter <i>\<mode\></i> is equal to *Standard_True* (can be given any values, except 2), then  small edges, which can not be merged, are removed, otherwise they are to be kept (*Standard_False* is used by default). Parameter <i>\<maxangle\></i> sets a maximum possible angle for merging two adjacent edges, by default no limit angle is applied (-1). Results are put into the shape, which is given as parameter result. 
9516
9517 **Example:**
9518 ~~~~~
9519 fixsmalledges r a 0.1 1 
9520 ~~~~~
9521
9522 @subsubsection occt_draw_9_1_10 fixshape
9523
9524 Syntax:      
9525 ~~~~~
9526 fixshape <result> <shape> [<preci> [<maxpreci>]] [{switches}]
9527 ~~~~~
9528
9529 Performs fixes of all sub-shapes (such as *Solids*, *Shells*, *Faces*, *Wires* and *Edges*) of a given shape. Parameter <i>\<preci\></i> sets a basic precision value, <i>\<maxpreci\></i> sets the maximal allowed tolerance. Results are put into the shape, which is given as parameter result. <b>{switches}</b> allows to tune parameters of ShapeFix 
9530
9531 The following syntax is used: 
9532 * <i>\<symbol\></i> may be
9533   * "-" to set parameter off, 
9534   * "+" to set on or  
9535   * "*" to set default 
9536 * <i>\<parameter\></i> is identified by  letters: 
9537   * l - FixLackingMode 
9538   * o - FixOrientationMode 
9539   * h - FixShiftedMode 
9540   * m - FixMissingSeamMode 
9541   * d - FixDegeneratedMode 
9542   * s - FixSmallMode 
9543   * i - FixSelfIntersectionMode 
9544   * n - FixNotchedEdgesMode 
9545 For enhanced message output, use switch '+?' 
9546
9547 **Example:**
9548 ~~~~~
9549 fixshape r a 0.001 
9550 ~~~~~
9551
9552 @subsubsection occt_draw_9_1_11 fixwgaps
9553
9554 Syntax:      
9555 ~~~~~
9556 fixwgaps <result> <shape> [<toler>=0]
9557 ~~~~~
9558
9559 Fixes gaps between ends of curves of adjacent edges (both 3d and pcurves) in wires in a given shape with a given tolerance. Results are put into the shape, which is given as parameter result. 
9560
9561 **Example:**
9562 ~~~~~
9563 fixwgaps r a 
9564 ~~~~~
9565
9566 @subsubsection occt_draw_9_1_12 offsetcurve, offset2dcurve
9567
9568 Syntax:      
9569 ~~~~~
9570 offsetcurve <result> <curve> <offset> <direction(as point)>
9571 offset2dcurve <result> <curve> <offset>
9572 ~~~~~
9573
9574 **offsetcurve** works with the curve in 3d space, **offset2dcurve** in 2d space. 
9575
9576 Both commands are intended to create a new offset curve by copying the given curve to distance, given by parameter <i>\<offset\></i>. Parameter <i>\<direction\></i> defines direction of the offset curve. It is created as a point. For correct work of these commands the direction of normal of the offset curve must be perpendicular to the plane, the basis curve is located there. Results are put into the curve, which is given as parameter <i>\<result\></i>.  
9577
9578 **Example:**
9579 ~~~~~
9580 point pp 10 10 10 
9581 offsetcurve r c 20 pp 
9582 ~~~~~
9583
9584 @subsubsection occt_draw_9_1_13 projcurve
9585
9586 Syntax:      
9587 ~~~~~
9588 projcurve <edge>|<curve3d>|<curve3d first last>  <X> <Y> <Z>
9589 ~~~~~
9590
9591 **projcurve** returns the projection of a given point on a given curve. The curve may be defined by three ways: by giving the edge name, giving the 3D curve and by giving the unlimited curve and limiting it by pointing its start and finish values. 
9592
9593 **Example:** 
9594 ~~~~~    
9595 projcurve k_1 0 1 5 
9596 ==Edge k_1 Params from 0 to 1.3 
9597 ==Precision (BRepBuilderAPI) : 9.9999999999999995e-008  ==Projection : 0  1  5 
9598 ==Result : 0  1.1000000000000001  0 
9599 ==Param = -0.20000000000000001  Gap = 5.0009999000199947 
9600 ~~~~~
9601
9602 @subsubsection occt_draw_9_1_14 projface
9603
9604 Syntax:      
9605 ~~~~~
9606 projface <face> <X> <Y> [<Z>]
9607 ~~~~~
9608
9609 Returns the projection of a given point to a given face in 2d or 3d space. If two coordinates (2d space) are given then returns coordinates projection of this point in 3d space and vice versa. 
9610
9611 **Example:**
9612 ~~~~~
9613 projface a_1 10.0 0.0 
9614 ==  Point UV  U = 10  V = 0 
9615 ==   =   proj  X = -116  Y = -45  Z = 0 
9616 ~~~~~
9617
9618 @subsubsection occt_draw_9_1_15 scaleshape
9619
9620 Syntax:   
9621 ~~~~~
9622 scaleshape <result> <shape> <scale>
9623 ~~~~~
9624
9625 Returns a new shape, which is the result of scaling of a given shape with a coefficient equal to the parameter <i>\<scale\></i>. Tolerance is calculated for the  new shape as well.
9626
9627 **Example:**
9628 ~~~~~
9629 scaleshape r a_1 0.8 
9630 ~~~~~
9631
9632 @subsubsection occt_draw_9_1_16 settolerance
9633
9634 Syntax:      
9635 ~~~~~
9636 settolerance <shape> [<mode>=v-e-w-f-a] <val>(fix value) or
9637                    <tolmin> <tolmax>
9638 ~~~~~ 
9639
9640 Sets new values of tolerance for a given shape. If the second parameter <i>mode</i> is given, then the tolerance value is set only for these sub shapes. 
9641
9642 **Example:**
9643 ~~~~~
9644 settolerance a 0.001 
9645 ~~~~~
9646
9647 @subsubsection occt_draw_9_1_17 splitface
9648
9649 Syntax:      
9650 ~~~~~
9651 splitface <result> <face> [u usplit1 usplit2...] [v vsplit1 vsplit2 ...]
9652 ~~~~~
9653
9654 Splits a given face in parametric space and puts the result into the given parameter <i>\<result\></i>. 
9655 Returns the status of split face. 
9656
9657 **Example:**
9658 ~~~~~
9659 # split face f by parameter u = 5 
9660 splitface r f u 5 
9661 ==> Splitting by   U:   ,5 
9662 ==> Status:  DONE1 
9663 ~~~~~
9664
9665 @subsubsection occt_draw_9_1_18 statshape
9666
9667 Syntax:      
9668 ~~~~~
9669 statshape <shape> [particul]
9670 ~~~~~
9671
9672 Returns the number of sub-shapes, which compose the given shape. For example, the number of solids, number of faces etc.  It also returns the number of geometrical objects or sub-shapes with a specified type, example, number of free faces, number of C0 
9673 surfaces. The last parameter becomes out of date. 
9674
9675 **Example:**
9676 ~~~~~
9677 statshape a 
9678 ==> Count     Item 
9679 ==> -----     ---- 
9680 ==> 402     Edge (oriented) 
9681 ==> 402     Edge (Shared) 
9682 ==> 74      Face 
9683 ==> 74      Face (Free) 
9684 ==> 804     Vertex (Oriented) 
9685 ==> 402     Vertex (Shared) 
9686 ==> 78      Wire 
9687 ==> 4      Face with more than one wire 
9688 ==> 34     bspsur: BSplineSurface 
9689 ~~~~~
9690
9691 @subsubsection occt_draw_9_1_19 tolerance
9692
9693 Syntax:
9694 ~~~~~
9695 tolerance <shape> [<mode>:D v e f c] [<tolmin> <tolmax>:real]
9696 ~~~~~
9697
9698 Returns tolerance (maximal, avg and minimal values)  of all given shapes and tolerance of their *Faces*, *Edges* and *Vertices*. If parameter <i>\<tolmin\></i> or <i>\<tolmax\></i> or both of them are given, then sub-shapes are returned as a result of analys of this shape, which satisfy the given tolerances. If a particular value of entity ((**D**)all shapes  (**v**) *vertices* (**e**) *edges* (**f**) *faces* (**c**) *combined* (*faces*)) is given as the second parameter then only this group will be analyzed for tolerance. 
9699
9700 **Example:**
9701 ~~~~~
9702 tolerance a 
9703 ==> Tolerance MAX=0.31512672416608001 AVG=0.14901359484722074 MIN=9.9999999999999995e-08 
9704 ==> FACE    : MAX=9.9999999999999995e-08 AVG=9.9999999999999995e-08 MIN=9.9999999999999995e-08 
9705 ==> EDGE    : MAX=0.31512672416608001 AVG=0.098691334511810405 MIN=9.9999999999999995e-08 
9706 ==> VERTEX  : MAX=0.31512672416608001 AVG=0.189076074499648 MIN=9.9999999999999995e-08 
9707
9708 tolerance a v 0.1 0.001 
9709 ==>  Analysing Vertices gives 6 Shapes between tol1=0.10000000000000001 and tol2=0.001 , named tol_1 to tol_6 
9710 ~~~~~
9711
9712
9713 @subsection occt_draw_9_2 Conversion commands 
9714
9715 @subsubsection occt_draw_9_2_1 DT_ClosedSplit
9716
9717 Syntax:      
9718 ~~~~~
9719 DT_ClosedSplit <result> <shape>
9720 ~~~~~
9721
9722 Divides all closed faces in the shape (for example cone) and returns result of given shape into shape, which is given as parameter result. Number of faces in resulting shapes will be increased. 
9723 Note: Closed face – it’s face with one or more seam. 
9724
9725 **Example:**
9726 ~~~~~
9727 DT_ClosetSplit r a 
9728 ~~~~~
9729
9730 @subsubsection occt_draw_9_2_2 DT_ShapeConvert, DT_ShapeConvertRev
9731
9732 Syntax:      
9733 ~~~~~
9734 DT_ShapeConvert <result> <shape> <convert2d> <convert3d>
9735 DT_ShapeConvertRev <result> <shape> <convert2d> <convert3d>
9736 ~~~~~
9737  
9738 Both commands are intended for the conversion of 3D, 2D curves to Bezier curves and surfaces to Bezier based surfaces. Parameters convert2d and convert3d take on a value 0 or 1. If the given value is 1, then the conversion will be performed, otherwise it will not be performed. The results are put into the shape, which is given as parameter Result. Command *DT_ShapeConvertRev* differs from *DT_ShapeConvert* by converting all elementary surfaces into surfaces of revolution first. 
9739
9740 **Example:**
9741 ~~~~~
9742 DT_ShapeConvert r a 1 1 
9743 == Status: DONE1 
9744 ~~~~~
9745
9746 @subsubsection occt_draw_9_2_3 DT_ShapeDivide
9747
9748 Syntax:      
9749 ~~~~~
9750 DT_ShapeDivide <result> <shape> <tol>
9751 ~~~~~
9752
9753 Divides the shape with C1 criterion and returns the result of geometry conversion of a given shape into the shape, which is given as parameter result. This command illustrates how class *ShapeUpgrade_ShapeDivideContinuity* works. This class allows to convert geometry with a continuity less than the specified continuity to geometry with target continuity. If conversion is not possible then the geometrical object is split into several ones, which satisfy the given tolerance. It also returns the  status shape splitting: 
9754  * OK      : no splitting was done 
9755  * Done1 : Some edges were split 
9756  * Done2 : Surface was split 
9757  * Fail1    : Some errors occurred 
9758
9759 **Example:**
9760 ~~~~~
9761 DT_ShapeDivide r a 0.001 
9762 == Status: OK 
9763 ~~~~~
9764
9765 @subsubsection occt_draw_9_2_4 DT_SplitAngle
9766
9767 Syntax:      
9768 ~~~~~
9769 DT_SplitAngle <result> <shape> [MaxAngle=95]
9770 ~~~~~
9771
9772 Works with all revolved surfaces, like cylinders, surfaces of revolution, etc. This command divides given revolved surfaces into segments so that each resulting segment covers not more than the given *MaxAngle* degrees and puts the result of splitting into the shape, which is given as parameter result. Values of returned status are given above. 
9773 This command illustrates how class *ShapeUpgrade_ShapeDivideAngle* works. 
9774
9775 **Example:**
9776 ~~~~~
9777 DT_SplitAngle r a 
9778 == Status: DONE2 
9779 ~~~~~
9780
9781 @subsubsection occt_draw_9_2_5 DT_SplitCurve
9782
9783 Syntax:      
9784 ~~~~~
9785 DT_SplitCurve <curve> <tol> <split(0|1)>
9786 ~~~~~
9787
9788 Divides the 3d curve with C1 criterion and returns the result of splitting of the given curve into a new curve. If the curve had been divided by segments, then each segment is put to an individual result.  This command can correct a given curve at a knot with the given tolerance, if it is impossible, then the given surface is split at that knot. If the last parameter is 1, then 5 knots are added at the given curve, and its surface is split by segments, but this will be performed not for all parametric spaces. 
9789
9790 **Example:**
9791 ~~~~~
9792 DT_SplitCurve r c 
9793 ~~~~~
9794
9795 @subsubsection occt_draw_9_2_6 DT_SplitCurve2d
9796
9797 Syntax:      
9798 ~~~~~
9799 DT_SplitCurve2d Curve Tol Split(0/1) 
9800 ~~~~~
9801
9802 Works just as **DT_SplitCurve** (see above), only with 2d curve. 
9803
9804 **Example:**
9805 ~~~~~
9806 DT_SplitCurve2d r c 
9807 ~~~~~
9808
9809 @subsubsection occt_draw_9_2_7 DT_SplitSurface
9810
9811 Syntax:      
9812 ~~~~~
9813 DT_SplitSurface <result> <Surface|GridSurf> <tol> <split(0|1)>
9814 ~~~~~
9815
9816 Divides surface with C1 criterion and returns the result of splitting of a given surface into surface, which is given as parameter result. If the surface has been divided into segments, then each segment is put to an individual result.  This command can correct a given C0 surface at a knot with a given tolerance, if it is impossible, then the given surface is split at that knot. If the last parameter is 1, then 5 knots are added to the given surface, and its surface is split by segments, but this will be performed not for all parametric spaces. 
9817
9818 **Example:** 
9819 ~~~~~
9820
9821 ~~~~~
9822 # split surface with name "su"
9823 DT_SplitSurface res su 0.1 1 
9824 ==> single surf 
9825 ==> appel a SplitSurface::Init 
9826 ==> appel a SplitSurface::Build 
9827 ==> appel a SplitSurface::GlobalU/VKnots 
9828 ==> nb GlobalU;nb GlobalV=7 2 0 1 2 3 4 5 6.2831853072 0 1 
9829 ==> appel a Surfaces 
9830 ==> transfert resultat 
9831 ==> res1_1_1 res1_2_1 res1_3_1 res1_4_1 res1_5_1 res1_6_1 
9832 ~~~~~
9833 ~~~~~
9834
9835 @subsubsection occt_draw_9_2_8 DT_ToBspl
9836
9837 Syntax:
9838 ~~~~~
9839 DT_ToBspl <result> <shape>
9840 ~~~~~
9841
9842 Converts a surface of linear extrusion, revolution and offset surfaces into BSpline surfaces. Returns the result into the shape, which is given as parameter result. 
9843
9844 **Example:** 
9845 ~~~~~    
9846 DT_ToBspl res sh 
9847 == error = 5.20375663162094e-08   spans = 10 
9848 ==  Surface is aproximated with continuity 2 
9849 ~~~~~
9850
9851 @section occt_draw_10 Performance evaluation commands
9852
9853
9854 @subsection occt_draw_10_1 VDrawSphere
9855
9856 Syntax:      
9857 ~~~~~
9858 vdrawsphere shapeName Fineness [X=0.0 Y=0.0 Z=0.0] [Radius=100.0] [ToEnableVBO=1] [NumberOfViewerUpdate=1] [ToShowEdges=0] 
9859 ~~~~~
9860
9861 Calculates and displays in a given number of steps a sphere with given coordinates, radius and fineness. Returns the information about the properties of the sphere, the time and the amount of memory required to build it. 
9862
9863 This command can be used for visualization performance evaluation instead of the outdated Visualization Performance Meter. 
9864
9865 **Example:** 
9866 ~~~~~
9867 vdrawsphere s 200 1 1 1 500 1 
9868 == Compute Triangulation... 
9869 == NumberOfPoints: 39602 
9870 == NumberOfTriangles: 79200 
9871 == Amount of memory required for PolyTriangulation without Normals: 2 Mb 
9872 == Amount of memory for colors: 0 Mb 
9873 == Amount of memory for PolyConnect: 1 Mb 
9874 == Amount of graphic card memory required: 2 Mb 
9875 == Number of scene redrawings: 1 
9876 == CPU user time: 15.6000999999998950 msec 
9877 == CPU system time: 0.0000000000000000 msec 
9878 == CPU average time of scene redrawing: 15.6000999999998950 msec 
9879 ~~~~~
9880
9881
9882 @section occt_draw_11 Extending Test Harness with custom commands
9883
9884
9885 The following chapters explain how to extend Test Harness with custom commands and how to activate them using a plug-in mechanism. 
9886
9887
9888 @subsection occt_draw_11_1 Custom command implementation
9889
9890 Custom command implementation has not undergone any changes since the introduction of the plug-in mechanism. The syntax of every command should still be like in the following example. 
9891
9892 **Example:** 
9893 ~~~~~
9894 static Standard_Integer myadvcurve(Draw_Interpretor& di, Standard_Integer n, char** a) 
9895
9896 ... 
9897
9898 ~~~~~
9899
9900 For examples of existing commands refer to Open CASCADE Technology (e.g. GeomliteTest.cxx). 
9901
9902
9903 @subsection occt_draw_11_2 Registration of commands in Test Harness
9904
9905 To become available in the Test Harness the custom command must be registered in it. This should be done as follows. 
9906
9907 **Example:** 
9908 ~~~~~
9909 void MyPack::CurveCommands(Draw_Interpretor& theCommands) 
9910
9911 ... 
9912 char* g = "Advanced curves creation"; 
9913
9914 theCommands.Add ( "myadvcurve", "myadvcurve name p1 p2 p3 – Creates my advanced curve from points", 
9915                   __FILE__, myadvcurve, g ); 
9916 ... 
9917
9918 ~~~~~
9919
9920 @subsection occt_draw_11_3 Creating a toolkit (library) as a plug-in
9921
9922 All custom commands are compiled and linked into a dynamic library (.dll on Windows, or .so on Unix/Linux). To make Test Harness recognize it as a plug-in it must respect certain conventions. Namely, it must export function *PLUGINFACTORY()* accepting the Test Harness interpreter object (*Draw_Interpretor*). This function will be called when the library is dynamically loaded during the Test Harness session. 
9923
9924 This exported function *PLUGINFACTORY()* must be implemented only once per library. 
9925
9926 For convenience the *DPLUGIN* macro (defined in the *Draw_PluginMacro.hxx* file) has been provided. It implements the *PLUGINFACTORY()* function as a call to the *Package::Factory()* method and accepts *Package* as an argument. Respectively, this *Package::Factory()* method must be implemented in the library and activate all implemented commands. 
9927
9928 **Example:** 
9929 ~~~~~
9930 #include <Draw_PluginMacro.hxx>
9931
9932 void MyPack::Factory(Draw_Interpretor& theDI)
9933 {
9934 ...
9935 // 
9936 MyPack::CurveCommands(theDI);
9937 ...
9938 }
9939
9940 // Declare entry point PLUGINFACTORY
9941 DPLUGIN(MyPack)
9942 ~~~~~
9943
9944 @subsection occt_draw_11_4 Creation of the plug-in resource file
9945
9946 As mentioned above, the plug-in resource file must be compliant with Open CASCADE Technology requirements (see *Resource_Manager.cdl* file for details). In particular, it should contain keys separated from their values by a colon (;:;). 
9947 For every created plug-in there must be a key. For better readability and comprehension it is recommended to have some meaningful name. 
9948 Thus, the resource file must contain a line mapping this name (key) to the library name. The latter should be without file extension (.dll on Windows, .so on Unix/Linux) and without the ;lib; prefix on Unix/Linux. 
9949 For several plug-ins one resource file can be created. In such case, keys denoting plug-ins can be combined into groups, these groups - into their groups and so on (thereby creating some hierarchy). Any new parent key must have its value as a sequence of child keys separated by spaces, tabs or commas. Keys should form a tree without cyclic dependencies. 
9950
9951 **Examples** (file MyDrawPlugin): 
9952 ~~~~~
9953 ! Hierarchy of plug-ins 
9954 ALL                : ADVMODELING, MESHING 
9955 DEFAULT            : MESHING 
9956 ADVMODELING        : ADVSURF, ADVCURV 
9957
9958 ! Mapping from naming to toolkits (libraries) 
9959 ADVSURF            : TKMyAdvSurf 
9960 ADVCURV            : TKMyAdvCurv 
9961 MESHING            : TKMyMesh 
9962 ~~~~~
9963
9964 For other examples of the plug-in resource file refer to the @ref occt_draw_1_3_2 "Plug-in resource file" chapter above or to the <i>$CASROOT/src/DrawPlugin</i> file shipped with Open CASCADE Technology. 
9965
9966
9967 @subsection occt_draw_11_5 Dynamic loading and activation
9968
9969 Loading a plug-in and activating its commands is described in the @ref occt_draw_1_3_3 "Activation of the commands implemented in the plug-in" chapter. 
9970
9971 The procedure consists in defining the system variables and using the *pload* commands in the Test Harness session. 
9972
9973 **Example:** 
9974 ~~~~
9975 Draw[]> set env(CSF_MyDrawPluginDefaults) /users/test
9976 Draw[]> pload -MyDrawPlugin ALL
9977 ~~~~
9978