Draw Test Harness {#occt_user_guides__test_harness}
===============================
@tableofcontents
@section occt_draw_1 Introduction
This manual explains how to use Draw, the test harness for Open CASCADE Technology (**OCCT**).
Draw is a command interpreter based on TCL and a graphical system used to test and demonstrate Open CASCADE Technology modeling libraries.
@subsection occt_draw_1_1 Overview
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.
Draw can be used interactively to create, display and modify objects such as curves, surfaces and topological shapes.
Scripts may be written to customize Draw and perform tests.
New types of objects and new commands may be added using the C++ programming language.
Draw consists of:
* A command interpreter based on the TCL command language.
* A 3d graphic viewer based on the X system.
* A basic set of commands covering scripts, variables and graphics.
* 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.
* A set of topological commands allowing the user to create and modify BRep shapes and to use the OCCT topology algorithms.
There is also a set of commands for each delivery unit in the modeling libraries:
* GEOMETRY,
* TOPOLOGY,
* ADVALGOS,
* GRAPHIC,
* PRESENTATION.
@subsection occt_draw_1_2 Contents of this documentation
This documentation describes:
* The command language.
* The basic set of commands.
* The graphical commands.
* The Geometry set of commands.
* The Topology set of commands.
* OCAF commands.
* Data Exchange commands
* Shape Healing commands
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.
~~~~{.php}
exit
~~~~
Terminates the Draw, TCL session. If the commands are read from a file using the source command, this will terminate the file.
**Example:**
~~~~{.php}
# this is a very short example
exit
~~~~
@subsection occt_draw_1_3 Getting started
Install Draw and launch Emacs. Get a command line in Emacs using *Esc x* and key in *woksh*.
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.
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.
@subsubsection occt_draw_1_3_1 Launching DRAW Test Harness
Test Harness executable *DRAWEXE* is located in the $CASROOT/\/bin directory (where \ is Win for Windows and Linux for Linux operating systems). Prior to launching it is important to make sure that the environment is correctly setup (usually this is done automatically after the installation process on Windows or after launching specific scripts on Linux).
@subsubsection occt_draw_1_3_2 Plug-in resource file
Open CASCADE Technology is shipped with the DrawPlugin resource file located in the $CASROOT/src/DrawResources directory.
The format of the file is compliant with standard Open CASCADE Technology resource files (see the *Resource_Manager.hxx* file for details).
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.
**Example:** (excerpt from DrawPlugin):
~~~~
OCAF : VISUALIZATION, OCAFKERNEL
VISUALIZATION : AISV
OCAFKERNEL : DCAF
DCAF : TKDCAF
AISV : TKViewerTest
~~~~
@subsubsection occt_draw_1_3_3 Activation of commands implemented in the plug-in
To load a plug-in declared in the resource file and to activate the commands the following command must be used in Test Harness:
~~~~{.php}
pload [-PluginFileName] [[Key1] [Key2]...]
~~~~
Where:
* -PluginFileName -- 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.
* *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).
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 $CASROOT/src/DrawResources directory.
~~~~{.php}
Draw[] pload -DrawPlugin OCAF
~~~~
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 $CASROOT/src/DrawResources 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.
~~~~{.php}
Draw[] pload (equivalent to pload -DrawPlugin DEFAULT).
~~~~
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.
@section occt_draw_2 The Command Language
@subsection occt_draw_2_1 Overview
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.
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:
* Syntax of the TCL language.
* Accessing variables in TCL and Draw.
* Control structures.
* Procedures.
@subsection occt_draw_2_2 Syntax of TCL
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.
The basic program for TCL is a script. A script consists of one or more commands. Commands are separated by new lines or semicolons.
~~~~{.php}
set a 24
set b 15
set a 25; set b 15
~~~~
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.
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.
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.
The following substitutions are performed by TCL:
Variable substitution is triggered by the $ character (as with csh), the content of the variable is substituted; { } may be used as in csh to enclose the name of the variable.
**Example:**
~~~~{.php}
# set a variable value
set file documentation
puts $file #to display file contents on the screen
# a simple substitution, set psfile to documentation.ps
set psfile $file.ps
puts $psfile
# another substitution, set pfile to documentationPS
set pfile ${file}PS
# a last one,
# delete files NEWdocumentation and OLDdocumentation
foreach prefix {NEW OLD} {rm $prefix$file}
~~~~
Command substitution is triggered by the [ ] characters. The brackets must enclose a valid script. The script is evaluated and the result is substituted.
Compare command construction in csh.
**Example:**
~~~~{.php}
set degree 30
set pi 3.14159265
# expr is a command evaluating a numeric expression
set radian [expr $pi*$degree/180]
~~~~
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.
TCL uses two forms of *quoting* to prevent substitution and word breaking.
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 " ".
**Example:**
~~~~{.php}
# set msg to ;the price is 12.00;
set price 12.00
set msg ;the price is $price;
~~~~
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.
**Example:**
~~~~{.php}
set x 0
# this will loop for ever
# because while argument is ;0 < 3;
while ;$x < 3; {set x [expr $x+1]}
# this will terminate as expected because
# while argument is {$x < 3}
while {$x < 3} {set x [expr $x+1]}
# this can be written also
while {$x < 3} {
set x [expr $x+1]
}
# the following cannot be written
# because while requires two arguments
while {$x < 3}
{
set x [expr $x+1]
}
~~~~
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.
**Example:**
~~~~{.php}
# This is a comment
set a 1 # this is not a comment
set b 1; # this is a comment
~~~~
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.
**Example:**
~~~~{.php}
# I want to delete two files
set files ;foo bar;
# this will fail because rm will receive only one argument
# and complain that ;foo bar; does not exit
exec rm $files
# a second evaluation will do it
~~~~
@subsection occt_draw_2_3 Accessing variables in TCL and Draw
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.
TCL provides a mechanism to link user data to variables. Using this functionality, Draw defines its variables as TCL variables with associated data.
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 $ does not change the result of a command. The content of a Draw variable is accessed using appropriate commands.
There are many kinds of Draw variables, and new ones may be added with C++. Geometric and topological variables are described below.
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.
**Example:**
~~~~{.php}
# dset is used for numeric variables
# pi is a predefined Draw variable
dset angle pi/3 radius 10
point p radius*cos(angle) radius*sin(angle) 0
~~~~
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.
@subsubsection occt_draw_2_3_1 set, unset
Syntax:
~~~~{.php}
set varname [value]
unset varname [varname varname ...]
~~~~
*set* assigns a string value to a variable. If the variable does not already exist, it is created.
Without a value, *set* returns the content of the variable.
*unset* deletes variables. It is also used to delete Draw variables.
**Example:**
~~~~{.php}
set a "Hello world"
set b "Goodbye"
set a
== "Hello world"
unset a b
set a
~~~~
**Note**, that the *set* command can set only one variable, unlike the *dset* command.
@subsubsection occt_draw_2_3_2 dset, dval
Syntax
~~~~{.php}
dset var1 value1 vr2 value2 ...
dval name
~~~~
*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.
*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.
**Example:**
~~~~{.php}
# z is set to 0
dset x 10 y 15 z
== 0
# no $ required for Draw commands
point p x y z
# "puts" prints a string
puts ;x = [dval x], cos(x/pi) = [dval cos(x/pi)];
== x = 10, cos(x/pi) = -0.99913874099467914
~~~~
**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. (a + b) is parsed as three words: "(a + b)" or (a+b) are correct.
@subsubsection occt_draw_2_3_3 del, dall
Syntax:
~~~~{.php}
del varname_pattern [varname_pattern ...]
dall
~~~~
*del* command does the same thing as *unset*, but it deletes the variables matched by the pattern.
*dall* command deletes all variables in the session.
@subsection occt_draw_2_4 lists
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.
This allows you to insert lists within lists.
**Example:**
~~~~{.php}
# a list of 3 strings
;a b c;
# a list of two strings the first is a list of 2
;{a b} c;
~~~~
Many TCL commands return lists and **foreach** is a useful way to create loops on list elements.
@subsubsection occt_draw_2_5 Control Structures
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:
* You use braces instead of parentheses to enclose conditions.
* You do not start the script on the next line of your command.
@subsubsection occt_draw_2_5_1 if
Syntax
~~~~{.php}
if condition script [elseif script .... else script]
~~~~
**If** evaluates the condition and the script to see whether the condition is true.
**Example:**
~~~~{.php}
if {$x > 0} {
puts ;positive;
} elseif {$x == 0} {
puts ;null;
} else {
puts ;negative;
}
~~~~
@subsubsection occt_draw_2_5_2 while, for, foreach
Syntax:
~~~~{.php}
while condition script
for init condition reinit script
foreach varname list script
~~~~
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. \
**Example:**
~~~~{.php}
# while example
dset x 1.1
while {[dval x] < 100} {
circle c 0 0 x
dset x x*x
}
# for example
# incr var d, increments a variable of d (default 1)
for {set i 0} {$i < 10} {incr i} {
dset angle $i*pi/10
point p$i cos(angle0 sin(angle) 0
}
# foreach example
foreach object {crapo tomson lucas} {display $object}
~~~~
@subsubsection occt_draw_2_5_3 break, continue
Syntax:
~~~~{.php}
break
continue
~~~~
Within loops, the **break** and **continue** commands have the same effect as in C.
**break** interrupts the innermost loop and **continue** jumps to the next iteration.
**Example:**
~~~~{.php}
# search the index for which t$i has value ;secret;
for {set i 1} {$i <= 100} {incr i} {
if {[set t$i] == ;secret;} break;
}
~~~~
@subsection occt_draw_2_6 Procedures
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.
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.
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.
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.
@subsubsection occt_draw_2_6_1 proc
Syntax:
~~~~{.php}
proc argumentlist script
~~~~
**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.
**return** gives a return value to the procedure.
**Example:**
~~~~{.php}
# simple procedure
proc hello {} {
puts ;hello world;
}
# procedure with arguments and default values
proc distance {x1 y1 {x2 0} {y2 0}} {
set d [expr (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1)]
return [expr sqrt(d)]
}
proc fact n {
if {$n == 0} {return 1} else {
return [expr n*[fact [expr n -1]]]
}
}
~~~~
@subsubsection occt_draw_2_6_2 global, upvar
Syntax:
~~~~{.php}
global varname [varname ...]
upvar varname localname [varname localname ...]
~~~~
**global** accesses high level variables. Unlike C, global variables are not visible in procedures.
**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.
**Note** that in the following examples the \$ character is always necessarily used to access the arguments.
**Example:**
~~~~{.php}
# convert degree to radian
# pi is a global variable
proc deg2rad (degree} {
return [dval pi*$degree/2.]
}
# create line with a point and an angle
proc linang {linename x y angle} {
upvar linename l
line l $x $y cos($angle) sin($angle)
}
~~~~
@section occt_draw_3 Basic Commands
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:
* General commands, which are used for Draw and TCL management.
* Variable commands, which are used to manage Draw variables such as storing and dumping.
* Graphic commands, which are used to manage the graphic system, and so pertain to views.
* Variable display commands, which are used to manage the display of objects within given views.
Note that Draw also features a GUI task bar providing an alternative way to give certain general, graphic and display commands
@subsection occt_draw_3_1 General commands
This section describes several useful commands:
* **help** to get information,
* **source** to eval a script from a file,
* **spy** to capture the commands in a file,
* **cpulimit** to limit the process cpu time,
* **wait** to waste some time,
* **chrono** to time commands.
@subsubsection occt_draw_3_1_1 help
Syntax:
~~~~{.php}
help [command [helpstring group]]
~~~~
Provides help or modifies the help information.
**help** without arguments lists all groups and the commands in each group.
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.
**Example:**
~~~~{.php}
# Gives help on all commands starting with *a*
~~~~
@subsubsection occt_draw_3_1_2 source
Syntax:
~~~~{.php}
source filename
~~~~
Executes a file.
The **exit** command will terminate the file.
@subsubsection occt_draw_3_1_3 spy
Syntax:
~~~~{.php}
spy [filename]
~~~~
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.
If a command returns an error it is saved with a comment mark.
The file created by **spy** can be executed with the **source** command.
**Example:**
~~~~{.php}
# all commands will be saved in the file ;session;
spy session
# the file ;session; is closed and commands are not saved
spy
~~~~
@subsubsection occt_draw_3_1_4 cpulimit
Syntax:
~~~~{.php}
cpulimit [nbseconds]
~~~~
**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.
**Example:**
~~~~{.php}
#limit cpu to one hour
cpulimit 3600
~~~~
@subsubsection occt_draw_3_1_5 wait
Syntax:
~~~~{.php}
wait [nbseconds]
~~~~
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.
~~~~{.php}
# You have ten seconds ...
wait
~~~~
@subsubsection occt_draw_3_1_6 chrono
Syntax:
~~~~{.php}
chrono [ name start/stop/reset/show/restart/[counter text]]
~~~~
Without arguments, **chrono** activates Draw chronometers. The elapsed time ,cpu system and cpu user times for each command will be printed.
With arguments, **chrono** is used to manage activated chronometers. You can perform the following actions with a chronometer.
* run the chronometer (start).
* stop the chronometer (stop).
* reset the chronometer to 0 (reset).
* restart the chronometer (restart).
* display the current time (show).
* display the current time with specified text (output example - *COUNTER text: N*), command testdiff will compare such outputs between two test runs (counter).
**Example:**
~~~~{.php}
chrono
==Chronometers activated.
ptorus t 20 5
==Elapsed time: 0 Hours 0 Minutes 0.0318 Seconds
==CPU user time: 0.01 seconds
==CPU system time: 0 seconds
~~~~
@subsection occt_draw_3_2 Variable management commands
@subsubsection occt_draw_3_2_1 isdraw, directory
Syntax:
~~~~{.php}
isdraw varname
directory [pattern]
~~~~
**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.
Use **directory** to return a list of all Draw global variables matching a pattern.
**Example:**
~~~~{.php}
set a 1
isdraw a
=== 0
dset a 1
isdraw a
=== 1
circle c 0 0 1 0 5
isdraw c
=== 1
# to destroy all Draw objects with name containing curve
foreach var [directory *curve*] {unset $var}
~~~~
@subsubsection occt_draw_3_2_2 whatis, dump
Syntax:
~~~~{.php}
whatis varname [varname ...]
dump varname [varname ...]
~~~~
**whatis** returns short information about a Draw variable. This is usually the type name.
**dump** returns a brief type description, the coordinates, and if need be, the parameters of a Draw variable.
**Example:**
~~~~{.php}
circle c 0 0 1 0 5
whatis c
c is a 2d curve
dump c
***** Dump of c *****
Circle
Center :0, 0
XAxis :1, 0
YAxis :-0, 1
Radius :5
~~~~
**Note** The behavior of *whatis* on other variables (not Draw) is not excellent.
@subsubsection occt_draw_3_2_3 renamevar, copy
Syntax:
~~~~{.php}
renamevar varname tovarname [varname tovarname ...]
copy varname tovarname [varname tovarname ...]
~~~~
* **renamevar** 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.
* **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.
**Example:**
~~~~{.php}
circle c1 0 0 1 0 5
renamevar c1 c2
# curves are copied, c2 will not be modified
copy c2 c3
~~~~
@subsubsection occt_draw_3_2_4 datadir, save, restore
Syntax:
~~~~{.php}
datadir [directory]
save variable [filename]
restore filename [variablename]
~~~~
* **datadir** without arguments prints the path of the current data directory.
* **datadir** with an argument sets the data directory path. \
If the path starts with a dot (.) only the last directory name will be changed in the path.
* **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.
* **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.
The exact content of the file is type-dependent. They are usually ASCII files and so, architecture independent.
**Example:**
~~~~{.php}
# note how TCL accesses shell environment variables
# using $env()
datadir
==.
datadir $env(WBCONTAINER)/data/default
==/adv_20/BAG/data/default
box b 10 20 30
save b theBox
==/adv_20/BAG/data/default/theBox
# when TCL does not find a command it tries a shell command
ls [datadir]
== theBox
restore theBox
== theBox
~~~~
@subsection occt_draw_3_3 User defined commands
*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.
*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.
@subsubsection occt_draw_3_3_1 set
#### In *DrawTrSurf* package:
~~~~{.php}
void Set(Standard_CString& Name,const gp_Pnt& G) ;
void Set(Standard_CString& Name,const gp_Pnt2d& G) ;
void Set(Standard_CString& Name,
const Handle(Geom_Geometry)& G) ;
void Set(Standard_CString& Name,
const Handle(Geom2d_Curve)& C) ;
void Set(Standard_CString& Name,
const Handle(Poly_Triangulation)& T) ;
void Set(Standard_CString& Name,
const Handle(Poly_Polygon3D)& P) ;
void Set(Standard_CString& Name,
const Handle(Poly_Polygon2D)& P) ;
~~~~
#### In *DBRep* package:
~~~~{.php}
void Set(const Standard_CString Name,
const TopoDS_Shape& S) ;
~~~~
Example of *DrawTrSurf*
~~~~{.php}
Handle(Geom2d_Circle) C1 = new Geom2d_Circle
(gce_MakeCirc2d (gp_Pnt2d(50,0,) 25));
DrawTrSurf::Set(char*, C1);
~~~~
Example of *DBRep*
~~~~{.php}
TopoDS_Solid B;
B = BRepPrimAPI_MakeBox (10,10,10);
DBRep::Set(char*,B);
~~~~
@subsubsection occt_draw_3_3_2 get
#### In *DrawTrSurf* package:
~~~~{.php}
Handle_Geom_Geometry Get(Standard_CString& Name) ;
~~~~
#### In *DBRep* package:
~~~~{.php}
TopoDS_Shape Get(Standard_CString& Name,
const TopAbs_ShapeEnum Typ = TopAbs_SHAPE,
const Standard_Boolean Complain
= Standard_True) ;
~~~~
Example of *DrawTrSurf*
~~~~{.php}
Standard_Integer MyCommand
(Draw_Interpretor& theCommands,
Standard_Integer argc, char** argv)
{......
// Creation of a Geom_Geometry from a Draw geometric
// name
Handle (Geom_Geometry) aGeom= DrawTrSurf::Get(argv[1]);
}
~~~~
Example of *DBRep*
~~~~{.php}
Standard_Integer MyCommand
(Draw_Interpretor& theCommands,
Standard_Integer argc, char** argv)
{......
// Creation of a TopoDS_Shape from a Draw topological
// name
TopoDS_Solid B = DBRep::Get(argv[1]);
}
~~~~
@section occt_draw_4 Graphic Commands
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.
@subsection occt_draw_4_1 Axonometric viewer
@subsubsection occt_draw_4_1_1 view, delete
Syntax:
~~~~{.php}
view index type [X Y W H]
delete [index]
~~~~
**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.
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..
**delete** deletes a view. If no index is given, all the views are deleted.
Type selects from the following range:
* *AXON* : Axonometric view
* *PERS* : Perspective view
* +X+Y : View on both axes (i.e. a top view), other codes are -X+Y, +Y-Z, etc.
* -2D- : 2d view
The index, the type, the current zoom are displayed in the window title .
**Example:**
~~~~{.php}
# this is the content of the mu4 procedure
proc mu4 {} {
delete
view 1 +X+Z 320 20 400 400
view 2 +X+Y 320 450 400 400
view 3 +Y+Z 728 20 400 400
view 4 AXON 728 450 400 400
}
~~~~
See also: **axo, pers, top, bottom, left, right, front, back, mu4, v2d, av2d, smallview**
@subsubsection occt_draw_4_1_2 axo, pers, top, ...
Syntax:
~~~~{.php}
axo
pers
...
smallview type
~~~~
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.
* **axo** creates a large window axonometric view;
* **pers** creates a large window perspective view;
* **top**, **bottom**, **left**, **right**, **front**, **back** create a large window axis view;
* **mu4** creates four small window views: front, left, top and axo.
* **v2d** creates a large window 2d view.
* **av2d** creates two small window views, one 2d and one axo
* **smallview** creates a view at the bottom right of the screen of the given type.
See also: **view**, **delete**
@subsubsection occt_draw_4_1_3 mu, md, 2dmu, 2dmd, zoom, 2dzoom
Syntax:
~~~~{.php}
mu [index] value
2dmu [index] value
zoom [index] value
wzoom
~~~~
* **mu** (magnify up) increases the zoom in one or several views by a factor of 10%.
* **md** (magnify down) decreases the zoom by the inverse factor. **2dmu** and **2dmd**
perform the same on one or all 2d views.
* **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.
* **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.
**Example:**
~~~~{.php}
# set a zoom of 2.5
zoom 2.5
# magnify by 10%
mu 1
# magnify by 20%
~~~~
See also: **fit**, **2dfit**
@subsubsection occt_draw_4_14 pu, pd, pl, pr, 2dpu, 2dpd, 2dpl, 2dpr
Syntax:
~~~~{.php}
pu [index]
pd [index]
~~~~
The p_ 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.
~~~~{.php}
# you have selected one anonometric view
pu
# or
pu 1
# you have selected an mu4 view; the object in the third view will pan up
pu 3
~~~~
See also: **fit**, **2dfit**
@subsubsection occt_draw_4_1_5 fit, 2dfit
Syntax:
~~~~{.php}
fit [index]
2dfit [index]
~~~~
**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.
When fitting all views a unique zoom is computed for all the views. All views are on the same scale.
**Example:**
~~~~{.php}
# fit only view 1
fit 1
# fit all 2d views
2dfit
~~~~
See also: **zoom**, **mu**, **pu**
@subsubsection occt_draw_4_1_6 u, d, l, r
Syntax:
~~~~{.php}
u [index]
d [index]
l [index]
r [index]
~~~~
**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.
**Example:**
~~~~{.php}
# rotate the view up
u
~~~~
@subsubsection occt_draw_4_1_7 focal, fu, fd
Syntax:
~~~~{.php}
focal [f]
fu [index]
fd [index]
~~~~
* **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.
* **fu** and **fd** increase or decrease the focal value by 10%. **fd** makes the eye closer to the object.
**Example:**
~~~~{.php}
pers
repeat 10 fd
~~~~
**Note**: Do not use a negative or null focal value.
See also: **pers**
@subsubsection occt_draw_4_1_8 color
Syntax:
~~~~{.php}
color index name
~~~~
**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.
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.
**Example:**
~~~~{.php}
# change the value of blue
color 3 "navy blue"
~~~~
**Note** that the color change will be visible on the next redraw of the views, for example, after *fit* or *mu*, etc.
@subsubsection occt_draw_4_1_9 dtext
Syntax:
~~~~{.php}
dtext [x y [z]] string
~~~~
**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.
The coordinates are real space coordinates.
**Example:**
~~~~{.php}
# mark the origins
dtext 0 0 bebop
dtext 0 0 0 bebop
~~~~
@subsubsection occt_draw_4_1_10 hardcopy, hcolor, xwd
Syntax:
~~~~{.php}
hardcopy [index]
hcolor index width gray
xwd [index] filename
~~~~
* **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.
* **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.
* **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**.
**Example:**
~~~~{.php}
# all blue lines (color 3)
# will be half-width and gray
hcolor 3 0.5
# make a postscript file and print it
hardcopy
lpr a4.ps
# make an xwd file and display it
xwd theview
xwud -in theview
~~~~
**Note:** When more than one view is present, specify the index of the view.
Only use a postscript printer to print postscript files.
See also: **color**
@subsubsection occt_draw_4_1_11 wclick, pick
Syntax:
~~~~{.php}
wclick
pick index X Y Z b [nowait]
~~~~
**wclick** defers an event until the mouse button is clicked. The message just click is displayed.
Use the **pick** command to get graphic input. The arguments must be names for variables where the results are stored.
* index: index of the view where the input was made.
* X,Y,Z: 3d coordinates in real world.
* b: b is the mouse button 1,2 or 3.
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.
This option is useful for tracking the pointer.
**Note** that the results are stored in Draw numeric variables.
**Example:**
~~~~{.php}
# make a circle at mouse location
pick index x y z b
circle c x y z 0 0 1 1 0 0 0 30
# make a dynamic circle at mouse location
# stop when a button is clicked
# (see the repaint command)
dset b 0
while {[dval b] == 0} {
pick index x y z b nowait
circle c x y z 0 0 1 1 0 0 0 30
repaint
}
~~~~
See also: **repaint**
Draw provides commands to manage the display of objects.
* **display**, **donly** are used to display,
* **erase**, **clear**, **2dclear** to erase.
* **autodisplay** command is used to check whether variables are displayed when created.
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.
* 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.
* 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.
* If you do not see what you expected while executing loops or sourcing files, use the **repaint** and **dflush** commands.
**Example:**
~~~~{.php}
# OK use dot to dump an object on the screen
dump .
point . x y z
#Not OK. display points on a curve c
# with dot no variables are created
for {set i 0} {$i <= 10} {incr i} {
cvalue c $i/10 x y z
point . x y z
}
# point p x y z
# would have displayed only one point
# because the precedent variable content is erased
# point p$i x y z
# is an other solution, creating variables
# p0, p1, p2, ....
# give a name to a graphic object
renamevar . x
~~~~
@subsubsection occt_draw_4_1_12 autodisplay
Syntax:
~~~~{.php}
autodisplay [0/1]
~~~~
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.
When **autodisplay** is off, using the dot return argument is ineffective.
**Example:**
~~~~{.php}
# c is displayed
circle c 0 0 1 0 5
# toggle the mode
autodisplay
== 0
circle c 0 0 1 0 5
# c is erased, but not displayed
display c
~~~~
@subsubsection occt_draw_4_1_13 display, donly
Syntax:
~~~~{.php}
display varname [varname ...]
donly varname [varname ...]
~~~~
* **display** makes objects visible.
* **donly** *display only* makes objects visible and erases all other objects. It is very useful to extract one object from a messy screen.
**Example:**
~~~~{.php}
\# to see all objects
foreach var [directory] {display $var}
\# to select two objects and erase the other ones
donly . .
~~~~
@subsubsection occt_draw_4_1_14 erase, clear, 2dclear
Syntax:
~~~~{.php}
erase [varname varname ...]
clear
2dclear
~~~~
**erase** removes objects from all views. **erase** without arguments erases everything in 2d and 3d.
**clear** erases only 3d objects and **2dclear** only 2d objects. **erase** without arguments is similar to **clear; 2dclear**.
**Example:**
~~~~{.php}
# erase eveerything with a name starting with c_
foreach var [directory c_*] {erase $var}
# clear 2d views
2dclear
~~~~
@subsubsection occt_draw_4_1_14_1 disp, don, era
These commands have the same meaning as correspondingly display, donly and erase, but with the difference that they evaluate the arguments using glob pattern rules.
For example, to display all objects with names d_1, d_2, d_3, etc. it is enough to run the command:
~~~~{.php}
disp d_*
~~~~
@subsubsection occt_draw_4_1_15 repaint, dflush
Syntax:
~~~~{.php}
repaint
dflush
~~~~
* **repaint** forces repainting of views.
* **dflush** flushes the graphic buffers.
These commands are useful within loops or in scripts.
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.
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.
See also: @ref occt_draw_4_1_11 "pick" command.
@subsection occt_draw_4_2 AIS viewer -- view commands
@subsubsection occt_draw_4_2_1 vinit
Syntax:
~~~~{.php}
vinit
~~~~
Creates a new View window with the specified *view_name*.
By default the view is created in the viewer and in the graphic driver shared with the active view.
~~~~{.php}
name = {driverName/viewerName/viewName | viewerName/viewName | viewName}
~~~~
If *driverName* is not specified the driver will be shared with the active view.
If *viewerName* is not specified the viewer will be shared with the active view.
@subsubsection occt_draw_4_2_2 vhelp
Syntax:
~~~~{.php}
vhelp
~~~~
Displays help in the 3D viewer window. The help consists in a list of hotkeys and their functionalities.
@subsubsection occt_draw_4_2_3 vtop
Syntax:
~~~~{.php}
vtop
~~~~
Displays top view in the 3D viewer window. Orientation +X+Y.
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vfit
vtop
~~~~
@subsubsection occt_draw_4_2_4 vaxo
Syntax:
~~~~{.php}
vaxo
~~~~
Displays axonometric view in the 3D viewer window. Orientation +X-Y+Z.
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vfit
vaxo
~~~~
@subsubsection occt_draw_4_2_5 vsetbg
Syntax:
~~~~{.php}
vsetbg imagefile [filltype]
~~~~
Loads image file as background. *filltype* must be NONE, CENTERED, TILED or STRETCH.
**Example:**
~~~~{.php}
vinit
vsetbg myimage.brep CENTERED
~~~~
@subsubsection occt_draw_4_2_6 vclear
Syntax:
~~~~{.php}
vclear
~~~~
Removes all objects from the viewer.
@subsubsection occt_draw_4_2_7 vrepaint
Syntax:
~~~~{.php}
vrepaint
~~~~
Forcibly redisplays the shape in the 3D viewer window.
@subsubsection occt_draw_4_2_8 vfit
Syntax:
~~~~{.php}
vfit
~~~~
Automatic zoom/panning. Objects in the view are visualized to occupy the maximum surface.
@subsubsection occt_draw_4_2_9 vzfit
Syntax:
~~~~{.php}
vzfit
~~~~
Automatic depth panning. Objects in the view are visualized to occupy the maximum 3d space.
@subsubsection occt_draw_4_2_10 vreadpixel
Syntax:
~~~~{.php}
vreadpixel xPixel yPixel [{rgb|rgba|depth|hls|rgbf|rgbaf}=rgba] [name]
~~~~
Read pixel value for active view.
@subsubsection occt_draw_4_2_11 vselect
Syntax:
~~~~{.php}
vselect x1 y1 [x2 y2 [x3 y3 ... xn yn]] [-allowoverlap 0|1] [shift_selection = 0|1]
~~~~
Emulates different types of selection:
* single mouse click selection
* selection with a rectangle having the upper left and bottom right corners in (x1,y1) and (x2,y2) respectively
* selection with a polygon having the corners in pixel positions (x1,y1), (x2,y2),…, (xn,yn)
* -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.
* any of these selections if shift_selection is set to 1.
@subsubsection occt_draw_4_2_12 vmoveto
Syntax:
~~~~{.php}
vmoveto x y
~~~~
Emulates cursor movement to pixel position (x,y).
@subsubsection occt_draw_4_2_13 vviewparams
Syntax:
~~~~{.php}
vviewparams [-scale [s]] [-eye [x y z]] [-at [x y z]] [-up [x y z]] [-proj [x y z]] [-center x y] [-size sx]
~~~~
Gets or sets the current view parameters.
* If called without arguments, all view parameters are printed.
* The options are:
* -scale [s] : prints or sets the relative scale of viewport.
* -eye [x y z] : prints or sets the eye location.
* -at [x y z] : prints or sets the view center.
* -up [x y z] : prints or sets the up vector direction.
* -proj [x y z] : prints or sets the view direction.
* -center x y : sets the screen center location in pixels.
* -size [sx] : prints viewport projection width and height sizes or changes the size of its maximum dimension.
@subsubsection occt_draw_4_2_14 vchangeselected
Syntax:
~~~~{.php}
vchangeselected shape
~~~~
Adds a shape to selection or removes one from it.
@subsubsection occt_draw_4_2_16 vnbselected
Syntax:
~~~~{.php}
vnbselected
~~~~
Returns the number of selected objects in the interactive context.
@subsubsection occt_draw_4_2_19 vhlr
Syntax:
~~~~{.php}
vhlr is_enabled={on|off} [show_hidden={1|0}]
~~~~
Hidden line removal algorithm:
* is_enabled applies HLR algorithm.
* show_hidden if equals to 1, hidden lines are drawn as dotted ones.
@subsubsection occt_draw_4_2_20 vhlrtype
Syntax:
~~~~{.php}
vhlrtype algo_type={algo|polyalgo} [shape_1 ... shape_n]
~~~~
Changes the type of HLR algorithm used for shapes.
If the algo_type is algo, the exact HLR algorithm is used, otherwise the polygonal algorithm is used for defined shapes.
If no shape is specified through the command arguments, the given HLR algorithm_type is applied to all *AIS_Shape* instances in the current context, and the command also changes the default HLR algorithm type.
**Note** that this command works with instances of *AIS_Shape* or derived classes only, other interactive object types are ignored.
@subsubsection occt_draw_4_2_21 vcamera
Syntax:
~~~~{.php}
vcamera [-ortho] [-projtype]
[-persp]
[-fovy [Angle]] [-distance [Distance]]
[-stereo] [-leftEye] [-rightEye]
[-iod [Distance]] [-iodType [absolute|relative]]
[-zfocus [Value]] [-zfocusType [absolute|relative]]
~~~~
Manages camera parameters.
Prints the current value when the option is called without argument.
Orthographic camera:
* -ortho -- activates orthographic projection.
Perspective camera:
* -persp -- activated perspective projection (mono);
* -fovy -- field of view in y axis, in degrees;
* -distance -- distance of eye from the camera center.
Stereoscopic camera:
* -stereo -- perspective projection (stereo);
* -leftEye -- perspective projection (left eye);
* -rightEye -- perspective projection (right eye);
* -iod -- intraocular distance value;
* -iodType -- distance type, absolute or relative;
* -zfocus -- stereographic focus value;
* -zfocusType -- focus type, absolute or relative.
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vfit
vcamera -persp
~~~~
@subsubsection occt_draw_4_2_22 vstereo
Syntax:
~~~~{.php}
vstereo [0|1] [-mode Mode] [-reverse {0|1}] [-anaglyph Filter]
~~~~
Defines the stereo output mode. The following modes are available:
* quadBuffer -- OpenGL QuadBuffer stereo, requires driver support. Should be called BEFORE *vinit*!
* anaglyph -- Anaglyph glasses;
* rowInterlaced -- row-interlaced display;
* columnInterlaced -- column-interlaced display;
* chessBoard -- chess-board output;
* sideBySide -- horizontal pair;
* overUnder -- vertical pair;
Available Anaglyph filters for -anaglyph:
* redCyan, redCyanSimple, yellowBlue, yellowBlueSimple, greenMagentaSimple.
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vstereo 1
vfit
vcamera -stereo -iod 1
vcamera -lefteye
vcamera -righteye
~~~~
@subsubsection occt_draw_4_2_23 vfrustumculling
Syntax:
~~~~{.php}
vfrustumculling [toEnable]
~~~~
Enables/disables objects clipping.
@subsection occt_draw_4_3 AIS viewer -- display commands
@subsubsection occt_draw_4_3_1 vdisplay
Syntax:
~~~~{.php}
vdisplay [-noupdate|-update] [-local] [-mutable] [-neutral]
[-trsfPers {pan|zoom|rotate|trihedron|full|none}=none] [-trsfPersPos X Y [Z]] [-3d|-2d|-2dTopDown]
[-dispMode mode] [-highMode mode]
[-layer index] [-top|-topmost|-overlay|-underlay]
[-redisplay]
name1 [name2] ... [name n]
~~~~
Displays named objects.
Option -local enables display of objects in the local selection context.
Local selection context will be opened if there is not any.
* *noupdate* suppresses viewer redraw call.
* *mutable* enables optimization for mutable objects.
* *neutral* draws objects in the main viewer.
* *layer* sets z-layer for objects. It can use -overlay|-underlay|-top|-topmost instead of -layer index for the default z-layers.
* *top* draws objects on top of main presentations but below the topmost level.
* *topmost* draws in overlay for 3D presentations with independent Depth.
* *overlay* draws objects in overlay for 2D presentations (On-Screen-Display).
* *underlay* draws objects in underlay for 2D presentations (On-Screen-Display).
* *selectable|-noselect* controls selection of objects.
* *trsfPers* sets transform persistence flags. Flag *full* allows to pan, zoom and rotate.
* *trsfPersPos* sets an anchor point for transform persistence.
* *2d|-2dTopDown* displays object in screen coordinates.
* *dispmode* sets display mode for objects.
* *highmode* sets highlight mode for objects.
* *redisplay* recomputes presentation of objects.
**Example:**
~~~~{.php}
vinit
box b 40 40 40 10 10 10
psphere s 20
vdisplay s b
vfit
~~~~
@subsubsection occt_draw_4_3_2 vdonly
Syntax:
~~~~{.php}
vdonly [-noupdate|-update] [name1] ... [name n]
~~~~
Displays only selected or named objects. If there are no selected or named objects, nothing is done.
**Example:**
~~~~{.php}
vinit
box b 40 40 40 10 10 10
psphere s 20
vdonly b
vfit
~~~~
@subsubsection occt_draw_4_3_3 vdisplayall
Syntax:
~~~~{.php}
vdisplayall [-local]
~~~~
Displays all erased interactive objects (see vdir and vstate).
Option -local enables displaying objects in the local selection context.
**Example:**
~~~~{.php}
vinit
box b 40 40 40 10 10 10
psphere s 20
vdisplayall
vfit
~~~~
@subsubsection occt_draw_4_3_4 verase
Syntax:
~~~~{.php}
verase [name1] [name2] … [name n]
~~~~
Erases some selected or named objects. If there are no selected or named objects, the whole viewer is erased.
**Example:**
~~~~{.php}
vinit
box b1 40 40 40 10 10 10
box b2 -40 -40 -40 10 10 10
psphere s 20
vdisplayall
vfit
# erase only first box
verase b1
# erase second box and sphere
verase
~~~~
@subsubsection occt_draw_4_3_5 veraseall
Syntax:
~~~~{.php}
veraseall
~~~~
Erases all objects displayed in the viewer.
**Example:**
~~~~{.php}
vinit
box b1 40 40 40 10 10 10
box b2 -40 -40 -40 10 10 10
psphere s 20
vdisplayall
vfit
# erase only first box
verase b1
# erase second box and sphere
verseall
~~~~
@subsubsection occt_draw_4_3_6 vsetdispmode
Syntax:
~~~~{.php}
vsetdispmode [name] mode(0,1,2,3)
~~~~
Sets display mode for all, selected or named objects.
* *0* (*WireFrame*),
* *1* (*Shading*),
* *2* (*Quick HideLineremoval*),
* *3* (*Exact HideLineremoval*).
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vsetdispmode 1
vfit
~~~~
@subsubsection occt_draw_4_3_7 vdisplaytype
Syntax:
~~~~{.php}
vdisplaytype type
~~~~
Displays all objects of a given type.
The following types are possible: *Point*, *Axis*, *Trihedron*, *PlaneTrihedron*, *Line*, *Circle*, *Plane*, *Shape*, *ConnectedShape*, *MultiConn.Shape*, *ConnectedInter.*, *MultiConn.*, *Constraint* and *Dimension*.
@subsubsection occt_draw_4_3_8 verasetype
Syntax:
~~~~{.php}
verasetype type
~~~~
Erases all objects of a given type.
Possible type is *Point*, *Axis*, *Trihedron*, *PlaneTrihedron*, *Line*, *Circle*, *Plane*, *Shape*, *ConnectedShape*, *MultiConn.Shape*, *ConnectedInter.*, *MultiConn.*, *Constraint* and *Dimension*.
@subsubsection occt_draw_4_3_9 vtypes
Syntax:
~~~~{.php}
vtypes
~~~~
Makes a list of known types and signatures in AIS.
@subsubsection occt_draw_4_3_10 vaspects
Syntax:
~~~~{.php}
vaspects [-noupdate|-update] [name1 [name2 [...]] | -defaults]
[-setVisibility 0|1]
[-setColor ColorName] [-setcolor R G B] [-unsetColor]
[-setMaterial MatName] [-unsetMaterial]
[-setTransparency Transp] [-unsetTransparency]
[-setWidth LineWidth] [-unsetWidth]
[-setLineType {solid|dash|dot|dotDash}] [-unsetLineType]
[-freeBoundary {off/on | 0/1}]
[-setFreeBoundaryWidth Width] [-unsetFreeBoundaryWidth]
[-setFreeBoundaryColor {ColorName | R G B}] [-unsetFreeBoundaryColor]
[-subshapes subname1 [subname2 [...]]]
[-isoontriangulation 0|1]
[-setMaxParamValue {value}]
~~~~
Manages presentation properties of all, selected or named objects.
* *-subshapes* -- assigns presentation properties to the specified sub-shapes.
* *-defaults* -- assigns presentation properties to all objects that do not have their own specified properties and to all objects to be displayed in the future.
If *-defaults* option is used there should not be any names of objects and *-subshapes* specifier.
Aliases:
~~~~{.php}
vsetcolor [-noupdate|-update] [name] ColorName
~~~~
Manages presentation properties (color, material, transparency) of all objects, selected or named.
**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*.
~~~~{.php}
vaspects [name] [-setcolor ColorName] [-setcolor R G B] [-unsetcolor]
vsetcolor [name] ColorName
vunsetcolor [name]
~~~~
**Transparency. The *Transp* may be between 0.0 (opaque) and 1.0 (fully transparent).
**Warning**: at 1.0 the shape becomes invisible.
~~~~{.php}
vaspects [name] [-settransparency Transp] [-unsettransparency]
vsettransparency [name] Transp
vunsettransparency [name]
~~~~
**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*.
~~~~{.php}
vaspects [name] [-setmaterial MatName] [-unsetmaterial]
vsetmaterial [name] MatName
vunsetmaterial [name]
~~~~
**Line width**. Specifies width of the edges. The *LineWidth* may be between 0.0 and 10.0.
~~~~{.php}
vaspects [name] [-setwidth LineWidth] [-unsetwidth]
vsetwidth [name] LineWidth
vunsetwidth [name]
~~~~
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vfit
vsetdispmode b 1
vaspects -setcolor red -settransparency 0.2
vrotate 10 10 10
~~~~
@subsubsection occt_draw_4_3_11 vsetshading
Syntax:
~~~~{.php}
vsetshading shapename [coefficient]
~~~~
Sets deflection coefficient that defines the quality of the shape’s representation in the shading mode. Default coefficient is 0.0008.
**Example:**
~~~~{.php}
vinit
psphere s 20
vdisplay s
vfit
vsetdispmode 1
vsetshading s 0.005
~~~~
@subsubsection occt_draw_4_3_12 vunsetshading
Syntax:
~~~~{.php}
vunsetshading [shapename]
~~~~
Sets default deflection coefficient (0.0008) that defines the quality of the shape’s representation in the shading mode.
@subsubsection occt_draw_4_3_13 vsetam
Syntax:
~~~~{.php}
vsetam [shapename] mode
~~~~
Activates selection mode for all selected or named shapes:
* *0* for *shape* itself,
* *1* (*vertices*),
* *2* (*edges*),
* *3* (*wires*),
* *4* (*faces*),
* *5* (*shells*),
* *6* (*solids*),
* *7* (*compounds*).
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vfit
vsetam b 2
~~~~
@subsubsection occt_draw_4_3_14 vunsetam
Syntax:
~~~~{.php}
vunsetam
~~~~
Deactivates all selection modes for all shapes.
@subsubsection occt_draw_4_3_15 vdump
Syntax:
~~~~{.php}
vdump .{png|bmp|jpg|gif} [-width Width -height Height]
[-buffer rgb|rgba|depth=rgb]
[-stereo mono|left|right|blend|sideBySide|overUnder=mono]
~~~~
Extracts the contents of the viewer window to a image file.
@subsubsection occt_draw_4_3_16 vdir
Syntax:
~~~~{.php}
vdir
~~~~
Displays the list of displayed objects.
@subsubsection occt_draw_4_3_17 vsub
Syntax:
~~~~{.php}
vsub 0/1(on/off)[shapename]
~~~~
Hilights/unhilights named or selected objects which are displayed at neutral state with subintensity color.
**Example:**
~~~~{.php}
vinit
box b 10 10 10
psphere s 20
vdisplay b s
vfit
vsetdispmode 1
vsub b 1
~~~~
@subsubsection occt_draw_4_3_20 vsensdis
Syntax:
~~~~{.php}
vsensdis
~~~~
Displays active entities (sensitive entities of one of the standard types corresponding to active selection modes).
Standard entity types are those defined in Select3D package:
* sensitive box
* sensitive face
* sensitive curve
* sensitive segment
* sensitive circle
* sensitive point
* sensitive triangulation
* sensitive triangle
Custom (application-defined) sensitive entity types are not processed by this command.
@subsubsection occt_draw_4_3_21 vsensera
Syntax:
~~~~{.php}
vsensera
~~~~
Erases active entities.
@subsubsection occt_draw_4_3_23 vr
Syntax:
~~~~{.php}
vr filename
~~~~
Reads shape from BREP-format file and displays it in the viewer.
**Example:**
~~~~{.php}
vinit
vr myshape.brep
~~~~
@subsubsection occt_draw_4_3_24 vstate
Syntax:
~~~~{.php}
vstate [-entities] [-hasSelected] [name1] ... [nameN]
~~~~
Reports show/hidden state for selected or named objects:
* *entities* -- prints low-level information about detected entities;
* *hasSelected* -- prints 1 if the context has a selected shape and 0 otherwise.
@subsubsection occt_draw_4_3_25 vraytrace
Syntax:
~~~~{.php}
vraytrace [0/1]
~~~~
Turns on/off ray tracing renderer.
@subsubsection occt_draw_4_3_26 vrenderparams
Syntax:
~~~~{.php}
vrenderparams [-rayTrace|-raster] [-rayDepth 0..10] [-shadows {on|off}]
[-reflections {on|off}] [-fsaa {on|off}] [-gleam {on|off}]
[-gi {on|off}] [-brng {on|off}] [-env {on|off}]
[-shadin {color|flat|gouraud|phong}]
~~~~
Manages rendering parameters:
* rayTrace -- Enables GPU ray-tracing
* raster -- Disables GPU ray-tracing
* rayDepth -- Defines maximum ray-tracing depth
* shadows -- Enables/disables shadows rendering
* reflections -- Enables/disables specular reflections
* fsaa -- Enables/disables adaptive anti-aliasing
* gleam -- Enables/disables transparency shadow effects
* gi -- Enables/disables global illumination effects
* brng -- Enables/disables blocked RNG (fast coherent PT)
* env -- Enables/disables environment map background
* shadingModel -- Controls shading model from enumeration color, flat, gouraud, phong
Unlike *vcaps*, these parameters dramatically change visual properties.
The command is intended to control presentation quality depending on hardware capabilities and performance.
**Example:**
~~~~{.php}
vinit
box b 10 10 10
vdisplay b
vfit
vraytrace 1
vrenderparams -shadows 1 -reflections 1 -fsaa 1
~~~~
@subsubsection occt_draw_4_3_27 vshaderprog
Syntax:
~~~~{.php}
'vshaderprog [name] pathToVertexShader pathToFragmentShader'
or 'vshaderprog [name] off' to disable GLSL program
or 'vshaderprog [name] phong' to enable per-pixel lighting calculations
~~~~
Enables rendering using a shader program.
@subsubsection occt_draw_4_3_28 vsetcolorbg
Syntax:
~~~~{.php}
vsetcolorbg r g b
~~~~
Sets background color.
**Example:**
~~~~{.php}
vinit
vsetcolorbg 200 0 200
~~~~
@subsection occt_draw_4_4 AIS viewer -- object commands
@subsubsection occt_draw_4_4_1 vtrihedron
Syntax:
~~~~{.php}
vtrihedron name [-dispMode {wf|sh|wireframe|shading}]
[-origin x y z ]
[-zaxis u v w -xaxis u v w ]
[-drawaxes {X|Y|Z|XY|YZ|XZ|XYZ}]
[-hidelabels {on|off}]"
[-label {XAxis|YAxis|ZAxis} value]"
[-attribute {XAxisLength|YAxisLength|ZAxisLength
|TubeRadiusPercent|ConeRadiusPercent"
|ConeLengthPercent|OriginRadiusPercent"
|ShadingNumberOfFacettes} value]"
[-color {Origin|XAxis|YAxis|ZAxis|XOYAxis|YOZAxis"
|XOZAxis|Whole} {r g b | colorName}]"
[-textcolor {r g b | colorName}]"
[-arrowscolor {r g b | colorName}]"
[-priority {Origin|XAxis|YAxis|ZAxis|XArrow"
|YArrow|ZArrow|XOYAxis|YOZAxis"
|XOZAxis|Whole} value]
~~~~
Creates a new *AIS_Trihedron* object or changes existing trihedron. If no argument is set, the default trihedron (0XYZ) is created.
**Example:**
~~~~{.php}
vinit
vtrihedron tr1
vtrihedron t2 -dispmode shading -origin -200 -200 -300
vtrihedron t2 -color XAxis Quantity_NOC_RED
vtrihedron t2 -color YAxis Quantity_NOC_GREEN
vtrihedron t2 -color ZAxis|Origin Quantity_NOC_BLUE1
~~~~
@subsubsection occt_draw_4_4_2 vplanetri
Syntax:
~~~~{.php}
vplanetri name
~~~~
Creates a plane from a trihedron selection. If no arguments are set, the default plane is created.
@subsubsection occt_draw_4_4_3 vsize
Syntax:
~~~~{.php}
vsize [name] [size]
~~~~
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.
**Example:**
~~~~{.php}
vinit
vtrihedron tr1
vtrihedron tr2 0 0 0 1 0 0 1 0 0
vsize tr2 400
~~~~
@subsubsection occt_draw_4_4_4 vaxis
Syntax:
~~~~{.php}
vaxis name [Xa Ya Za Xb Yb Zb]
~~~~
Creates an axis. If the values are not defined, an axis is created by interactive selection of two vertices or one edge
**Example:**
~~~~{.php}
vinit
vtrihedron tr
vaxis axe1 0 0 0 1 0 0
~~~~
@subsubsection occt_draw_4_4_5 vaxispara
Syntax:
~~~~{.php}
vaxispara name
~~~~
Creates an axis by interactive selection of an edge and a vertex.
@subsubsection occt_draw_4_4_6 vaxisortho
Syntax:
~~~~{.php}
vaxisotrho name
~~~~
Creates an axis by interactive selection of an edge and a vertex. The axis will be orthogonal to the selected edge.
@subsubsection occt_draw_4_4_7 vpoint
Syntax:
~~~~{.php}
vpoint name [Xa Ya Za]
~~~~
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).
**Example:**
~~~~{.php}
vinit
vpoint p 0 0 0
~~~~
@subsubsection occt_draw_4_4_8 vplane
Syntax:
~~~~{.php}
vplane name [AxisName] [PointName]
vplane name [PointName] [PointName] [PointName]
vplane name [PlaneName] [PointName]
~~~~
Creates a plane from named or interactively selected entities.
TypeOfSensitivity:
* 0 -- Interior
* 1 -- Boundary
**Example:**
~~~~{.php}
vinit
vpoint p1 0 50 0
vaxis axe1 0 0 0 0 0 1
vtrihedron tr
vplane plane1 axe1 p1
~~~~
@subsubsection occt_draw_4_4_9 vplanepara
Syntax:
~~~~{.php}
vplanepara name
~~~~
Creates a plane from interactively selected vertex and face.
@subsubsection occt_draw_4_4_10 vplaneortho
Syntax:
~~~~{.php}
vplaneortho name
~~~~
Creates a plane from interactive selected face and coplanar edge.
@subsubsection occt_draw_4_4_11 vline
Syntax:
~~~~{.php}
vline name [PointName] [PointName]
vline name [Xa Ya Za Xb Yb Zb]
~~~~
Creates a line from coordinates, named or interactively selected vertices.
**Example:**
~~~~{.php}
vinit
vtrihedron tr
vpoint p1 0 50 0
vpoint p2 50 0 0
vline line1 p1 p2
vline line2 0 0 0 50 0 1
~~~~
@subsubsection occt_draw_4_4_12 vcircle
Syntax:
~~~~{.php}
vcircle name [PointName PointName PointName IsFilled]
vcircle name [PlaneName PointName Radius IsFilled]
~~~~
Creates a circle from named or interactively selected entities. Parameter IsFilled is defined as 0 or 1.
**Example:**
~~~~{.php}
vinit
vtrihedron tr
vpoint p1 0 50 0
vpoint p2 50 0 0
vpoint p3 0 0 0
vcircle circle1 p1 p2 p3 1
~~~~
@subsubsection occt_draw_4_4_13 vtri2d
Syntax:
~~~~{.php}
vtri2d name
~~~~
Creates a plane with a 2D trihedron from an interactively selected face.
@subsubsection occt_draw_4_4_14 vselmode
Syntax:
~~~~{.php}
vselmode [object] mode_number is_turned_on=(1|0)
~~~~
Sets the selection mode for an object. If the object value is not defined, the selection mode is set for all displayed objects.
*Mode_number* is a non-negative integer encoding different interactive object classes.
For shapes the following *mode_number* values are allowed:
* 0 -- shape
* 1 -- vertex
* 2 -- edge
* 3 -- wire
* 4 -- face
* 5 -- shell
* 6 -- solid
* 7 -- compsolid
* 8 -- compound
*is_turned_on* is:
* 1 if mode is to be switched on
* 0 if mode is to be switched off
**Example:**
~~~~{.php}
vinit
vpoint p1 0 0 0
vpoint p2 50 0 0
vpoint p3 25 40 0
vtriangle triangle1 p1 p2 p3
~~~~
@subsubsection occt_draw_4_4_15 vconnect
Syntax:
~~~~{.php}
vconnect vconnect name Xo Yo Zo object1 object2 ... [color=NAME]
~~~~
Creates *AIS_ConnectedInteractive* object from the input object and location and displays it.
**Example:**
~~~~{.php}
vinit
vpoint p1 0 0 0
vpoint p2 50 0 0
vsegment segment p1 p2
restore CrankArm.brep obj
vdisplay obj
vconnect new obj 100100100 1 0 0 0 0 1
~~~~
@subsubsection occt_draw_4_4_16 vtriangle
Syntax:
~~~~{.php}
vtriangle name PointName PointName PointName
~~~~
Creates and displays a filled triangle from named points.
**Example:**
~~~~{.php}
vinit
vpoint p1 0 0 0
vpoint p2 50 0 0
vpoint p3 25 40 0
vtriangle triangle1 p1 p2 p3
~~~~
@subsubsection occt_draw_4_4_17 vsegment
Syntax:
~~~~{.php}
vsegment name PointName PointName
~~~~
Creates and displays a segment from named points.
**Example:**
~~~~{.php}
Vinit
vpoint p1 0 0 0
vpoint p2 50 0 0
vsegment segment p1 p2
~~~~
@subsubsection occt_draw_4_4_18 vpointcloud
Syntax:
~~~~{.php}
vpointcloud name shape [-randColor] [-normals] [-noNormals]
~~~~
Creates an interactive object for an arbitrary set of points from the triangulated shape.
Additional options:
* *randColor* -- generates a random color per point;
* *normals* -- generates a normal per point (default);
* *noNormals* -- does not generate a normal per point.
~~~~{.php}
vpointcloud name x y z r npts {surface|volume} [-randColor] [-normals] [-noNormals]
~~~~
Creates an arbitrary set of points (npts) randomly distributed on a spheric surface or within a spheric volume (x y z r).
Additional options:
* *randColor* -- generates a random color per point;
* *normals* -- generates a normal per point (default);
* *noNormals* -- does not generate a normal per point.
**Example:**
~~~~{.php}
vinit
vpointcloud pc 0 0 0 100 100000 surface -randColor
vfit
~~~~
@subsubsection occt_draw_4_4_19 vclipplane
Syntax:
~~~~{.php}
vclipplane maxplanes -- gets plane limit for the view.
vclipplane create -- creates a new plane.
vclipplane delete -- deletes a plane.
vclipplane clone -- clones the plane definition.
vclipplane set/unset object