From 44f6e8d5e8cdfc407fcbdde86ebb8a18e845c298 Mon Sep 17 00:00:00 2001 From: kgv Date: Sat, 27 Nov 2021 15:18:53 +0300 Subject: [PATCH] 0032694: Documentation, Draw Harness Guide - update ViewerTest commands Draw Harness Guide now refers to ViewerTest commands description via @snippet pointing to C++ source code instead of duplicating it. "help" command now tries to beautify output of command's description. --- adm/gendoc.tcl | 1 + dox/CMakeLists.txt | 1 + .../draw_test_harness/draw_test_harness.md | 1037 ++-------- src/DrawResources/StandardCommands.tcl | 27 +- src/ViewerTest/ViewerTest.cxx | 659 +++--- src/ViewerTest/ViewerTest_ObjectCommands.cxx | 697 +++---- src/ViewerTest/ViewerTest_OpenGlCommands.cxx | 99 +- .../ViewerTest_RelationCommands.cxx | 155 +- src/ViewerTest/ViewerTest_ViewerCommands.cxx | 1835 +++++++++-------- 9 files changed, 2010 insertions(+), 2501 deletions(-) diff --git a/adm/gendoc.tcl b/adm/gendoc.tcl index ef47455783..8f0bb692b5 100644 --- a/adm/gendoc.tcl +++ b/adm/gendoc.tcl @@ -835,6 +835,7 @@ proc OCCDoc_MakeDoxyfile {docType outDir tagFileDir {doxyFileName} {generatorMod puts $doxyFile "PROJECT_NUMBER = $occt_version" puts $doxyFile "OUTPUT_DIRECTORY = $outDir/." puts $doxyFile "PROJECT_LOGO = [OCCDoc_GetDoxDir]/resources/occ_logo.png" + puts $doxyFile "EXAMPLE_PATH = [OCCDoc_GetSourceDir $productsPath]" set PARAM_INPUT "INPUT =" set PARAM_IMAGEPATH "IMAGE_PATH = [OCCDoc_GetDoxDir]/resources/ " diff --git a/dox/CMakeLists.txt b/dox/CMakeLists.txt index 48a955241b..9af54a91e1 100644 --- a/dox/CMakeLists.txt +++ b/dox/CMakeLists.txt @@ -43,6 +43,7 @@ configure_file ("${OCCT_OVERVIEW_RESOURCE_DIR}/occt_ug_html.doxyfile" "${OCCT_CO file (APPEND ${OCCT_CONFIG_FOR_DOXYGEN} "\nPROJECT_NUMBER = ${OCC_VERSION_STRING_EXT}") file (APPEND ${OCCT_CONFIG_FOR_DOXYGEN} "\nOUTPUT_DIRECTORY = ${OCCT_GENERATED_OVERVIEW_DIR}/.") file (APPEND ${OCCT_CONFIG_FOR_DOXYGEN} "\nPROJECT_LOGO = ${OCCT_OVERVIEW_DIR}/resources/occ_logo.png") +file (APPEND ${OCCT_CONFIG_FOR_DOXYGEN} "\nEXAMPLE_PATH = ${CMAKE_SOURCE_DIR}/src") set (OCCT_ARTICLE_PARAM_INPUT "INPUT =") set (OCCT_ARTICLE_PARAM_IMAGEPATH "IMAGE_PATH = ${OCCT_OVERVIEW_DIR}/resources/ ") diff --git a/dox/user_guides/draw_test_harness/draw_test_harness.md b/dox/user_guides/draw_test_harness/draw_test_harness.md index 91a15e4952..99c79f8550 100644 --- a/dox/user_guides/draw_test_harness/draw_test_harness.md +++ b/dox/user_guides/draw_test_harness/draw_test_harness.md @@ -1302,232 +1302,110 @@ See also: @ref occt_draw_4_1_11 "pick" command. @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. +@snippet ViewerTest_ViewerCommands.cxx vinit @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. +@snippet ViewerTest_ViewerCommands.cxx vhelp @subsubsection occt_draw_4_2_3 vtop Syntax: -~~~~{.php} -vtop -~~~~ +@snippet ViewerTest_ViewerCommands.cxx vtop -Displays top view in the 3D viewer window. Orientation +X+Y. - -**Example:** +**Example:** ~~~~{.php} -vinit -box b 10 10 10 -vdisplay b -vfit -vtop +vinit +box b 10 10 10 +vdisplay b +vfit +vtop ~~~~ @subsubsection occt_draw_4_2_4 vaxo Syntax: +@snippet ViewerTest_ViewerCommands.cxx vaxo + +**Example:** ~~~~{.php} -vaxo +vinit +box b 10 10 10 +vdisplay b +vfit +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 +@subsubsection occt_draw_4_2_5 vbackground 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 -~~~~ +@snippet ViewerTest_ViewerCommands.cxx vbackground @subsubsection occt_draw_4_2_6 vclear Syntax: -~~~~{.php} -vclear -~~~~ -Removes all objects from the viewer. +@snippet ViewerTest_ViewerCommands.cxx vclear @subsubsection occt_draw_4_2_7 vrepaint Syntax: -~~~~{.php} -vrepaint -~~~~ -Forcibly redisplays the shape in the 3D viewer window. +@snippet ViewerTest_ViewerCommands.cxx vrepaint @subsubsection occt_draw_4_2_8 vfit Syntax: -~~~~{.php} -vfit -~~~~ -Automatic zoom/panning. Objects in the view are visualized to occupy the maximum surface. +@snippet ViewerTest_ViewerCommands.cxx vfit @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. +@snippet ViewerTest_ViewerCommands.cxx vzfit @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. - +@snippet ViewerTest_ViewerCommands.cxx vreadpixel @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. +@snippet ViewerTest_ViewerCommands.cxx vselect @subsubsection occt_draw_4_2_12 vmoveto Syntax: - -~~~~{.php} -vmoveto x y -~~~~ -Emulates cursor movement to pixel position (x,y). +@snippet ViewerTest_ViewerCommands.cxx vmoveto @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. +@snippet ViewerTest_ViewerCommands.cxx vviewparams @subsubsection occt_draw_4_2_14 vchangeselected Syntax: -~~~~{.php} -vchangeselected shape -~~~~ -Adds a shape to selection or removes one from it. +@snippet ViewerTest_ViewerCommands.cxx vchangeselected @subsubsection occt_draw_4_2_16 vnbselected Syntax: -~~~~{.php} -vnbselected -~~~~ -Returns the number of selected objects in the interactive context. +@snippet ViewerTest_ViewerCommands.cxx vnbselected @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. +@snippet ViewerTest_ViewerCommands.cxx vhlr @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. +@snippet ViewerTest_ViewerCommands.cxx vhlrtype @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. +@snippet ViewerTest_ViewerCommands.cxx vcamera **Example:** ~~~~{.php} @@ -1541,20 +1419,7 @@ 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. +@snippet ViewerTest_ViewerCommands.cxx vstereo **Example:** ~~~~{.php} @@ -1568,252 +1433,189 @@ 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: +@snippet ViewerTest.cxx vdisplay + +**Example:** ~~~~{.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 +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] -~~~~ +@snippet ViewerTest.cxx vdonly -Displays only selected or named objects. If there are no selected or named objects, nothing is done. - -**Example:** +**Example:** ~~~~{.php} -vinit -box b 40 40 40 10 10 10 -psphere s 20 -vdonly b +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] -~~~~ +@snippet ViewerTest.cxx vdisplayall -Displays all erased interactive objects (see vdir and vstate). -Option -local enables displaying objects in the local selection context. - -**Example:** +**Example:** ~~~~{.php} -vinit -box b 40 40 40 10 10 10 -psphere s 20 -vdisplayall -vfit +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] -~~~~ +@snippet ViewerTest.cxx verase -Erases some selected or named objects. If there are no selected or named objects, the whole viewer is erased. - -**Example:** +**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 +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. +@snippet ViewerTest.cxx veraseall **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 +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) -~~~~ +@snippet ViewerTest.cxx vsetdispmode -Sets display mode for all, selected or named objects. -* *0* (*WireFrame*), -* *1* (*Shading*), -* *2* (*Quick HideLineremoval*), -* *3* (*Exact HideLineremoval*). - -**Example:** +**Example:** ~~~~{.php} -vinit -box b 10 10 10 -vdisplay b -vsetdispmode 1 +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*. +@snippet ViewerTest.cxx vdisplaytype @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*. +@snippet ViewerTest.cxx verasetype @subsubsection occt_draw_4_3_9 vtypes Syntax: -~~~~{.php} -vtypes -~~~~ - -Makes a list of known types and signatures in AIS. +@snippet ViewerTest.cxx vtypes @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. +@snippet ViewerTest.cxx vaspects 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*. +**Color** name 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] +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). +**Transparency** 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 +vaspects [name] [-setTransparency Value] [-unsetTransparency] +vsettransparency [name] Value 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*. +**Material** name 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 +vaspects [name] [-setMaterial MaterialName] [-unsetMaterial] +vsetmaterial [name] MaterialName vunsetmaterial [name] ~~~~ -**Line width**. Specifies width of the edges. The *LineWidth* may be between 0.0 and 10.0. +**Line width** specifies width of the edges. The width value may be between 0.0 and 10.0. ~~~~{.php} -vaspects [name] [-setwidth LineWidth] [-unsetwidth] +vaspects [name] [-setWidth LineWidth] [-unsetWidth] vsetwidth [name] LineWidth vunsetwidth [name] ~~~~ @@ -1826,23 +1628,14 @@ vdisplay b vfit vsetdispmode b 1 -vaspects -setcolor red -settransparency 0.2 +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. +@snippet ViewerTest.cxx vsetshading **Example:** ~~~~{.php} @@ -1857,76 +1650,22 @@ 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. +@snippet ViewerTest.cxx vunsetshading @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. +@snippet ViewerTest.cxx vdump @subsubsection occt_draw_4_3_16 vdir Syntax: -~~~~{.php} -vdir -~~~~ - -Displays the list of displayed objects. +@snippet ViewerTest.cxx vdir @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. +@snippet ViewerTest.cxx vsub **Example:** ~~~~{.php} @@ -1942,77 +1681,27 @@ 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. +@snippet ViewerTest.cxx vsensdis @subsubsection occt_draw_4_3_21 vsensera Syntax: -~~~~{.php} -vsensera -~~~~ +@snippet ViewerTest.cxx vsensera -Erases active entities. - @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. +@snippet ViewerTest.cxx vstate @subsubsection occt_draw_4_3_25 vraytrace Syntax: -~~~~{.php} -vraytrace [0/1] -~~~~ - -Turns on/off ray tracing renderer. +@snippet ViewerTest_ViewerCommands.cxx vraytrace @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. +@snippet ViewerTest_ViewerCommands.cxx vrenderparams **Example:** ~~~~{.php} @@ -2023,59 +1712,17 @@ vfit vraytrace 1 vrenderparams -shadows 1 -reflections 1 -fsaa 1 ~~~~ -@subsubsection occt_draw_4_3_27 vshaderprog +@subsubsection occt_draw_4_3_27 vshader 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 -~~~~ +@snippet ViewerTest_OpenGlCommands.cxx vshader @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. +@snippet ViewerTest_ObjectCommands.cxx vtrihedron **Example:** ~~~~{.php} @@ -2091,21 +1738,12 @@ 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. - +@snippet ViewerTest_ObjectCommands.cxx vplanetri @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. +@snippet ViewerTest_ObjectCommands.cxx vsize **Example:** ~~~~{.php} @@ -2118,11 +1756,7 @@ 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 +@snippet ViewerTest_ObjectCommands.cxx vaxis **Example:** ~~~~{.php} @@ -2134,234 +1768,144 @@ 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. +@snippet ViewerTest_ObjectCommands.cxx vaxispara @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. +@snippet ViewerTest_ObjectCommands.cxx vaxisortho @subsubsection occt_draw_4_4_7 vpoint Syntax: -~~~~{.php} -vpoint name [Xa Ya Za] -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vpoint -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:** +**Example:** ~~~~{.php} -vinit -vpoint p 0 0 0 +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] -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vplane -Creates a plane from named or interactively selected entities. -TypeOfSensitivity: - * 0 -- Interior - * 1 -- Boundary - -**Example:** +**Example:** ~~~~{.php} -vinit -vpoint p1 0 50 0 -vaxis axe1 0 0 0 0 0 1 -vtrihedron tr -vplane plane1 axe1 p1 +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. +@snippet ViewerTest_ObjectCommands.cxx vplanepara @subsubsection occt_draw_4_4_10 vplaneortho Syntax: -~~~~{.php} -vplaneortho name -~~~~ - -Creates a plane from interactive selected face and coplanar edge. +@snippet ViewerTest_ObjectCommands.cxx vplaneortho @subsubsection occt_draw_4_4_11 vline Syntax: -~~~~{.php} -vline name [PointName] [PointName] -vline name [Xa Ya Za Xb Yb Zb] -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vline -Creates a line from coordinates, named or interactively selected vertices. - -**Example:** +**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 +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. +@snippet ViewerTest_ObjectCommands.cxx vcircle -**Example:** +**Example:** ~~~~{.php} -vinit -vtrihedron tr -vpoint p1 0 50 0 -vpoint p2 50 0 0 -vpoint p3 0 0 0 +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. +@snippet ViewerTest_ObjectCommands.cxx vtri2d @subsubsection occt_draw_4_4_14 vselmode Syntax: -~~~~{.php} -vselmode [object] mode_number is_turned_on=(1|0) -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vselmode -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:** +**Example:** ~~~~{.php} -vinit -vpoint p1 0 0 0 -vpoint p2 50 0 0 -vpoint p3 25 40 0 -vtriangle triangle1 p1 p2 p3 +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] -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vconnect -Creates *AIS_ConnectedInteractive* object from the input object and location and displays it. - -**Example:** +**Example:** ~~~~{.php} -vinit -vpoint p1 0 0 0 -vpoint p2 50 0 0 -vsegment segment p1 p2 -restore CrankArm.brep obj -vdisplay obj +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 -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vtriangle -Creates and displays a filled triangle from named points. - -**Example:** +**Example:** ~~~~{.php} -vinit -vpoint p1 0 0 0 -vpoint p2 50 0 0 -vpoint p3 25 40 0 +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 -~~~~ +@snippet ViewerTest_ObjectCommands.cxx vsegment -Creates and displays a segment from named points. - -**Example:** +**Example:** ~~~~{.php} -Vinit -vpoint p1 0 0 0 -vpoint p2 50 0 0 -vsegment segment p1 p2 +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. +@snippet ViewerTest_ObjectCommands.cxx vpointcloud **Example:** ~~~~{.php} @@ -2373,32 +1917,12 @@ 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 -- sets/unsets the plane for an IO. -vclipplane set/unset view -- sets/unsets plane for a view. -vclipplane change on/off -- turns clipping on/off. -vclipplane change equation -- changes plane equation. -vclipplane change capping on/off -- turns capping on/off. -vclipplane change capping color -- sets color. -vclipplane change capping texname -- sets texture. -vclipplane change capping texscale -- sets texture scale. -vclipplane change capping texorigin -- sets texture origin. -vclipplane change capping texrotate -- sets texture rotation. -vclipplane change capping hatch on/off/ -- sets hatching mask. -~~~~ - -Manages clipping planes +@snippet ViewerTest_ViewerCommands.cxx vclipplane **Example:** ~~~~{.php} vinit -vclipplane create pln1 -vclipplane change pln1 equation 1 0 0 -0.1 -vclipplane set pln1 view Driver1/Viewer1/View1 +vclipplane pln1 -equation 1 0 0 -0.1 -set Driver1/Viewer1/View1 box b 100 100 100 vdisplay b vsetdispmode 1 @@ -2410,23 +1934,11 @@ vselect 100 100 @subsubsection occt_draw_4_4_20 vdimension Syntax: -~~~~{.php} -vdimension name {-angle|-length|-radius|-diameter} -shapes shape1 [shape2 [shape3]] - [-text 3d|2d wf|sh|wireframe|shading IntegerSize] - [-label left|right|hcenter|hfit top|bottom|vcenter|vfit] - [-arrow external|internal|fit] [{-arrowlength|-arlen} RealArrowLength] - [{-arrowangle|-arangle} ArrowAngle(degrees)] [-plane xoy|yoz|zox] - [-flyout FloatValue -extension FloatValue] - [-autovalue] [-value CustomRealValue] [-textvalue CustomTextValue] - [-dispunits DisplayUnitsString] - [-modelunits ModelUnitsString] [-showunits | -hideunits] -~~~~ - -Builds angle, length, radius or diameter dimension interactive object **name**. +@snippet ViewerTest_RelationCommands.cxx vdimension **Attention:** length dimension can't be built without working plane. -**Example:** +**Example:** ~~~~{.php} vinit vpoint p1 0 0 0 @@ -2444,25 +1956,9 @@ vfit @subsubsection occt_draw_4_4_21 vdimparam Syntax: -~~~~{.php} -vdimparam name [-text 3d|2d wf|sh|wireframe|shading IntegerSize] - [-label left|right|hcenter|hfit top|bottom|vcenter|vfit] - [-arrow external|internal|fit] - [{-arrowlength|-arlen} RealArrowLength] - [{-arrowangle|-arangle} ArrowAngle(degrees)] - [-plane xoy|yoz|zox] - [-flyout FloatValue -extension FloatValue] - [-autovalue] - [-value CustomRealValue] - [-textvalue CustomTextValue] - [-dispunits DisplayUnitsString] - [-modelunits ModelUnitsString] - [-showunits | -hideunits] -~~~~ +@snippet ViewerTest_RelationCommands.cxx vdimparam -Sets parameters for angle, length, radius and diameter dimension **name**. - -**Example:** +**Example:** ~~~~{.php} vinit vpoint p1 0 0 0 @@ -2477,14 +1973,9 @@ vdimparam dim1 -autovalue @subsubsection occt_draw_4_4_22 vangleparam Syntax: -~~~~{.php} -vangleparam name [-type interior|exterior] - [-showarrow first|second|both|none] -~~~~ +@snippet ViewerTest_RelationCommands.cxx vangleparam -Sets parameters for angle dimension **name**. - -**Example:** +**Example:** ~~~~{.php} vinit vpoint p1 0 0 0 @@ -2498,14 +1989,9 @@ vangleparam dim1 -type exterior -showarrow first @subsubsection occt_draw_4_4_23 vlengthparam Syntax: -~~~~{.php} -vlengthparam name [-type interior|exterior] - [-showarrow first|second|both|none] -~~~~ +@snippet ViewerTest_RelationCommands.cxx vlengthparam -Sets parameters for length dimension **name**. - -**Example:** +**Example:** ~~~~{.php} vinit vpoint p1 20 20 0 @@ -2520,16 +2006,9 @@ vlengthparam dim1 -direction ox @subsubsection occt_draw_4_4_24 vmovedim Syntax: -~~~~{.php} -vmovedim [name] [x y z] -~~~~ +@snippet ViewerTest_RelationCommands.cxx vmovedim -Moves picked or named (if **name** parameter is defined) dimension -to picked mouse position or input point with coordinates **x**,**y**,**z**. -Text label of dimension **name** is moved to position, another parts of dimension -are adjusted. - -**Example:** +**Example:** ~~~~{.php} vinit vpoint p1 0 0 0 @@ -2538,6 +2017,14 @@ vdimension dim1 -length -plane xoy -shapes p1 p2 vmovedim dim1 -10 30 0 ~~~~ +@subsubsection occt_draw_4_4_25 vtexture + +Syntax: +@snippet ViewerTest.cxx vtexture + +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. @subsection occt_draw_4_5 AIS viewer -- Mesh Visualization Service @@ -8159,78 +7646,6 @@ if (BRepTest_Objects::IsHistoryNeeded()) The method *BRepTest_Objects::IsHistoryNeeded()* controls if the history is needed to be filled in the algorithm and saved into the session after the algorithm is done (*setfillhistory* command controls this option in DRAW). - -@subsection occt_draw_7_12 Texture Mapping to a Shape - -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. - -@subsubsection occt_draw_7_12_1 vtexture - -Syntax: -~~~~{.php} -vtexture NameOfShape TextureFile -vtexture NameOfShape -vtexture NameOfShape ? -vtexture NameOfShape IdOfTexture -~~~~ - -**TextureFile** identifies the file containing the texture you want. The same syntax without **TextureFile** disables texture mapping. The question-mark ? lists available textures. **IdOfTexture** allows applying predefined textures. - -@subsubsection occt_draw_7_12_2 vtexscale - -Syntax: -~~~~{.php} -vtexscale NameOfShape ScaleU ScaleV -vtexscale NameOfShape ScaleUV -vtexscale NameOfShape -~~~~ - -*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. - -The syntax without *ScaleU*, *ScaleV* or *ScaleUV* disables texture scaling. - -@subsubsection occt_draw_7_12_3 vtexorigin - -Syntax: -~~~~{.php} -vtexorigin NameOfShape UOrigin VOrigin -vtexorigin NameOfShape UVOrigin -vtexorigin NameOfShape -~~~~ - -*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. - -The syntax without *UOrigin*, *VOrigin* or *UVOrigin* disables origin positioning. - -@subsubsection occt_draw_7_12_4 vtexrepeat - -Syntax: -~~~~{.php} -vtexrepeat NameOfShape URepeat VRepeat -vtexrepeat NameOfShape UVRepeat -vtexrepeat NameOfShape -~~~~ - -*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. - -The same syntax without *URepeat*, *VRepeat* or *UVRepeat* disables texture repetition. - -@subsubsection occt_draw_7_12_5 vtexdefault - -Syntax: -~~~~{.php} -vtexdefault NameOfShape -~~~~ - -*Vtexdefault* sets or resets the texture mapping default parameters. - -The defaults are: - - * *URepeat = VRepeat = 1* no repetition - * *UOrigin = VOrigin = 1* origin set at (0,0) - * *UScale = VScale = 1* texture covers 100% of the face - - @section occt_draw_bop Boolean Operations Commands This chapter describes existing commands of Open CASCADE Draw Test Harness that are used for performing, analyzing, debugging the algorithm in Boolean Component. diff --git a/src/DrawResources/StandardCommands.tcl b/src/DrawResources/StandardCommands.tcl index bfeab27295..bbc98032d2 100644 --- a/src/DrawResources/StandardCommands.tcl +++ b/src/DrawResources/StandardCommands.tcl @@ -59,13 +59,28 @@ proc help {{theCommand ""} {theHelpString ""} {theGroup "Procedures"}} { } elseif {$theHelpString == ""} { # help function set isFound 0 - foreach f [lsort [array names Draw_Helps]] { - if {[string match $theCommand $f]} { - dputs -nonewline -intense $f - for {set j [string length $f]} {$j < 15} {incr j} { - puts -nonewline " " + foreach aCmdIter [lsort [array names Draw_Helps]] { + if {[string match $theCommand $aCmdIter]} { + dputs -nonewline -intense $aCmdIter + set aLines [split $Draw_Helps($aCmdIter) "\n"] + set aNbLines [llength $aLines] + set isFirstLine 0 + for {set aLineIter 0} {$aLineIter < $aNbLines} {incr aLineIter} { + set aLine [lindex $aLines $aLineIter] + if { "$aLine" == "" && ($aLineIter == 0 || $aLineIter == [expr $aNbLines - 1]) } { continue } + if { $isFirstLine == 0 } { + set isFirstLine 1 + for {set j [string length $aCmdIter]} {$j < 15} {incr j} { + puts -nonewline " " + } + puts -nonewline " : " + } else { + if { ![string match "\t\t:*" $aLine] } { + puts -nonewline " : " + } + } + puts -nonewline "${aLine}\n" } - puts " : $Draw_Helps($f)" set isFound 1 } } diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index acfb950601..533ffb7a4a 100644 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -6542,388 +6542,377 @@ void ViewerTest::Commands(Draw_Interpretor& theCommands) ViewerTest::FilletCommands(theCommands); ViewerTest::OpenGlCommands(theCommands); - const char *group = "AIS_Display"; + const char* aGroup = "AIS Viewer"; + const char* aFileName = __FILE__; + auto addCmd = [&](const char* theName, Draw_Interpretor::CommandFunction theFunc, const char* theHelp) + { + theCommands.Add (theName, theHelp, aFileName, theFunc, aGroup); + }; // display - theCommands.Add("visos", - "visos [name1 ...] [nbUIsos nbVIsos IsoOnPlane(0|1)]\n" - "\tIf last 3 optional parameters are not set prints numbers of U-, V- isolines and IsoOnPlane.\n", - __FILE__, visos, group); + addCmd ("visos", visos, /* [visos] */ R"( +visos [name1 ...] [nbUIsos nbVIsos IsoOnPlane(0|1)] +If last 3 optional parameters are not set prints numbers of U-, V- isolines and IsoOnPlane. +)" /* [visos] */); - theCommands.Add("vdisplay", - "vdisplay [-noupdate|-update] [-local] [-mutable] [-neutral]" - "\n\t\t: [-trsfPers {zoom|rotate|zoomRotate|none}=none]" - "\n\t\t: [-trsfPersPos X Y [Z]] [-3d]" - "\n\t\t: [-2d|-trihedron [{top|bottom|left|right|topLeft" - "\n\t\t: |topRight|bottomLeft|bottomRight}" - "\n\t\t: [offsetX offsetY]]]" - "\n\t\t: [-dispMode mode] [-highMode mode]" - "\n\t\t: [-layer index] [-top|-topmost|-overlay|-underlay]" - "\n\t\t: [-redisplay] [-erased]" - "\n\t\t: [-noecho] [-autoTriangulation {0|1}]" - "\n\t\t: name1 [name2] ... [name n]" - "\n\t\t: Displays named objects." - "\n\t\t: Option -local enables displaying of objects in local" - "\n\t\t: selection context. Local selection context will be opened" - "\n\t\t: if there is not any." - "\n\t\t: -noupdate Suppresses viewer redraw call." - "\n\t\t: -mutable Enables optimizations for mutable objects." - "\n\t\t: -neutral Draws objects in main viewer." - "\n\t\t: -erased Loads the object into context, but does not display it." - "\n\t\t: -layer Sets z-layer for objects." - "\n\t\t: Alternatively -overlay|-underlay|-top|-topmost" - "\n\t\t: options can be used for the default z-layers." - "\n\t\t: -top Draws object on top of main presentations" - "\n\t\t: but below topmost." - "\n\t\t: -topmost Draws in overlay for 3D presentations." - "\n\t\t: with independent Depth." - "\n\t\t: -overlay Draws objects in overlay for 2D presentations." - "\n\t\t: (On-Screen-Display)" - "\n\t\t: -underlay Draws objects in underlay for 2D presentations." - "\n\t\t: (On-Screen-Display)" - "\n\t\t: -selectable|-noselect Controls selection of objects." - "\n\t\t: -trsfPers Sets a transform persistence flags." - "\n\t\t: -trsfPersPos Sets an anchor point for transform persistence." - "\n\t\t: -2d Displays object in screen coordinates." - "\n\t\t: (DY looks up)" - "\n\t\t: -dispmode Sets display mode for objects." - "\n\t\t: -highmode Sets hilight mode for objects." - "\n\t\t: -redisplay Recomputes presentation of objects." - "\n\t\t: -noecho Avoid printing of command results." - "\n\t\t: -autoTriang Enable/disable auto-triangulation for displayed shape.", - __FILE__, VDisplay2, group); + addCmd ("vdisplay", VDisplay2, /* [vdisplay] */ R"( +vdisplay [-noupdate|-update] [-mutable] [-neutral] + [-trsfPers {zoom|rotate|zoomRotate|none}=none] + [-trsfPersPos X Y [Z]] [-3d] + [-2d|-trihedron [{top|bottom|left|right|topLeft + |topRight|bottomLeft|bottomRight} + [offsetX offsetY]]] + [-dispMode mode] [-highMode mode] + [-layer index] [-top|-topmost|-overlay|-underlay] + [-redisplay] [-erased] + [-noecho] [-autoTriangulation {0|1}] + name1 [name2] ... [name n] +Displays named objects. + -noupdate Suppresses viewer redraw call. + -mutable Enables optimizations for mutable objects. + -neutral Draws objects in main viewer. + -erased Loads the object into context, but does not display it. + -layer Sets z-layer for objects. + Alternatively -overlay|-underlay|-top|-topmost + options can be used for the default z-layers. + -top Draws object on top of main presentations + but below topmost. + -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 a transform persistence flags. + -trsfPersPos Sets an anchor point for transform persistence. + -2d Displays object in screen coordinates. + (DY looks up) + -dispmode Sets display mode for objects. + -highmode Sets hilight mode for objects. + -redisplay Recomputes presentation of objects. + -noecho Avoid printing of command results. + -autoTriang Enable/disable auto-triangulation for displayed shape. +)" /* [vdisplay] */); - theCommands.Add ("vnbdisplayed", - "vnbdisplayed" - "\n\t\t: Returns number of displayed objects", - __FILE__, VNbDisplayed, group); + addCmd ("vnbdisplayed", VNbDisplayed, /* [vnbdisplayed] */ R"( +vnbdisplayed : Returns number of displayed objects +)" /* [vnbdisplayed] */); - theCommands.Add ("vupdate", - "vupdate name1 [name2] ... [name n]" - "\n\t\t: Updates named objects in interactive context", - __FILE__, VUpdate, group); + addCmd ("vupdate", VUpdate, /* [vupdate] */ R"( +vupdate name1 [name2] ... [name n] +Updates named objects in interactive context +)" /* [vupdate] */); - theCommands.Add("verase", - "verase [-noupdate|-update] [-local] [name1] ... [name n] [-noerror]" - "\n\t\t: Erases selected or named objects." - "\n\t\t: If there are no selected or named objects the whole viewer is erased." - "\n\t\t: Option -local enables erasing of selected or named objects without" - "\n\t\t: closing local selection context." - "\n\t\t: Option -noerror prevents exception on non-existing objects.", - __FILE__, VErase, group); + addCmd ("verase", VErase, /* [verase] */ R"( +verase [-noupdate|-update] [name1] ... [name n] [-noerror] +Erases selected or named objects. +If there are no selected or named objects the whole viewer is erased. +Option -noerror prevents exception on non-existing objects. +)" /* [verase] */); - theCommands.Add("vremove", - "vremove [-noupdate|-update] [-context] [-all] [-noinfo] [name1] ... [name n] [-noerror]" - "or vremove [-context] -all to remove all objects" - "\n\t\t: Removes selected or named objects." - "\n\t\t If -context is in arguments, the objects are not deleted" - "\n\t\t from the map of objects and names." - "\n\t\t: Option -local enables removing of selected or named objects without" - "\n\t\t: closing local selection context. Empty local selection context will be" - "\n\t\t: closed." - "\n\t\t: Option -noupdate suppresses viewer redraw call." - "\n\t\t: Option -noinfo suppresses displaying the list of removed objects." - "\n\t\t: Option -noerror prevents exception on non-existing objects.", - __FILE__, VRemove, group); + addCmd ("vremove", VRemove, /* [vremove] */ R"( +vremove [-noupdate|-update] [-context] [-all] [-noinfo] [name1] ... [name n] [-noerror] +or vremove [-context] -all to remove all objects +Removes selected or named objects. + -context do not delete object from the map of objects and names; + -noupdate suppresses viewer redraw call; + -noinfo suppresses displaying the list of removed objects; + -noerror prevents exception on non-existing objects. +)" /* [vremove] */); - theCommands.Add("vdonly", - "vdonly [-noupdate|-update] [name1] ... [name n]" - "\n\t\t: Displays only selected or named objects", - __FILE__,VDonly2,group); + addCmd ("vdonly", VDonly2, /* [vdonly] */ R"( +vdonly [-noupdate|-update] [name1] ... [name n] +Displays only selected or named objects. +)" /* [vdonly] */); - theCommands.Add("vdisplayall", - "vdisplayall" - "\n\t\t: Displays all erased interactive objects (see vdir and vstate).", - __FILE__, VDisplayAll, group); + addCmd ("vdisplayall", VDisplayAll, /* [vdisplayall] */ R"( +vdisplayall : Displays all erased interactive objects (see vdir and vstate). +)" /* [vdisplayall] */); - theCommands.Add("veraseall", - "veraseall" - "\n\t\t: Erases all objects displayed in the viewer.", - __FILE__, VErase, group); + addCmd ("veraseall", VErase, /* [veraseall] */ R"( +veraseall : Erases all objects displayed in the viewer. +)" /* [veraseall] */); - theCommands.Add("verasetype", - "verasetype " - "\n\t\t: Erase all the displayed objects of one given kind (see vtypes)", - __FILE__, VEraseType, group); - theCommands.Add("vbounding", - "vbounding [-noupdate|-update] [-mode] name1 [name2 [...]]" - "\n\t\t: [-print] [-hide]" - "\n\t\t: Temporarily display bounding box of specified Interactive" - "\n\t\t: Objects, or print it to console if -print is specified." - "\n\t\t: Already displayed box might be hidden by -hide option.", - __FILE__,VBounding,group); + addCmd ("verasetype", VEraseType, /* [verasetype] */ R"( +verasetype +Erase all the displayed objects of one given kind (see vtypes). +The following types are possible: + Point, Axis, Trihedron, PlaneTrihedron, Line, Circle, Plane, Shape, + ConnectedShape, MultiConn.Shape, ConnectedInter., MultiConn., Constraint and Dimension. +)" /* [verasetype] */); - theCommands.Add("vdisplaytype", - "vdisplaytype : vdisplaytype \n\t display all the objects of one given kind (see vtypes) which are stored the AISContext ", - __FILE__,VDisplayType,group); + addCmd ("vbounding", VBounding, /* [vbounding] */ R"( +vbounding [-noupdate|-update] [-mode] name1 [name2 [...]] + [-print] [-hide] +Temporarily display bounding box of specified Interactive Objects, +or print it to console if -print is specified. +Already displayed box might be hidden by -hide option. +)" /* [vbounding] */); - theCommands.Add("vsetdispmode", - "vsetdispmode [name] mode(1,2,..)" - "\n\t\t: Sets display mode for all, selected or named objects.", - __FILE__,VDispMode,group); + addCmd ("vdisplaytype", VDisplayType, /* [vdisplaytype] */ R"( +vdisplaytype +Display all the objects of one given kind (see vtypes) which are stored the interactive context. +The following types are possible: + Point, Axis, Trihedron, PlaneTrihedron, Line, Circle, Plane, Shape, + ConnectedShape, MultiConn.Shape, ConnectedInter., MultiConn., Constraint and Dimension. +)" /* [vdisplaytype] */); - theCommands.Add("vunsetdispmode", - "vunsetdispmode [name]" - "\n\t\t: Unsets custom display mode for selected or named objects.", - __FILE__,VDispMode,group); + addCmd ("vsetdispmode", VDispMode, /* [vsetdispmode] */ R"( +vsetdispmode [name] mode(1,2,..) +Sets display mode for all, selected or named objects. +In case of a shape presentation, 0 defines WireFrame, and 1 defines Shading display modes. +)" /* [vsetdispmode] */); - theCommands.Add("vdir", - "vdir [mask] [-list]" - "\n\t\t: Lists all objects displayed in 3D viewer" - "\n\t\t: mask - name filter like prefix*" - "\n\t\t: -list - format list with new-line per name; OFF by default", - __FILE__,VDir,group); + addCmd ("vunsetdispmode", VDispMode, /* [vunsetdispmode] */ R"( +vunsetdispmode [name] +Unsets custom display mode for selected or named objects. +)" /* [vunsetdispmode] */); -#ifdef HAVE_FREEIMAGE - #define DUMP_FORMATS "{png|bmp|jpg|gif}" -#else - #define DUMP_FORMATS "{ppm}" -#endif - theCommands.Add("vdump", - "vdump ." DUMP_FORMATS " [-width Width -height Height]" - "\n\t\t: [-buffer rgb|rgba|depth=rgb]" - "\n\t\t: [-stereo mono|left|right|blend|sideBySide|overUnder=mono]" - "\n\t\t: [-xrPose base|head|handLeft|handRight=base]" - "\n\t\t: [-tileSize Size=0]" - "\n\t\t: Dumps content of the active view into image file", - __FILE__,VDump,group); + addCmd ("vdir", VDir, /* [vdir] */ R"( +vdir [mask] [-list] +Lists all objects displayed in 3D viewer + mask - name filter like prefix* + -list - format list with new-line per name; OFF by default +)" /* [vdir] */); - theCommands.Add("vsub", "vsub 0/1 (off/on) [obj] : Subintensity(on/off) of selected objects", - __FILE__,VSubInt,group); + addCmd ("vdump", VDump, /* [vdump] */ R"( +vdump .png [-width Width -height Height] + [-buffer rgb|rgba|depth=rgb] + [-stereo mono|left|right|blend|sideBySide|overUnder=mono] + [-xrPose base|head|handLeft|handRight=base] + [-tileSize Size=0] +Dumps content of the active view into image file. +)" /* [vdump] */); - theCommands.Add("vaspects", - "vaspects [-noupdate|-update] [name1 [name2 [...]] | -defaults] [-subshapes subname1 [subname2 [...]]]" - "\n\t\t: [-visibility {0|1}]" - "\n\t\t: [-color {ColorName | R G B}] [-unsetColor]" - "\n\t\t: [-backfaceColor Color]" - "\n\t\t: [-material MatName] [-unsetMaterial]" - "\n\t\t: [-transparency Transp] [-unsetTransparency]" - "\n\t\t: [-width LineWidth] [-unsetWidth]" - "\n\t\t: [-lineType {solid|dash|dot|dotDash|0xHexPattern} [-stippleFactor factor]]" - "\n\t\t: [-unsetLineType]" - "\n\t\t: [-markerType {.|+|x|O|xcircle|pointcircle|ring1|ring2|ring3|ball|ImagePath}]" - "\n\t\t: [-unsetMarkerType]" - "\n\t\t: [-markerSize Scale] [-unsetMarkerSize]" - "\n\t\t: [-freeBoundary {0|1}]" - "\n\t\t: [-freeBoundaryWidth Width] [-unsetFreeBoundaryWidth]" - "\n\t\t: [-freeBoundaryColor {ColorName | R G B}] [-unsetFreeBoundaryColor]" - "\n\t\t: [-isoOnTriangulation 0|1]" - "\n\t\t: [-maxParamValue {value}]" - "\n\t\t: [-sensitivity {selection_mode} {value}]" - "\n\t\t: [-shadingModel {unlit|flat|gouraud|phong|pbr|pbr_facet}]" - "\n\t\t: [-unsetShadingModel]" - "\n\t\t: [-interior {solid|hatch|hidenline|point}] [-setHatch HatchStyle]" - "\n\t\t: [-unsetInterior]" - "\n\t\t: [-faceBoundaryDraw {0|1}] [-mostContinuity {c0|g1|c1|g2|c2|c3|cn}]" - "\n\t\t: [-faceBoundaryWidth LineWidth] [-faceBoundaryColor R G B] [-faceBoundaryType LineType]" - "\n\t\t: [-drawEdges {0|1}] [-edgeType LineType] [-edgeColor R G B] [-quadEdges {0|1}]" - "\n\t\t: [-drawSilhouette {0|1}]" - "\n\t\t: [-alphaMode {opaque|mask|blend|maskblend|blendauto} [alphaCutOff=0.5]]" - "\n\t\t: [-dumpJson]" - "\n\t\t: [-dumpCompact {0|1}]" - "\n\t\t: [-dumpDepth depth]" - "\n\t\t: Manage presentation properties of all, selected or named objects." - "\n\t\t: When -subshapes is specified than following properties will be assigned to specified sub-shapes." - "\n\t\t: When -defaults is specified than presentation properties will be" - "\n\t\t: assigned to all objects that have not their own specified properties" - "\n\t\t: and to all objects to be displayed in the future." - "\n\t\t: If -defaults is used there should not be any objects' names nor -subshapes specifier." - "\n\t\t: See also vlistcolors and vlistmaterials to list named colors and materials" - "\n\t\t: accepted by arguments -material and -color", - __FILE__,VAspects,group); + addCmd ("vsub", VSubInt, /* [vsub] */ R"( +vsub 0/1 (off/on) [obj] : Subintensity(on/off) of selected objects +)" /* [vsub] */); - theCommands.Add("vsetcolor", - "vsetcolor [-noupdate|-update] [name] ColorName" - "\n\t\t: Sets color for all, selected or named objects." - "\n\t\t: Alias for vaspects -setcolor [name] ColorName.", - __FILE__,VAspects,group); + addCmd ("vaspects", VAspects, /* [vaspects] */ R"( +vaspects [-noupdate|-update] [name1 [name2 [...]] | -defaults] [-subshapes subname1 [subname2 [...]]] + [-visibility {0|1}] + [-color {ColorName | R G B}] [-unsetColor] + [-backfaceColor Color] + [-material MatName] [-unsetMaterial] + [-transparency Transp] [-unsetTransparency] + [-width LineWidth] [-unsetWidth] + [-lineType {solid|dash|dot|dotDash|0xHexPattern} [-stippleFactor factor]] + [-unsetLineType] + [-markerType {.|+|x|O|xcircle|pointcircle|ring1|ring2|ring3|ball|ImagePath}] + [-unsetMarkerType] + [-markerSize Scale] [-unsetMarkerSize] + [-freeBoundary {0|1}] + [-freeBoundaryWidth Width] [-unsetFreeBoundaryWidth] + [-freeBoundaryColor {ColorName | R G B}] [-unsetFreeBoundaryColor] + [-isoOnTriangulation 0|1] + [-maxParamValue {value}] + [-sensitivity {selection_mode} {value}] + [-shadingModel {unlit|flat|gouraud|phong|pbr|pbr_facet}] + [-unsetShadingModel] + [-interior {solid|hatch|hidenline|point}] [-setHatch HatchStyle] + [-unsetInterior] + [-faceBoundaryDraw {0|1}] [-mostContinuity {c0|g1|c1|g2|c2|c3|cn}] + [-faceBoundaryWidth LineWidth] [-faceBoundaryColor R G B] [-faceBoundaryType LineType] + [-drawEdges {0|1}] [-edgeType LineType] [-edgeColor R G B] [-quadEdges {0|1}] + [-drawSilhouette {0|1}] + [-alphaMode {opaque|mask|blend|maskblend|blendauto} [alphaCutOff=0.5]] + [-dumpJson] [-dumpCompact {0|1}] [-dumpDepth depth] +Manage presentation properties of all, selected or named objects. +When -subshapes is specified than following properties will be assigned to specified sub-shapes. +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. +If -defaults is used there should not be any objects' names nor -subshapes specifier. +See also vlistcolors and vlistmaterials to list named colors and materials +accepted by arguments -material and -color +)" /* [vaspects] */); - theCommands.Add("vunsetcolor", - "vunsetcolor [-noupdate|-update] [name]" - "\n\t\t: Resets color for all, selected or named objects." - "\n\t\t: Alias for vaspects -unsetcolor [name].", - __FILE__,VAspects,group); + addCmd ("vsetcolor", VAspects, /* [vsetcolor] */ R"( +vsetcolor [-noupdate|-update] [name] ColorName +Sets color for all, selected or named objects. +Alias for vaspects -setcolor [name] ColorName. +)" /* [vsetcolor] */); - theCommands.Add("vsettransparency", - "vsettransparency [-noupdate|-update] [name] Coefficient" - "\n\t\t: Sets transparency for all, selected or named objects." - "\n\t\t: The Coefficient may be between 0.0 (opaque) and 1.0 (fully transparent)." - "\n\t\t: Alias for vaspects -settransp [name] Coefficient.", - __FILE__,VAspects,group); + addCmd ("vunsetcolor", VAspects, /* [vunsetcolor] */ R"( +vunsetcolor [-noupdate|-update] [name] +Resets color for all, selected or named objects. +Alias for vaspects -unsetcolor [name]. +)" /* [vunsetcolor] */); - theCommands.Add("vunsettransparency", - "vunsettransparency [-noupdate|-update] [name]" - "\n\t\t: Resets transparency for all, selected or named objects." - "\n\t\t: Alias for vaspects -unsettransp [name].", - __FILE__,VAspects,group); + addCmd ("vsettransparency", VAspects, /* [vsettransparency] */ R"( +vsettransparency [-noupdate|-update] [name] Coefficient +Sets transparency for all, selected or named objects. +The Coefficient may be between 0.0 (opaque) and 1.0 (fully transparent). +Alias for vaspects -settransp [name] Coefficient. +)" /* [vsettransparency] */); - theCommands.Add("vsetmaterial", - "vsetmaterial [-noupdate|-update] [name] MaterialName" - "\n\t\t: Alias for vaspects -setmaterial [name] MaterialName.", - __FILE__,VAspects,group); + addCmd ("vunsettransparency", VAspects, /* [vunsettransparency] */ R"( +vunsettransparency [-noupdate|-update] [name] +Resets transparency for all, selected or named objects. +Alias for vaspects -unsettransp [name]. +)" /* [vunsettransparency] */); - theCommands.Add("vunsetmaterial", - "vunsetmaterial [-noupdate|-update] [name]" - "\n\t\t: Alias for vaspects -unsetmaterial [name].", - __FILE__,VAspects,group); + addCmd ("vsetmaterial", VAspects, /* [vsetmaterial] */ R"( +vsetmaterial [-noupdate|-update] [name] MaterialName +n\t\t: Alias for vaspects -setmaterial [name] MaterialName. +)" /* [vsetmaterial] */); - theCommands.Add("vsetwidth", - "vsetwidth [-noupdate|-update] [name] width(0->10)" - "\n\t\t: Alias for vaspects -setwidth [name] width.", - __FILE__,VAspects,group); + addCmd ("vunsetmaterial", VAspects, /* [vunsetmaterial] */ R"( +vunsetmaterial [-noupdate|-update] [name] +Alias for vaspects -unsetmaterial [name]. +)" /* [vunsetmaterial] */); - theCommands.Add("vunsetwidth", - "vunsetwidth [-noupdate|-update] [name]" - "\n\t\t: Alias for vaspects -unsetwidth [name].", - __FILE__,VAspects,group); + addCmd ("vsetwidth", VAspects, /* [vsetwidth] */ R"( +vsetwidth [-noupdate|-update] [name] width(0->10) +Alias for vaspects -setwidth [name] width. +)" /* [vsetwidth] */); - theCommands.Add("vsetinteriorstyle", - "vsetinteriorstyle [-noupdate|-update] [name] Style" - "\n\t\t: Alias for vaspects -setInterior [name] Style.", - __FILE__,VAspects,group); + addCmd ("vunsetwidth", VAspects, /* [vunsetwidth] */ R"( +vunsetwidth [-noupdate|-update] [name] +Alias for vaspects -unsetwidth [name]. +)" /* [vunsetwidth] */); - theCommands.Add ("vsetedgetype", - "vsetedgetype [name] [-type {solid, dash, dot}] [-color R G B] [-width value]" - "\n\t\t: Alias for vaspects [name] -setEdgeType Type.", - __FILE__, VAspects, group); + addCmd ("vsetinteriorstyle", VAspects, /* [vsetinteriorstyle] */ R"( +vsetinteriorstyle [-noupdate|-update] [name] Style +Alias for vaspects -setInterior [name] Style. +)" /* [vsetinteriorstyle] */); - theCommands.Add ("vunsetedgetype", - "vunsetedgetype [name]" - "\n\t\t: Alias for vaspects [name] -unsetEdgeType.", - __FILE__, VAspects, group); + addCmd ("vsetedgetype", VAspects, /* [vsetedgetype] */ R"( +vsetedgetype [name] [-type {solid, dash, dot}] [-color R G B] [-width value] +Alias for vaspects [name] -setEdgeType Type. +)" /* [vsetedgetype] */); - theCommands.Add ("vshowfaceboundary", - "vshowfaceboundary [name]" - "\n\t\t: Alias for vaspects [name] -setFaceBoundaryDraw on", - __FILE__, VAspects, group); + addCmd ("vunsetedgetype", VAspects, /* [vunsetedgetype] */ R"( +vunsetedgetype [name] : Alias for vaspects [name] -unsetEdgeType. +)" /* [vunsetedgetype] */); - theCommands.Add("vsensdis", - "vsensdis : Display active entities (sensitive entities of one of the standard types corresponding to active selection modes)." - "\n\t\t: Standard entity types are those defined in Select3D package:" - "\n\t\t: - sensitive box" - "\n\t\t: - sensitive face" - "\n\t\t: - sensitive curve" - "\n\t\t: - sensitive segment" - "\n\t\t: - sensitive circle" - "\n\t\t: - sensitive point" - "\n\t\t: - sensitive triangulation" - "\n\t\t: - sensitive triangle" - "\n\t\t: Custom(application - defined) sensitive entity types are not processed by this command.", - __FILE__,VDispSensi,group); + addCmd ("vshowfaceboundary", VAspects, /* [vshowfaceboundary] */ R"( +vshowfaceboundary [name]: Alias for vaspects [name] -setFaceBoundaryDraw on. +)" /* [vshowfaceboundary] */); - theCommands.Add("vsensera", - "vsensera : erase active entities", - __FILE__,VClearSensi,group); + addCmd ("vsensdis", VDispSensi, /* [vsensdis] */ R"( +vsensdis : Display 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, face, curve, segment, circle, point, triangulation, triangle. +Custom (application-defined) sensitive entity types are not processed by this command. +)" /* [vsensdis] */); - theCommands.Add("vsetshading", - "vsetshading : vsetshading name Quality(default=0.0008) " - "\n\t\t: Sets deflection coefficient that defines the quality of the shape representation in the shading mode.", - __FILE__,VShading,group); + addCmd ("vsensera", VClearSensi, /* [vsensera] */ R"( +vsensera : erase active entities +)" /* [vsensera] */); - theCommands.Add("vunsetshading", - "vunsetshading :vunsetshading name " - "\n\t\t: Sets default deflection coefficient (0.0008) that defines the quality of the shape representation in the shading mode.", - __FILE__,VShading,group); + addCmd ("vsetshading", VShading, /* [vsetshading] */ R"( +vsetshading name Quality(default=0.0008) +Sets deflection coefficient that defines the quality of the shape representation in the shading mode. +)" /* [vsetshading] */); - theCommands.Add ("vtexture", - "vtexture [-noupdate|-update] name [ImageFile|IdOfTexture|off]" - "\n\t\t: [-tex0 Image0] [-tex1 Image1] [...]" - "\n\t\t: [-origin {u v|off}] [-scale {u v|off}] [-repeat {u v|off}]" - "\n\t\t: [-trsfTrans du dv] [-trsfScale su sv] [-trsfAngle Angle]" - "\n\t\t: [-modulate {on|off}] [-srgb {on|off}]=on" - "\n\t\t: [-setFilter {nearest|bilinear|trilinear}]" - "\n\t\t: [-setAnisoFilter {off|low|middle|quality}]" - "\n\t\t: [-default]" - "\n\t\t: The texture can be specified by filepath" - "\n\t\t: or as ID (0<=IdOfTexture<=20) specifying one of the predefined textures." - "\n\t\t: The options are:" - "\n\t\t: -scale Setup texture scaling for generating coordinates; (1, 1) by default" - "\n\t\t: -origin Setup texture origin for generating coordinates; (0, 0) by default" - "\n\t\t: -repeat Setup texture repeat for generating coordinates; (1, 1) by default" - "\n\t\t: -modulate Enable or disable texture color modulation" - "\n\t\t: -srgb Prefer sRGB texture format when applicable; TRUE by default" - "\n\t\t: -trsfAngle Setup dynamic texture coordinates transformation - rotation angle" - "\n\t\t: -trsfTrans Setup dynamic texture coordinates transformation - translation vector" - "\n\t\t: -trsfScale Setup dynamic texture coordinates transformation - scale vector" - "\n\t\t: -setFilter Setup texture filter" - "\n\t\t: -setAnisoFilter Setup anisotropic filter for texture with mip-levels" - "\n\t\t: -default Sets texture mapping default parameters", - __FILE__, VTexture, group); + addCmd ("vunsetshading", VShading, /* [vunsetshading] */ R"( +vunsetshading name +Sets default deflection coefficient (0.0008) that defines the quality of the shape representation in the shading mode. +)" /* [vunsetshading] */); - theCommands.Add("vtexscale", - "vtexscale name ScaleU ScaleV" - "\n\t\t: Alias for vtexture name -setScale ScaleU ScaleV.", - __FILE__,VTexture,group); + addCmd ("vtexture", VTexture, /* [vtexture] */ R"( +vtexture [-noupdate|-update] name [ImageFile|IdOfTexture|off] + [-tex0 Image0] [-tex1 Image1] [...] + [-origin {u v|off}] [-scale {u v|off}] [-repeat {u v|off}] + [-trsfTrans du dv] [-trsfScale su sv] [-trsfAngle Angle] + [-modulate {on|off}] [-srgb {on|off}]=on + [-setFilter {nearest|bilinear|trilinear}] + [-setAnisoFilter {off|low|middle|quality}] + [-default] +The texture can be specified by filepath +or as ID (0<=IdOfTexture<=20) specifying one of the predefined textures. +The options are: + -scale Setup texture scaling for generating coordinates; (1, 1) by default + -origin Setup texture origin for generating coordinates; (0, 0) by default + -repeat Setup texture repeat for generating coordinates; (1, 1) by default + -modulate Enable or disable texture color modulation + -srgb Prefer sRGB texture format when applicable; TRUE by default + -trsfAngle Setup dynamic texture coordinates transformation - rotation angle + -trsfTrans Setup dynamic texture coordinates transformation - translation vector + -trsfScale Setup dynamic texture coordinates transformation - scale vector + -setFilter Setup texture filter + -setAnisoFilter Setup anisotropic filter for texture with mip-levels + -default Sets texture mapping default parameters +)" /* [vtexture] */); - theCommands.Add("vtexorigin", - "vtexorigin name OriginU OriginV" - "\n\t\t: Alias for vtexture name -setOrigin OriginU OriginV.", - __FILE__,VTexture,group); + addCmd ("vtexscale", VTexture, /* [vtexscale] */ R"( +vtexscale name ScaleU ScaleV +Alias for vtexture name -setScale ScaleU ScaleV. +)" /* [vtexscale] */); - theCommands.Add("vtexrepeat", - "vtexrepeat name RepeatU RepeatV" - "\n\t\t: Alias for vtexture name -setRepeat RepeatU RepeatV.", - __FILE__, VTexture, group); + addCmd ("vtexorigin", VTexture, /* [vtexorigin] */ R"( +vtexorigin name OriginU OriginV +Alias for vtexture name -setOrigin OriginU OriginV. +)" /* [vtexorigin] */); - theCommands.Add("vtexdefault", - "vtexdefault name" - "\n\t\t: Alias for vtexture name -default.", - __FILE__, VTexture, group); + addCmd ("vtexrepeat", VTexture, /* [vtexrepeat] */ R"( +vtexrepeat name RepeatU RepeatV +Alias for vtexture name -setRepeat RepeatU RepeatV. +)" /* [vtexrepeat] */); - theCommands.Add("vstate", - "vstate [-entities] [-hasSelected] [name1] ... [nameN]" - "\n\t\t: Reports show/hidden state for selected or named objects" - "\n\t\t: -entities - print low-level information about detected entities" - "\n\t\t: -hasSelected - prints 1 if context has selected shape and 0 otherwise", - __FILE__,VState,group); + addCmd ("vtexdefault", VTexture, /* [vtexdefault] */ R"( +vtexdefault name : Alias for vtexture name -default. +)" /* [vtexdefault] */); - theCommands.Add("vpickshapes", - "vpickshape subtype(VERTEX,EDGE,WIRE,FACE,SHELL,SOLID) [name1 or .] [name2 or .] [name n or .]" - "\n\t\t: Hold Ctrl and pick object by clicking Left mouse button." - "\n\t\t: Hold also Shift for multiple selection.", - __FILE__, VPickShape, group); + addCmd ("vstate", VState, /* [vstate] */ R"( +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 context has selected shape and 0 otherwise. +)" /* [vstate] */); - theCommands.Add("vtypes", - "vtypes : list of known types and signatures in AIS - To be Used in vpickobject command for selection with filters", - __FILE__, VIOTypes, group); + addCmd ("vpickshapes", VPickShape, /* [vpickshapes] */ R"( +vpickshape subtype(VERTEX,EDGE,WIRE,FACE,SHELL,SOLID) [name1 or .] [name2 or .] [name n or .] +Hold Ctrl and pick object by clicking Left mouse button. +Hold also Shift for multiple selection. +)" /* [vpickshapes] */); - theCommands.Add("vselfilter", - "vselfilter [-contextfilter {AND|OR}]" - "\n [-type {VERTEX|EDGE|WIRE|FACE|SHAPE|SHELL|SOLID}]" - "\n [-secondtype {VERTEX|EDGE|WIRE|FACE|SHAPE|SHELL|SOLID}]" - "\n [-clear]" - "\nSets selection shape type filter in context or remove all filters." - "\n : Option -contextfilter : To define a selection filter for two or more types of entity," - "\n use value AND (OR by default)." - "\n : Option -type set type of selection filter. Filters are applied with Or combination." - "\n : Option -clear remove all filters in context", - __FILE__,VSelFilter,group); + addCmd ("vtypes", VIOTypes, /* [vtypes] */ R"( +vtypes : list of known types and signatures in AIS. +To be Used in vpickobject command for selection with filters. +)" /* [vtypes] */); - theCommands.Add("vpickselected", "vpickselected [name]: extract selected shape.", - __FILE__, VPickSelected, group); + addCmd ("vselfilter", VSelFilter, /* [vselfilter] */ R"( +vselfilter [-contextfilter {AND|OR}] + [-type {VERTEX|EDGE|WIRE|FACE|SHAPE|SHELL|SOLID}] + [-secondtype {VERTEX|EDGE|WIRE|FACE|SHAPE|SHELL|SOLID}] + [-clear] +Sets selection shape type filter in context or remove all filters. + -contextfilter to define a selection filter for two or more types of entity, + use value AND (OR by default). + -type set type of selection filter; filters are applied with Or combination. + -clear remove all filters in context. +)" /* [vselfilter] */); - theCommands.Add ("vloadselection", - "vloadselection [-context] [name1] ... [nameN] : allows to load selection" - "\n\t\t: primitives for the shapes with names given without displaying them.", - __FILE__, VLoadSelection, group); + addCmd ("vpickselected", VPickSelected, /* [vpickselected] */ R"( +vpickselected [name]: extract selected shape. +)" /* [vpickselected] */); - theCommands.Add("vbsdf", "vbsdf [name] [options]" - "\nAdjusts parameters of material BSDF:" - "\n -help : Shows this message" - "\n -print : Print BSDF" - "\n -kd : Weight of the Lambertian BRDF" - "\n -kr : Weight of the reflection BRDF" - "\n -kt : Weight of the transmission BTDF" - "\n -ks : Weight of the glossy Blinn BRDF" - "\n -le : Self-emitted radiance" - "\n -fresnel : Fresnel coefficients; Allowed fresnel formats are: Constant x," - "\n Schlick x y z, Dielectric x, Conductor x y" - "\n -roughness : Roughness of material (Blinn's exponent)" - "\n -absorpcoeff : Absorption coefficient (only for transparent material)" - "\n -absorpcolor : Absorption color (only for transparent material)" - "\n -normalize : Normalize BSDF coefficients", - __FILE__, VBsdf, group); + addCmd ("vloadselection", VLoadSelection, /* [vloadselection] */ R"( +vloadselection [-context] [name1] ... [nameN] +Allows to load selection primitives for the shapes with names given without displaying them. +)" /* [vloadselection] */); + addCmd ("vbsdf", VBsdf, /* [vbsdf] */ R"( +vbsdf [name] [options] +nAdjusts parameters of material BSDF: + -help shows this message + -print print BSDF + -kd weight of the Lambertian BRDF + -kr weight of the reflection BRDF + -kt weight of the transmission BTDF + -ks weight of the glossy Blinn BRDF + -le self-emitted radiance + -fresnel Fresnel coefficients; Allowed fresnel formats are: Constant x, + Schlick x y z, Dielectric x, Conductor x y + -roughness roughness of material (Blinn's exponent) + -absorpcoeff absorption coefficient (only for transparent material) + -absorpcolor absorption color (only for transparent material) + -normalize normalize BSDF coefficients +)" /* [vbsdf] */); } //============================================================================== diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index 7e38bbf50b..b4281b6f63 100644 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -6819,389 +6819,396 @@ static int VNormals (Draw_Interpretor& theDI, void ViewerTest::ObjectCommands(Draw_Interpretor& theCommands) { - const char *group ="AISObjects"; + const char* aGroup = "AIS Viewer"; + const char* aFileName = __FILE__; + auto addCmd = [&](const char* theName, Draw_Interpretor::CommandFunction theFunc, const char* theHelp) + { + theCommands.Add (theName, theHelp, aFileName, theFunc, aGroup); + }; - theCommands.Add ("vtrihedron", - "vtrihedron : vtrihedron name" - "\n\t\t: [-dispMode {wireframe|shading} ]" - "\n\t\t: [-origin x y z ]" - "\n\t\t: [-zaxis u v w -xaxis u v w ]" - "\n\t\t: [-drawAxes {X|Y|Z|XY|YZ|XZ|XYZ}]" - "\n\t\t: [-hideLabels {on|off}]" - "\n\t\t: [-hideArrows {on|off}]" - "\n\t\t: [-label {XAxis|YAxis|ZAxis} value]" - "\n\t\t: [-attribute {XAxisLength|YAxisLength|ZAxisLength" - "\n\t\t: |TubeRadiusPercent|ConeRadiusPercent" - "\n\t\t: |ConeLengthPercent|OriginRadiusPercent" - "\n\t\t: |ShadingNumberOfFacettes} value]" - "\n\t\t: [-color {Origin|XAxis|YAxis|ZAxis|XOYAxis|YOZAxis" - "\n\t\t: |XOZAxis|Whole} {r g b | colorName}]" - "\n\t\t: [-textColor [XAxis|YAxis|ZAxis] {r g b | colorName}]" - "\n\t\t: [-arrowColor [XAxis|YAxis|ZAxis] {r g b | colorName}]" - "\n\t\t: [-priority {Origin|XAxis|YAxis|ZAxis|XArrow" - "\n\t\t: |YArrow|ZArrow|XOYAxis|YOZAxis" - "\n\t\t: |XOZAxis|Whole} value]" - "\n\t\t:" - "\n\t\t: Creates a new *AIS_Trihedron* object or changes parameters of " - "\n\t\t: existing trihedron. If no argument is set," - "\n\t\t: the default trihedron (0XYZ) is created." - "\n\t\t: -dispMode mode of visualization: wf - wireframe," - "\n\t\t: sh - shading." - "\n\t\t: Default value is wireframe." - "\n\t\t: -origin allows to set trihedron location." - "\n\t\t: -zaxis/-xaxis allows to set trihedron X and Z" - "\n\t\t: directions. The directions should" - "\n\t\t: be orthogonal. Y direction is calculated." - "\n\t\t: -drawAxes allows to set what axes are drawn in the" - "\n\t\t: trihedron, default state is XYZ" - "\n\t\t: -hideLabels allows to show/hide trihedron labels" - "\n\t\t: -hideArrows allows to show/hide trihedron arrows" - "\n\t\t: -label allows to change default X/Y/Z titles of axes" - "\n\t\t: -attribute sets parameters of trihedron" - "\n\t\t: -color sets color properties of parts of trihedron" - "\n\t\t: -textColor sets color properties of trihedron labels" - "\n\t\t: -arrowColor sets color properties of trihedron arrows" - "\n\t\t: -priority allows to change default selection priority" - "\n\t\t: of trihedron components", - __FILE__,VTrihedron,group); + addCmd ("vtrihedron", VTrihedron, /* [vtrihedron] */ R"( +vtrihedron name + [-dispMode {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}] + [-hideArrows {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 [XAxis|YAxis|ZAxis] {r g b | colorName}] + [-arrowColor [XAxis|YAxis|ZAxis] {r g b | colorName}] + [-priority {Origin|XAxis|YAxis|ZAxis|XArrow + |YArrow|ZArrow|XOYAxis|YOZAxis + |XOZAxis|Whole} value] - theCommands.Add("vtri2d", - "vtri2d Name" - "\n\t\t: Creates a plane with a 2D trihedron from an interactively selected face.", - __FILE__,VTrihedron2D ,group); +Creates/changes *AIS_Trihedron* object. + -dispMode mode of visualization: wf - wireframe, + sh - shading; + default value is wireframe; + -origin allows to set trihedron location; + -zaxis/-xaxis allows to set trihedron X and Z directions; + the directions should be orthogonal; + Y direction is calculated; + -drawAxes allows to set what axes are drawn in the + trihedron, default state is XYZ; + -hideLabels allows to show/hide trihedron labels; + -hideArrows allows to show/hide trihedron arrows; + -label allows to change default X/Y/Z titles of axes; + -attribute sets parameters of trihedron; + -color sets color properties of parts of trihedron; + -textColor sets color properties of trihedron labels; + -arrowColor sets color properties of trihedron arrows; + -priority allows to change default selection priority + of trihedron components. +)" /* [vtrihedron] */); - theCommands.Add("vplanetri", - "vplanetri name" - "\n\t\t: Create a plane from a trihedron selection. If no arguments are set, the default", - __FILE__,VPlaneTrihedron ,group); + addCmd ("vtri2d", VTrihedron2D, /* [vtri2d] */ R"( +vtri2d Name : Creates a plane with a 2D trihedron from an interactively selected face. +)" /* [vtri2d] */); - theCommands.Add("vsize", - "vsize : vsize [name(Default=Current)] [size(Default=100)] " - "\n\t\t: Changes the size of a named or selected trihedron." - "\n\t\t: If the name is not defined: it affects the selected trihedrons otherwise nothing is done." - "\n\t\t: If the value is not defined: it is set to 100 by default.", - __FILE__,VSize,group); + addCmd ("vplanetri", VPlaneTrihedron, /* [vplanetri] */ R"( +vplanetri name +Create a plane from a trihedron selection. +If no arguments are set, the default plane is created. +)" /* [vplanetri] */); - theCommands.Add("vaxis", - "vaxis name [Xa] [Ya] [Za] [Xb] [Yb] [Zb]" - "\n\t\t: Creates an axis. If the values are not defined, an axis is created by interactive selection of two vertices or one edge", - __FILE__,VAxisBuilder,group); + addCmd ("vsize", VSize, /* [vsize] */ R"( +vsize [name(Default=Current)] [size(Default=100)] +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. +)" /* [vsize] */); - theCommands.Add("vaxispara", - "vaxispara name " - "\n\t\t: Creates an axis by interactive selection of an edge and a vertex.", - __FILE__,VAxisBuilder,group); + addCmd ("vaxis", VAxisBuilder, /* [vaxis] */ R"( +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. +)" /* [vaxis] */); - theCommands.Add("vaxisortho", - "vaxisortho name " - "\n\t\t: Creates an axis by interactive selection of an edge and a vertex. The axis will be orthogonal to the selected edge.", - __FILE__,VAxisBuilder,group); + addCmd ("vaxispara", VAxisBuilder, /* [vaxispara] */ R"( +vaxispara name +Creates an axis by interactive selection of an edge and a vertex. +)" /* [vaxispara] */); - theCommands.Add("vpoint", - "vpoint name [X Y [Z]] [-2d] [-nosel]" - "\n\t\t: Creates a point from coordinates." - "\n\t\t: If the values are not defined, a point is created from selected vertex or edge (center)." - "\n\t\t: -2d defines on-screen 2D point from top-left window corner" - "\n\t\t: -nosel creates non-selectable presentation", - __FILE__,VPointBuilder,group); + addCmd ("vaxisortho", VAxisBuilder, /* [vaxisortho] */ R"( +vaxisortho name +Creates an axis by interactive selection of an edge and a vertex. +The axis will be orthogonal to the selected edge. +)" /* [vaxisortho] */); - theCommands.Add("vplane", - "vplane PlaneName [AxisName/PlaneName/PointName] [PointName/PointName/PointName] [Nothing/Nothing/PointName] [TypeOfSensitivity {0|1}]" - "\n\t\t: Creates a plane from named or interactively selected entities." - "\n\t\t: TypeOfSensitivity:" - "\n\t\t: 0 - Interior" - "\n\t\t: 1 - Boundary", - __FILE__,VPlaneBuilder,group); + addCmd ("vpoint", VPointBuilder, /* [vpoint] */ R"( +vpoint name [X Y [Z]] [-2d] [-nosel] +Creates a point from coordinates. +If the values are not defined, a point is created from selected vertex or edge (center). + -2d defines on-screen 2D point from top-left window corner; + -nosel creates non-selectable presentation. +)" /* [vpoint] */); - theCommands.Add ("vchangeplane", "vchangeplane usage: \n" - " vchangeplane " - " [x=center_x y=center_y z=center_z]" - " [dx=dir_x dy=dir_y dz=dir_z]" - " [sx=size_x sy=size_y]" - " [minsize=value]" - " [noupdate]\n" - " - changes parameters of the plane:\n" - " - x y z - center\n" - " - dx dy dz - normal\n" - " - sx sy - plane sizes\n" - " - noupdate - do not update/redisplay the plane in context\n" - " Please enter coordinates in format \"param=value\" in arbitrary order.", - __FILE__, VChangePlane, group); + addCmd ("vplane", VPlaneBuilder, /* [vplane] */ R"( +vplane PlaneName [AxisName/PlaneName/PointName] + [PointName/PointName/PointName] [Nothing/Nothing/PointName] [TypeOfSensitivity {0|1}] +Creates a plane from named or interactively selected entities. TypeOfSensitivity: + 0 - Interior; + 1 - Boundary. +)" /* [vplane] */); - theCommands.Add("vplanepara", - "vplanepara PlaneName " - "\n\t\t: Creates a plane from interactively selected vertex and face.", - __FILE__,VPlaneBuilder,group); + addCmd ("vchangeplane", VChangePlane, /* [vchangeplane] */ R"( +vchangeplane plane_name + [x=center_x y=center_y z=center_z] + [dx=dir_x dy=dir_y dz=dir_z] + [sx=size_x sy=size_y] + [minsize=value] + [noupdate] +Changes parameters of the plane: + - x y z - center + - dx dy dz - normal + - sx sy - plane sizes + - noupdate - do not update/redisplay the plane in context +Please enter coordinates in format "param=value" in arbitrary order. +)" /* [vchangeplane] */); - theCommands.Add("vplaneortho", - "vplaneortho PlaneName " - "\n\t\t: Creates a plane from interactive selected face and coplanar edge. ", - __FILE__,VPlaneBuilder,group); + addCmd ("vplanepara", VPlaneBuilder, /* [vplanepara] */ R"( +vplanepara PlaneName +Creates a plane from interactively selected vertex and face. +)" /* [vplanepara] */); - theCommands.Add("vline", - "vline LineName [Xa/PointName] [Ya/PointName] [Za] [Xb] [Yb] [Zb] " - "\n\t\t: Creates a line from coordinates, named or interactively selected vertices. ", - __FILE__,VLineBuilder,group); + addCmd ("vplaneortho", VPlaneBuilder, /* [vplaneortho] */ R"( +vplaneortho PlaneName +Creates a plane from interactive selected face and coplanar edge. +)" /* [vplaneortho] */); - theCommands.Add("vcircle", - "vcircle CircleName [PointName PointName PointName IsFilled]\n\t\t\t\t\t[PlaneName PointName Radius IsFilled]" - "\n\t\t: Creates a circle from named or interactively selected entities." - "\n\t\t: Parameter IsFilled is defined as 0 or 1.", - __FILE__,VCircleBuilder,group); + addCmd ("vline", VLineBuilder, /* [vline] */ R"( +vline LineName [Xa/PointName] [Ya/PointName] [Za] [Xb] [Yb] [Zb] +Creates a line from coordinates, named or interactively selected vertices. +)" /* [vline] */); - theCommands.Add ("vdrawtext", - "vdrawtext name text" - "\n\t\t: [-pos X=0 Y=0 Z=0]" - "\n\t\t: [-color {R G B|name}=yellow]" - "\n\t\t: [-halign {left|center|right}=left]" - "\n\t\t: [-valign {top|center|bottom|topfirstline}=bottom}]" - "\n\t\t: [-angle angle=0]" - "\n\t\t: [-zoom {0|1}=0]" - "\n\t\t: [-height height=16]" - "\n\t\t: [-wrapping width=40]" - "\n\t\t: [-aspect {regular|bold|italic|boldItalic}=regular]" - "\n\t\t: [-font font=Times]" - "\n\t\t: [-2d]" - "\n\t\t: [-perspos {X Y Z}=0 0 0], where" - "\n\t\t X and Y define the coordinate origin in 2d space relative to the view window" - "\n\t\t Example: X=0 Y=0 is center, X=1 Y=1 is upper right corner etc..." - "\n\t\t Z coordinate defines the gap from border of view window (except center position)." - "\n\t\t: [-disptype {blend|decal|shadow|subtitle|dimension|normal}=normal}" - "\n\t\t: [-subcolor {R G B|name}=white]" - "\n\t\t: [-noupdate]" - "\n\t\t: [-plane NormX NormY NormZ DirX DirY DirZ]" - "\n\t\t: [-flipping]" - "\n\t\t: [-ownanchor {0|1}=1]" - "\n\t\t: Display text label at specified position.", - __FILE__, VDrawText, group); + addCmd ("vcircle", VCircleBuilder, /* [vcircle] */ R"( +vcircle CircleName [PointName PointName PointName IsFilled] + [PlaneName PointName Radius IsFilled] +Creates a circle from named or interactively selected entities. +Parameter IsFilled is defined as 0 or 1. +)" /* [vcircle] */); - theCommands.Add("vdrawsphere", - "vdrawsphere: vdrawsphere shapeName Fineness [X=0.0 Y=0.0 Z=0.0] [Radius=100.0] [ToShowEdges=0] [ToPrintInfo=1]\n", - __FILE__,VDrawSphere,group); + addCmd ("vdrawtext", VDrawText, /* [vdrawtext] */ R"( +vdrawtext name text + [-pos X Y Z]={0 0 0} + [-color {R G B|name}]=yellow + [-halign {left|center|right}]=left + [-valign {top|center|bottom|topfirstline}}]=bottom + [-angle angle]=0 + [-zoom {0|1}]=0 + [-height height]=16 + [-wrapping width]=40 + [-aspect {regular|bold|italic|boldItalic}]=regular + [-font font]=Times + [-2d] [-perspos {X Y Z}]={0 0 0} + [-disptype {blend|decal|shadow|subtitle|dimension|normal}}=normal + [-subcolor {R G B|name}]=white + [-noupdate] + [-plane NormX NormY NormZ DirX DirY DirZ] + [-flipping] [-ownanchor {0|1}]=1 +Display text label at specified position. +Within -perspos, X and Y define the coordinate origin in 2d space relative to the view window. +Example: X=0 Y=0 is center, X=1 Y=1 is upper right corner etc... +Z coordinate defines the gap from border of view window (except center position). +)" /* [vdrawtext] */); - theCommands.Add ("vlocation", - "vlocation name" - "\n\t\t: [-reset] [-copyFrom otherName]" - "\n\t\t: [-translate X Y [Z]] [-rotate x y z dx dy dz angle] [-scale [X Y Z] scale]" - "\n\t\t: [-pretranslate X Y [Z]] [-prerotate x y z dx dy dz angle] [-prescale [X Y Z] scale]" - "\n\t\t: [-mirror x y z dx dy dz] [-premirror x y z dx dy dz]" - "\n\t\t: [-setLocation X Y [Z]] [-setRotation QX QY QZ QW] [-setScale [X Y Z] scale]" - "\n\t\t: Object local transformation management:" - "\n\t\t: -reset resets transformation to identity" - "\n\t\t: -translate applies translation vector" - "\n\t\t: -rotate applies rotation around axis" - "\n\t\t: -scale applies scale factor with optional anchor" - "\n\t\t: -mirror applies mirror transformation" - "\n\t\t: -pretranslate pre-multiplies translation vector" - "\n\t\t: -prerotate pre-multiplies rotation around axis" - "\n\t\t: -prescale pre-multiplies scale transformation" - "\n\t\t: -premirror pre-multiplies mirror transformation" - "\n\t\t: -setLocation overrides translation part" - "\n\t\t: -setRotation overrides rotation part with specified quaternion" - "\n\t\t: -setScale overrides scale factor", - __FILE__, VSetLocation, group); - theCommands.Add ("vsetlocation", - "alias for vlocation", - __FILE__, VSetLocation, group); - theCommands.Add ("vchild", - "vchild parent [-add] [-remove] [-ignoreParentTrsf {0|1}] child1 [child2] [...]" - "\n\t\t: Command for testing low-level presentation connections." - "\n\t\t: vconnect command should be used instead.", - __FILE__, VChild, group); - theCommands.Add("vparent", - "vparent parent [-ignoreVisu]" - "\n\t\t: Command for testing object properties as parent in the hierarchy." - "\n\t\t: Arguments:" - "\n\t\t: -ignoreVisu do not propagate the visual state (display/erase/color) to children objects", - __FILE__, VParent, group); - theCommands.Add ("vcomputehlr", - "vcomputehlr shapeInput hlrResult [-algoType {algo|polyAlgo}=polyAlgo]" - "\n\t\t: [eyeX eyeY eyeZ dirX dirY dirZ upX upY upZ]" - "\n\t\t: [-showTangentEdges {on|off}=off] [-nbIsolines N=0] [-showHiddenEdges {on|off}=off]" - "\n\t\t: Arguments:" - "\n\t\t: shapeInput - name of the initial shape" - "\n\t\t: hlrResult - result HLR object from initial shape" - "\n\t\t: eye, dir are eye position and look direction" - "\n\t\t: up is the look up direction vector" - "\n\t\t: -algoType HLR algorithm to use" - "\n\t\t: -showTangentEdges include tangent edges" - "\n\t\t: -nbIsolines include isolines" - "\n\t\t: -showHiddenEdges include hidden edges" - "\n\t\t: Use vtop to see projected HLR shape.", - __FILE__, VComputeHLR, group); + addCmd ("vdrawsphere", VDrawSphere, /* [vdrawsphere] */ R"( +vdrawsphere shapeName Fineness [X=0.0 Y=0.0 Z=0.0] [Radius=100.0] [ToShowEdges=0] [ToPrintInfo=1] +)" /* [vdrawsphere] */); - theCommands.Add("vdrawparray", - "vdrawparray name TypeOfArray={points|segments|polylines|triangles" - "\n\t\t: |trianglefans|trianglestrips|quads|quadstrips|polygons}" - "\n\t\t: [-deinterleaved|-mutable]" - "\n\t\t: [vertex={'v' x y z [normal={'n' nx ny nz}] [color={'c' r g b}] [texel={'t' tx ty}]]" - "\n\t\t: [bound= {'b' nbVertices [bound_color={'c' r g b}]]" - "\n\t\t: [edge= {'e' vertexId]" - "\n\t\t: [-shape shapeName] [-patch]" - "\n\t\t: Commands create an Interactive Object for specified Primitive Array definition (Graphic3d_ArrayOfPrimitives)" - "\n\t\t: with the main purpose is covering various combinations by tests", - __FILE__,VDrawPArray,group); + addCmd ("vlocation", VSetLocation, /* [vlocation] */ R"( +vlocation name + [-reset] [-copyFrom otherName] + [-translate X Y [Z]] [-rotate x y z dx dy dz angle] [-scale [X Y Z] scale] + [-pretranslate X Y [Z]] [-prerotate x y z dx dy dz angle] [-prescale [X Y Z] scale] + [-mirror x y z dx dy dz] [-premirror x y z dx dy dz] + [-setLocation X Y [Z]] [-setRotation QX QY QZ QW] [-setScale [X Y Z] scale] +Object local transformation management: + -reset resets transformation to identity + -translate applies translation vector + -rotate applies rotation around axis + -scale applies scale factor with optional anchor + -mirror applies mirror transformation + -pretranslate pre-multiplies translation vector + -prerotate pre-multiplies rotation around axis + -prescale pre-multiplies scale transformation + -premirror pre-multiplies mirror transformation + -setLocation overrides translation part + -setRotation overrides rotation part with specified quaternion + -setScale overrides scale factor +)" /* [vlocation] */); - theCommands.Add("vconnect", - "vconnect name Xo Yo Zo object1 object2 ... [color=NAME]" - "\n\t\t: Creates and displays AIS_ConnectedInteractive object from input object and location.", - __FILE__, VConnect, group); + addCmd ("vsetlocation", VSetLocation, /* [vsetlocation] */ R"( +Alias for vlocation +)" /* [vsetlocation] */); - theCommands.Add("vconnectto", - "vconnectto : instance_name Xo Yo Zo object [-nodisplay|-noupdate|-update]" - " Makes an instance 'instance_name' of 'object' with position (Xo Yo Zo)." - "\n\t\t: -nodisplay - only creates interactive object, but not displays it", - __FILE__, VConnectTo,group); + addCmd ("vchild", VChild, /* [vchild] */ R"( +vchild parent [-add] [-remove] [-ignoreParentTrsf {0|1}] child1 [child2] [...] +Command for testing low-level presentation connections. +vconnect command should be used instead. +)" /* [vchild] */); - theCommands.Add("vdisconnect", - "vdisconnect assembly_name (object_name | object_number | 'all')" - " Disconnects all objects from assembly or disconnects object by name or number (use vlistconnected to enumerate assembly children).", - __FILE__,VDisconnect,group); + addCmd ("vparent", VParent, /* [vparent] */ R"( +vparent parent [-ignoreVisu] +Command for testing object properties as parent in the hierarchy. + -ignoreVisu do not propagate the visual state (display/erase/color) to children objects +)" /* [vparent] */); - theCommands.Add("vaddconnected", - "vaddconnected assembly_name object_name" - "Adds object to assembly.", - __FILE__,VAddConnected,group); + addCmd ("vcomputehlr", VComputeHLR, /* [vcomputehlr] */ R"( +vcomputehlr shapeInput hlrResult [-algoType {algo|polyAlgo}=polyAlgo] + [eyeX eyeY eyeZ dirX dirY dirZ upX upY upZ] + [-showTangentEdges {on|off}=off] [-nbIsolines N=0] [-showHiddenEdges {on|off}=off] +Arguments: + shapeInput - name of the initial shape + hlrResult - result HLR object from initial shape + eye, dir are eye position and look direction + up is the look up direction vector + -algoType HLR algorithm to use + -showTangentEdges include tangent edges + -nbIsolines include isolines + -showHiddenEdges include hidden edges +Use vtop to see projected HLR shape. +)" /* [vcomputehlr] */); - theCommands.Add("vlistconnected", - "vlistconnected assembly_name" - "Lists objects in assembly.", - __FILE__,VListConnected,group); + addCmd ("vdrawparray", VDrawPArray, /* [vdrawparray] */ R"( +vdrawparray name TypeOfArray={points|segments|polylines|triangles + |trianglefans|trianglestrips|quads|quadstrips|polygons} + [-deinterleaved|-mutable] + [vertex={'v' x y z [normal={'n' nx ny nz}] [color={'c' r g b}] [texel={'t' tx ty}]] + [bound= {'b' nbVertices [bound_color={'c' r g b}]] + [edge= {'e' vertexId] + [-shape shapeName] [-patch] +Commands create an Interactive Object for specified Primitive Array definition +with the main purpose is covering various combinations by tests. +)" /* [vdrawparray] */); + addCmd ("vconnect", VConnect, /* [vconnect] */ R"( +vconnect name Xo Yo Zo object1 object2 ... [color=NAME] +Creates and displays AIS_ConnectedInteractive object from input object and location. +)" /* [vconnect] */); - theCommands.Add("vselmode", - "vselmode [object] selectionMode {on|off}" - "\n\t\t: [{-add|-set|-globalOrLocal}=-globalOrLocal]" - "\n\t\t: Switches selection mode for the specified object or for all objects in context." - "\n\t\t: Selection mode is either an integer number specific to Interactive Object," - "\n\t\t: or sub-shape type in case of AIS_Shape:" - "\n\t\t: Shape, Vertex, Edge, Wire, Face, Shell, Solid, CompSolid, Compound" - "\n\t\t: The integer mode 0 (Shape in case of AIS_Shape) is reserved for selecting object as whole." - "\n\t\t: Additional options:" - "\n\t\t: -add already activated selection modes will be left activated" - "\n\t\t: -set already activated selection modes will be deactivated" - "\n\t\t: -globalOrLocal (default) if new mode is Global selection mode," - "\n\t\t: then active local selection modes will be deactivated" - "\n\t\t: and the samthen active local selection modes will be deactivated", - __FILE__, VSetSelectionMode, group); + addCmd ("vconnectto", VConnectTo, /* [vconnectto] */ R"( +vconnectto instance_name Xo Yo Zo object [-nodisplay|-noupdate|-update] +Makes an instance 'instance_name' of 'object' with position (Xo Yo Zo). + -nodisplay - only creates interactive object, but not displays it. +)" /* [vconnectto] */); - theCommands.Add("vselnext", - "vselnext : hilight next detected", - __FILE__, VSelectionNext, group); + addCmd ("vdisconnect", VDisconnect, /* [vdisconnect] */ R"( +vdisconnect assembly_name {object_name|object_number|'all'} +Disconnects all objects from assembly or disconnects object by name or number. +Use vlistconnected to enumerate assembly children. +)" /* [vdisconnect] */); - theCommands.Add("vselprev", - "vselnext : hilight previous detected", - __FILE__, VSelectionPrevious, group); + addCmd ("vaddconnected", VAddConnected, /* [vaddconnected] */ R"( +vaddconnected assembly_name object_name +Adds object to assembly. +)" /* [vaddconnected] */); - theCommands.Add("vtriangle", - "vtriangle Name PointName PointName PointName" - "\n\t\t: Creates and displays a filled triangle from named points.", - __FILE__, VTriangle,group); + addCmd ("vlistconnected", VListConnected, /* [vlistconnected] */ R"( +vlistconnected assembly_name +Lists objects in assembly. +)" /* [vlistconnected] */); - theCommands.Add("vsegment", - "vsegment Name PointName PointName" - "\n\t\t: Creates and displays a segment from named points.", - __FILE__, VTriangle,group); + addCmd ("vselmode", VSetSelectionMode, /* [vselmode] */ R"( +vselmode [object] selectionMode {on|off} + [{-add|-set|-globalOrLocal}=-globalOrLocal] +Switches selection mode for the specified object or for all objects in context. +Selection mode is either an integer number specific to Interactive Object, +or sub-shape type in case of AIS_Shape: + Shape, Vertex, Edge, Wire, Face, Shell, Solid, CompSolid, Compound +The integer mode 0 (Shape in case of AIS_Shape) is reserved for selecting object as whole. +Additional options: + -add already activated selection modes will be left activated + -set already activated selection modes will be deactivated + -globalOrLocal (default) if new mode is Global selection mode, + then active local selection modes will be deactivated + and the samthen active local selection modes will be deactivated +)" /* [vselmode] */); - theCommands.Add ("vtorus", - "vtorus name [R1 R2 [Angle1=0 Angle2=360] [Angle=360]]" - "\n\t\t: [-radius R1] [-pipeRadius R2]" - "\n\t\t: [-pipeAngle Angle=360] [-segmentAngle1 Angle1=0 -segmentAngle2 Angle2=360]" - "\n\t\t: [-nbSlices Number=100] [-nbStacks Number=100] [-noupdate]" - "\n\t\t: Creates and displays a torus or torus segment." - "\n\t\t: Parameters of the torus :" - "\n\t\t: - R1 distance from the center of the pipe to the center of the torus" - "\n\t\t: - R2 radius of the pipe" - "\n\t\t: - Angle1 first angle to create a torus ring segment" - "\n\t\t: - Angle2 second angle to create a torus ring segment" - "\n\t\t: - Angle angle to create a torus pipe segment", - __FILE__, VTorus, group); + addCmd ("vselnext", VSelectionNext, /* [vselnext] */ R"( +vselnext : hilight next detected +)" /* [vselnext] */); - theCommands.Add ("vcylinder", - "vcylinder name [R1 R2 Height] [-height H] [-radius R] [-bottomRadius R1 -topRadius R2]" - "\n\t\t: [-nbSlices Number=100] [-noupdate]" - "\n\t\t: Creates and displays a cylinder." - "\n\t\t: Parameters of the cylinder :" - "\n\t\t: - R1 cylinder bottom radius" - "\n\t\t: - R2 cylinder top radius" - "\n\t\t: - Height cylinder height", - __FILE__, VCylinder, group); + addCmd ("vselprev", VSelectionPrevious, /* [vselprev] */ R"( +vselnext : hilight previous detected +)" /* [vselprev] */); - theCommands.Add ("vsphere", - "vsphere name [-radius] R" - "\n\t\t: [-nbSlices Number=100] [-nbStacks Number=100] [-noupdate]" - "\n\t\t: Creates and displays a sphere.", - __FILE__, VSphere, group); + addCmd ("vtriangle", VTriangle, /* [vtriangle] */ R"( +vtriangle Name PointName PointName PointName +Creates and displays a filled triangle from named points. +)" /* [vtriangle] */); - theCommands.Add("vobjzlayer", - "vobjzlayer : set/get object [layerid] - set or get z layer id for the interactive object", - __FILE__, VObjZLayer, group); + addCmd ("vsegment", VTriangle, /* [vsegment] */ R"( +vsegment Name PointName PointName +Creates and displays a segment from named points. +)" /* [vsegment] */); + + addCmd ("vtorus", VTorus, /* [vtorus] */ R"( +vtorus name [R1 R2 [Angle1=0 Angle2=360] [Angle=360]] + [-radius R1] [-pipeRadius R2] + [-pipeAngle Angle=360] [-segmentAngle1 Angle1=0 -segmentAngle2 Angle2=360] + [-nbSlices Number=100] [-nbStacks Number=100] [-noupdate] +Creates and displays a torus or torus segment. +Parameters of the torus: + - R1 distance from the center of the pipe to the center of the torus + - R2 radius of the pipe + - Angle1 first angle to create a torus ring segment + - Angle2 second angle to create a torus ring segment + - Angle angle to create a torus pipe segment +)" /* [vtorus] */); + + addCmd ("vcylinder", VCylinder, /* [vcylinder] */ R"( +vcylinder name [R1 R2 Height] [-height H] [-radius R] [-bottomRadius R1 -topRadius R2] + [-nbSlices Number=100] [-noupdate] +Creates and displays a cylinder. +Parameters of the cylinder: + - R1 cylinder bottom radius + - R2 cylinder top radius + - Height cylinder height +)" /* [vcylinder] */); + + addCmd ("vsphere", VSphere, /* [vsphere] */ R"( +vsphere name [-radius] R + [-nbSlices Number=100] [-nbStacks Number=100] [-noupdate] +Creates and displays a sphere. +)" /* [vsphere] */); + + addCmd ("vobjzlayer", VObjZLayer, /* [vobjzlayer] */ R"( +vobjzlayer : set/get object [layerid] - set or get z layer id for the interactive object +)" /* [vobjzlayer] */); - theCommands.Add("vpolygonoffset", - "vpolygonoffset : [object [mode factor units]] - sets/gets polygon offset parameters for an object, without arguments prints the default values", - __FILE__, VPolygonOffset, group); + addCmd ("vpolygonoffset", VPolygonOffset, /* [vpolygonoffset] */ R"( +vpolygonoffset [object [mode factor units]] +Sets/gets polygon offset parameters for an object; without arguments prints the default values +)" /* [vpolygonoffset] */); - theCommands.Add ("vmarkerstest", - "vmarkerstest: name X Y Z [PointsOnSide=10] [MarkerType=0] [Scale=1.0] [FileName=ImageFile]\n", - __FILE__, VMarkersTest, group); + addCmd ("vmarkerstest", VMarkersTest, /* [vmarkerstest] */ R"( +vmarkerstest: name X Y Z [PointsOnSide=10] [MarkerType=0] [Scale=1.0] [FileName=ImageFile] +)" /* [vmarkerstest] */); - theCommands.Add ("text2brep", - "text2brep: name text" - "\n\t\t: [-pos X=0 Y=0 Z=0]" - "\n\t\t: [-halign {left|center|right}=left]" - "\n\t\t: [-valign {top|center|bottom|topfirstline}=bottom}]" - "\n\t\t: [-height height=16]" - "\n\t\t: [-aspect {regular|bold|italic|boldItalic}=regular]" - "\n\t\t: [-font font=Courier] [-strict {strict|aliases|any}=any]" - "\n\t\t: [-composite {on|off}=off]" - "\n\t\t: [-plane NormX NormY NormZ DirX DirY DirZ]", - __FILE__, TextToBRep, group); - theCommands.Add ("vfont", - "vfont [-add pathToFont [fontName] [regular,bold,italic,boldItalic=undefined] [singleStroke]]" - "\n\t\t: [-strict {any|aliases|strict}] [-find fontName [regular,bold,italic,boldItalic=undefined]] [-verbose {on|off}]" - "\n\t\t: [-findAll fontNameMask] [-findInfo fontName]" - "\n\t\t: [-unicodeFallback {on|off}]" - "\n\t\t: [-clear] [-init] [-list] [-names]" - "\n\t\t: [-aliases [aliasName]] [-addAlias Alias FontName] [-removeAlias Alias FontName] [-clearAlias Alias] [-clearAliases]" - "\n\t\t: Work with font registry - register font, list available fonts, find font." - "\n\t\t: -findAll is same as -find, but can print more than one font when mask is passed." - "\n\t\t: -findInfo is same as -find, but prints complete font information instead of family name.", - __FILE__, VFont, group); + addCmd ("text2brep", TextToBRep, /* [text2brep] */ R"( +text2brep name text" + [-pos X=0 Y=0 Z=0]" + [-halign {left|center|right}=left]" + [-valign {top|center|bottom|topfirstline}=bottom}]" + [-height height=16]" + [-aspect {regular|bold|italic|boldItalic}=regular]" + [-font font=Courier] [-strict {strict|aliases|any}=any]" + [-composite {on|off}=off]" + [-plane NormX NormY NormZ DirX DirY DirZ]", +)" /* [text2brep] */); - theCommands.Add ("vvertexmode", - "vvertexmode [name | -set {isolated | all | inherited} [name1 name2 ...]]\n" - "vvertexmode - prints the default vertex draw mode\n" - "vvertexmode name - prints the vertex draw mode of the given object\n" - "vvertexmode -set {isolated | all | inherited} - sets the default vertex draw mode and updates the mode for all displayed objects\n" - "vvertexmode -set {isolated | all | inherited} name1 name2 ... - sets the vertex draw mode for the specified object(s)\n", - __FILE__, VVertexMode, group); + addCmd ("vfont", VFont, /* [vfont] */ R"( +vfont [-add pathToFont [fontName] [regular,bold,italic,boldItalic=undefined] [singleStroke]] + [-strict {any|aliases|strict}] [-find fontName [regular,bold,italic,boldItalic=undefined]] + [-verbose {on|off}] + [-findAll fontNameMask] [-findInfo fontName] + [-unicodeFallback {on|off}] + [-clear] [-init] [-list] [-names] + [-aliases [aliasName]] [-addAlias Alias FontName] [-removeAlias Alias FontName] + [-clearAlias Alias] [-clearAliases] +Work with font registry - register font, list available fonts, find font. + -findAll is same as -find, but can print more than one font when mask is passed. + -findInfo is same as -find, but prints complete font information instead of family name. +)" /* [vfont] */); - theCommands.Add ("vpointcloud", - "vpointcloud name shape [-randColor] [-normals] [-noNormals] [-uv]" - "\n\t\t: Create an interactive object for arbitrary set of points" - "\n\t\t: from triangulated shape." - "\n" - "vpointcloud name x y z r npts {surface|volume}\n" - " ... [-randColor] [-normals] [-noNormals] [-uv]" - "\n\t\t: Create arbitrary set of points (npts) randomly distributed" - "\n\t\t: on spheric surface or within spheric volume (x y z r)." - "\n\t\t:" - "\n\t\t: Additional options:" - "\n\t\t: -randColor - generate random color per point" - "\n\t\t: -normals - generate normal per point (default)" - "\n\t\t: -noNormals - do not generate normal per point" - "\n", - __FILE__, VPointCloud, group); + addCmd ("vvertexmode", VVertexMode, /* [vvertexmode] */ R"( +vvertexmode [name | -set {isolated|all|inherited} [name1 name2 ...]] +Sets the vertex draw mode for the specified object(s) +or sets default vertex draw mode and updates the mode for all displayed objects. +Prints the default vertex draw mode without -set parameter. +)" /* [vvertexmode] */); - theCommands.Add("vpriority", - "vpriority [-noupdate|-update] name [value]\n\t\t prints or sets the display priority for an object", - __FILE__, - VPriority, group); + addCmd ("vpointcloud", VPointCloud, /* [vpointcloud] */ R"( +vpointcloud name shape [-randColor] [-normals] [-noNormals] [-uv] +Create an interactive object for arbitrary set of points from triangulated shape. - theCommands.Add ("vnormals", - "vnormals usage:\n" - "vnormals Shape [{on|off}=on] [-length {10}] [-nbAlongU {1}] [-nbAlongV {1}] [-nbAlong {1}]" - "\n\t\t: [-useMesh] [-oriented {0}1}=0]" - "\n\t\t: Displays/Hides normals calculated on shape geometry or retrieved from triangulation", - __FILE__, VNormals, group); +vpointcloud name x y z r npts {surface|volume} + ... [-randColor] [-normals] [-noNormals] [-uv] +Create arbitrary set of points (npts) randomly distributed +on spheric surface or within spheric volume (x y z r). + +Additional options: + -randColor - generate random color per point + -normals - generate normal per point (default) + -noNormals - do not generate normal per point +)" /* [vpointcloud] */); + + addCmd ("vpriority", VPriority, /* [vpriority] */ R"( +vpriority [-noupdate|-update] name [value] +Prints or sets the display priority for an object. +)" /* [vpriority] */); + + addCmd ("vnormals", VNormals, /* [vnormals] */ R"( +vnormals Shape [{on|off}=on] [-length {10}] [-nbAlongU {1}] [-nbAlongV {1}] [-nbAlong {1}] + [-useMesh] [-oriented {0}1}=0] +Displays/Hides normals calculated on shape geometry or retrieved from triangulation +)" /* [vnormals] */); } diff --git a/src/ViewerTest/ViewerTest_OpenGlCommands.cxx b/src/ViewerTest/ViewerTest_OpenGlCommands.cxx index 8fbd807047..fd57606da1 100644 --- a/src/ViewerTest/ViewerTest_OpenGlCommands.cxx +++ b/src/ViewerTest/ViewerTest_OpenGlCommands.cxx @@ -1161,48 +1161,61 @@ static Standard_Integer VGenEnvLUT (Draw_Interpretor&, void ViewerTest::OpenGlCommands(Draw_Interpretor& theCommands) { - const char* aGroup ="Commands for low-level TKOpenGl features"; + const char* aGroup = "AIS Viewer"; + const char* aFileName = __FILE__; + auto addCmd = [&](const char* theName, Draw_Interpretor::CommandFunction theFunc, const char* theHelp) + { + theCommands.Add (theName, theHelp, aFileName, theFunc, aGroup); + }; - theCommands.Add("vimmediatefront", - "vimmediatefront : render immediate mode to front buffer or to back buffer", - __FILE__, VImmediateFront, aGroup); - theCommands.Add("vglinfo", - "vglinfo [-short|-basic|-complete] [-lineWidth Value=80]" - "\n\t\t: [GL_VENDOR] [GL_RENDERER] [GL_VERSION]" - "\n\t\t: [GL_SHADING_LANGUAGE_VERSION] [GL_EXTENSIONS]" - "\n\t\t: print OpenGL info." - "\n\t\t: -lineWidth split values longer than specified value into multiple lines;" - "\n\t\t: -1 disables splitting.", - __FILE__, VGlInfo, aGroup); - theCommands.Add("vshader", - "vshader name -vert VertexShader -frag FragmentShader [-geom GeometryShader]" - "\n\t\t: [-off] [-phong] [-aspect {shading|line|point|text}=shading]" - "\n\t\t: [-header VersionHeader]" - "\n\t\t: [-tessControl TessControlShader -tesseval TessEvaluationShader]" - "\n\t\t: [-uniform Name FloatValue]" - "\n\t\t: Assign custom GLSL program to presentation aspects.", - __FILE__, VShaderProg, aGroup); - theCommands.Add("vshaderprog", "Alias for vshader", __FILE__, VShaderProg, aGroup); - theCommands.Add("vlistmaterials", - "vlistmaterials [*] [MaterialName1 [MaterialName2 [...]]] [dump.obj|dump.html]" - "\n\t\t: Without arguments, command prints the list of standard materials." - "\n\t\t: Otherwise, properties of specified materials will be printed" - "\n\t\t: or dumped into specified file." - "\n\t\t: * can be used to refer to complete list of standard materials.", - __FILE__, VListMaterials, aGroup); - theCommands.Add("vlistcolors", - "vlistcolors [*] [ColorName1 [ColorName2 [...]]] [dump.html]" - "\n\t\t: Without arguments, command prints the list of standard colors." - "\n\t\t: Otherwise, properties of specified colors will be printed" - "\n\t\t: or dumped into specified file." - "\n\t\t: * can be used to refer to complete list of standard colors.", - __FILE__, VListColors, aGroup); - theCommands.Add("vgenenvlut", - "vgenenvlut [-size size = 128] [-nbsamples nbsamples = 1024]" - "\n\t\t: Generates PBR environment look up table." - "\n\t\t: Saves it as C++ source file which is expected to be included in code." - "\n\t\t: The path where result will be located is 'Graphic3d_TextureRoot::TexturesFolder()'." - "\n\t\t: -size size of one side of resulted square table" - "\n\t\t: -nbsamples number of samples used in Monte-Carlo integration", - __FILE__, VGenEnvLUT, aGroup); + addCmd ("vimmediatefront", VImmediateFront, /* [vimmediatefront] */ R"( +vimmediatefront : render immediate mode to front buffer or to back buffer +)" /* [vimmediatefront] */); + + addCmd ("vglinfo", VGlInfo, /* [vglinfo] */ R"( +vglinfo [-short|-basic|-complete] [-lineWidth Value=80] + [GL_VENDOR] [GL_RENDERER] [GL_VERSION] + [GL_SHADING_LANGUAGE_VERSION] [GL_EXTENSIONS] +Print OpenGL info. + -lineWidth split values longer than specified value into multiple lines; + -1 disables splitting. +)" /* [vglinfo] */); + + addCmd ("vshader", VShaderProg, /* [vshader] */ R"( +vshader name -vert VertexShader -frag FragmentShader [-geom GeometryShader] + [-off] [-phong] [-aspect {shading|line|point|text}=shading] + [-header VersionHeader] + [-tessControl TessControlShader -tessEval TessEvaluationShader] + [-uniform Name FloatValue] +Assign custom GLSL program to presentation aspects. +)" /* [vshader] */); + + addCmd ("vshaderprog", VShaderProg, /* [vshaderprog] */ R"( +Alias for vshader +)" /* [vshaderprog] */); + + addCmd ("vlistmaterials", VListMaterials, /* [vlistmaterials] */ R"( +vlistmaterials [*] [MaterialName1 [MaterialName2 [...]]] [dump.obj|dump.html] +Without arguments, command prints the list of standard materials. +Otherwise, properties of specified materials will be printed +or dumped into specified file. +* can be used to refer to complete list of standard materials. +)" /* [vlistmaterials] */); + + addCmd ("vlistcolors", VListColors, /* [vlistcolors] */ R"( +vlistcolors [*] [ColorName1 [ColorName2 [...]]] [dump.html] +Without arguments, command prints the list of standard colors. +Otherwise, properties of specified colors will be printed +or dumped into specified file. +* can be used to refer to complete list of standard colors. +)" /* [vlistcolors] */); + + addCmd ("vgenenvlut", VGenEnvLUT, /* [vgenenvlut] */ R"( +vgenenvlut [-size size = 128] [-nbsamples nbsamples = 1024] +Generates PBR environment look up table. +Saves it as C++ source file which is expected to be included in code. +The path where result will be located is 'Graphic3d_TextureRoot::TexturesFolder()'. + -size size of one side of resulted square table + -nbsamples number of samples used in Monte-Carlo integration +)" /* [vgenenvlut] */); } diff --git a/src/ViewerTest/ViewerTest_RelationCommands.cxx b/src/ViewerTest/ViewerTest_RelationCommands.cxx index 1b5f656785..4c9e8d758b 100644 --- a/src/ViewerTest/ViewerTest_RelationCommands.cxx +++ b/src/ViewerTest/ViewerTest_RelationCommands.cxx @@ -1924,86 +1924,89 @@ static int VMoveDim (Draw_Interpretor& theDi, Standard_Integer theArgNum, const void ViewerTest::RelationCommands(Draw_Interpretor& theCommands) { - const char *group = "AISRelations"; + const char* aGroup = "AIS Viewer"; + const char* aFileName = __FILE__; + auto addCmd = [&](const char* theName, Draw_Interpretor::CommandFunction theFunc, const char* theHelp) + { + theCommands.Add (theName, theHelp, aFileName, theFunc, aGroup); + }; - theCommands.Add("vdimension", - "vdimension name {-angle|-length|-radius|-diameter}" - "[-shapes shape1 [shape2 [shape3]]\n" - "[-selected]\n" - "[-text 3d|2d wf|sh|wireframe|shading IntegerSize]\n" - "[-font FontName]\n" - "[-label left|right|hcenter|hfit top|bottom|vcenter|vfit]\n" - "[-arrow external|internal|fit]\n" - "[-zoomablearrow]\n" - "[{-arrowlength|-arlen} RealArrowLength]\n" - "[{-arrowangle|-arangle} ArrowAngle(degrees)]\n" - "[-plane xoy|yoz|zox]\n" - "[-flyout FloatValue -extension FloatValue]\n" - "[-autovalue]\n" - "[-value CustomRealValue]\n" - "[-textvalue CustomTextValue]\n" - "[-dispunits DisplayUnitsString]\n" - "[-modelunits ModelUnitsString]\n" - "[-showunits | -hideunits]\n" - " -Builds angle, length, radius and diameter dimensions.\n" - " -See also: vdimparam, vmovedim.\n", - __FILE__,VDimBuilder,group); + addCmd ("vdimension", VDimBuilder, /* [vdimension] */ R"( +vdimension name {-angle|-length|-radius|-diameter} + [-shapes shape1 [shape2 [shape3]] + [-selected] + [-text 3d|2d wf|sh|wireframe|shading IntegerSize] + [-font FontName] + [-label left|right|hcenter|hfit top|bottom|vcenter|vfit] + [-arrow external|internal|fit] + [-zoomablearrow] + [{-arrowlength|-arlen} RealArrowLength] + [{-arrowangle|-arangle} ArrowAngle(degrees)] + [-plane xoy|yoz|zox] + [-flyout FloatValue -extension FloatValue] + [-autovalue] + [-value CustomRealValue] + [-textvalue CustomTextValue] + [-dispunits DisplayUnitsString] + [-modelunits ModelUnitsString] + [-showunits | -hideunits] +Builds angle, length, radius and diameter dimensions. +See also: vdimparam, vmovedim. +)" /* [vdimension] */); - theCommands.Add ("vrelation", - "vrelation name {-concentric|-equaldistance|-equalradius|-fix|-identic|-offset|-parallel|-perpendicular|-tangent|-symmetric}" - "\n\t\t: concentric - 2 circled edges." - "\n\t\t: equaldistance - 4 vertex/edges." - "\n\t\t: equalradius - 1 or 2 circled edges." - "\n\t\t: fix - 1 edge." - "\n\t\t: identic - 2 faces, edges or vertices." - "\n\t\t: offset - 2 faces." - "\n\t\t: parallel - 2 faces or 2 edges." - "\n\t\t: perpendicular - 2 faces or 2 edges." - "\n\t\t: tangent - two coplanar edges (first the circular edge then the tangent edge) or two faces." - "\n\t\t: symmetric - 3 edges or 1 edge and 2 vertices." - "-Builds specific relation from selected objects.", - __FILE__, VRelationBuilder, group); + addCmd ("vrelation", VRelationBuilder, /* [vrelation] */ R"( +vrelation name {-concentric|-equaldistance|-equalradius|-fix| + -identic|-offset|-parallel|-perpendicular|-tangent|-symmetric} +Builds specific relation from selected objects: + -concentric - 2 circled edges + -equaldistance - 4 vertex/edges + -equalradius - 1 or 2 circled edges + -fix - 1 edge + -identic - 2 faces, edges or vertices + -offset - 2 faces + -parallel - 2 faces or 2 edges + -perpendicular - 2 faces or 2 edges + -tangent - two coplanar edges (first the circular edge then the tangent edge) or two faces + -symmetric - 3 edges or 1 edge and 2 vertices +)" /* [vrelation] */); - theCommands.Add("vdimparam", - "vdimparam name" - "[-text 3d|2d wf|sh|wireframe|shading IntegerSize]\n" - "[-font FontName]\n" - "[-label left|right|hcenter|hfit top|bottom|vcenter|vfit]\n" - "[-arrow external|internal|fit]\n" - "[-zoomablearrow 0|1]\n" - "[{-arrowlength|-arlen} RealArrowLength]\n" - "[{-arrowangle|-arangle} ArrowAngle(degrees)]\n" - "[-plane xoy|yoz|zox]\n" - "[-flyout FloatValue -extension FloatValue]\n" - "[-value CustomNumberValue]\n" - "[-textvalue CustomTextValue]\n" - "[-dispunits DisplayUnitsString]\n" - "[-modelunits ModelUnitsString]\n" - "[-showunits | -hideunits]\n" - " -Sets parameters for angle, length, radius and diameter dimensions.\n" - " -See also: vmovedim, vdimension.\n", - __FILE__,VDimParam,group); + addCmd ("vdimparam", VDimParam, /* [vdimparam] */ R"( +vdimparam name + [-text 3d|2d wf|sh|wireframe|shading IntegerSize] + [-font FontName] + [-label left|right|hcenter|hfit top|bottom|vcenter|vfit] + [-arrow external|internal|fit] + [-zoomablearrow 0|1] + [{-arrowlength|-arlen} RealArrowLength] + [{-arrowangle|-arangle} ArrowAngle(degrees)] + [-plane xoy|yoz|zox] + [-flyout FloatValue -extension FloatValue] + [-value CustomNumberValue] + [-textvalue CustomTextValue] + [-dispunits DisplayUnitsString] + [-modelunits ModelUnitsString] + [-showunits | -hideunits] +Sets parameters for angle, length, radius and diameter dimensions. +See also: vmovedim, vdimension. +)" /* [vdimparam] */); - theCommands.Add("vlengthparam", - "vlengthparam name" - "[-direction {ox|oy|oz|x y z|autodirection}]\n" - " -Sets parameters for length dimension.\n" - " -See also: vdimparam, vdimension.\n", - __FILE__,VLengthParam,group); + addCmd ("vlengthparam", VLengthParam, /* [vlengthparam] */ R"( +vlengthparam name [-direction {ox|oy|oz|x y z|autodirection}] +Sets parameters for length dimension. +See also: vdimparam, vdimension. +)" /* [vlengthparam] */); - theCommands.Add("vangleparam", - "vangleparam name" - "[-type interior|exterior]\n" - "[-showarrow first|second|both|none]\n" - " -Sets parameters for angle dimension.\n" - " -See also: vdimparam, vdimension.\n", - __FILE__,VAngleParam,group); - - theCommands.Add("vmovedim", - "vmovedim : vmovedim [name] [x y z]" - "\n\t\t: Moves picked or named (if name defined)" - "\n\t\t: dimension to picked mouse position or input point." - "\n\t\t: Text label of dimension 'name' is moved to position, another parts of dimensionare adjusted.", - __FILE__,VMoveDim,group); + addCmd ("vangleparam", VAngleParam, /* [vangleparam] */ R"( +vangleparam name [-type interior|exterior] + [-showarrow first|second|both|none] +Sets parameters for angle dimension. +See also: vdimparam, vdimension. +)" /* [vangleparam] */); + addCmd ("vmovedim", VMoveDim, /* [vmovedim] */ R"( +vmovedim [name] [x y z] +Moves picked or named (if name defined) +dimension to picked mouse position or input point. +Text label of dimension 'name' is moved to position, another parts of dimension are adjusted. +)" /* [vmovedim] */); } diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index 9c5194ac71..2991d76812 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -13665,898 +13665,963 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands) // define destruction callback to destroy views in a well-defined order Tcl_CreateExitHandler (ViewerTest_ExitProc, 0); - const char *group = "ZeViewer"; - theCommands.Add("vdriver", - "vdriver [-list] [-default DriverName] [-load DriverName]" - "\n\t\t: Manages active graphic driver factory." - "\n\t\t: Prints current active driver when called without arguments." - "\n\t\t: Makes specified driver active when ActiveName argument is specified." - "\n\t\t: -list print registered factories" - "\n\t\t: -default define which factory should be used by default (to be used by next vinit call)" - "\n\t\t: -load try loading factory plugin and set it as default one", - __FILE__, VDriver, group); - theCommands.Add("vinit", - "vinit [-name viewName] [-left leftPx] [-top topPx] [-width widthPx] [-height heightPx]" - "\n\t\t: [-exitOnClose] [-closeOnEscape] [-cloneActive] [-virtual {on|off}=off] [-2d_mode {on|off}=off]" - #if defined(HAVE_XLIB) - "\n\t\t: [-display displayName]" - #endif - "\n\t\t: Creates new View window with specified name viewName." - "\n\t\t: By default the new view is created in the viewer and in" - "\n\t\t: graphic driver shared with active view." - "\n\t\t: -name {driverName/viewerName/viewName | viewerName/viewName | viewName}" - "\n\t\t: If driverName isn't specified the driver will be shared with active view." - "\n\t\t: If viewerName isn't specified the viewer will be shared with active view." -#if defined(HAVE_XLIB) - "\n\t\t: -display HostName.DisplayNumber[:ScreenNumber]" - "\n\t\t: Display name will be used within creation of graphic driver, when specified." -#endif - "\n\t\t: -left, -top pixel position of left top corner of the window." - "\n\t\t: -width, -height width and height of window respectively." - "\n\t\t: -cloneActive flag to copy camera and dimensions of active view." - "\n\t\t: -exitOnClose when specified, closing the view will exit application." - "\n\t\t: -closeOnEscape when specified, view will be closed on pressing Escape." - "\n\t\t: -virtual create an offscreen window within interactive session" - "\n\t\t: -2d_mode when on, view will not react on rotate scene events" - "\n\t\t: Additional commands for operations with views: vclose, vactivate, vviewlist.", - __FILE__,VInit,group); - theCommands.Add("vclose" , - "[view_id [keep_context=0|1]]\n" - "or vclose ALL - to remove all created views\n" - " - removes view(viewer window) defined by its view_id.\n" - " - keep_context: by default 0; if 1 and the last view is deleted" - " the current context is not removed.", - __FILE__,VClose,group); - theCommands.Add("vactivate" , - "vactivate view_id [-noUpdate]" - " - activates view(viewer window) defined by its view_id", - __FILE__,VActivate,group); - theCommands.Add("vviewlist", - "vviewlist [format={tree, long}]" - " - prints current list of views per viewer and graphic_driver ID shared between viewers" - " - format: format of result output, if tree the output is a tree view;" - "otherwise it's a list of full view names. By default format = tree", - __FILE__,VViewList,group); - theCommands.Add("vhelp" , - "vhelp : display help on the viewer commands", - __FILE__,VHelp,group); - theCommands.Add("vviewproj", - "vviewproj [top|bottom|left|right|front|back|axoLeft|axoRight]" - "\n\t\t: [+-X+-Y+-Z] [-Zup|-Yup] [-frame +-X+-Y]" - "\n\t\t: Setup view direction" - "\n\t\t: -Yup use Y-up convention instead of Zup (which is default)." - "\n\t\t: +-X+-Y+-Z define direction as combination of DX, DY and DZ;" - "\n\t\t: for example '+Z' will show front of the model," - "\n\t\t: '-X-Y+Z' will define left axonometrical view." - "\n\t\t: -frame define camera Up and Right directions (regardless Up convention);" - "\n\t\t: for example '+X+Z' will show front of the model with Z-up.", - __FILE__,VViewProj,group); - theCommands.Add("vtop" , - "vtop or : Top view. Orientation +X+Y" , - __FILE__,VViewProj,group); - theCommands.Add("vbottom" , - "vbottom : Bottom view. Orientation +X-Y" , - __FILE__,VViewProj,group); - theCommands.Add("vleft" , - "vleft : Left view. Orientation -Y+Z" , - __FILE__,VViewProj,group); - theCommands.Add("vright" , - "vright : Right view. Orientation +Y+Z" , - __FILE__,VViewProj,group); - theCommands.Add("vaxo" , - " vaxo or : Axonometric view. Orientation +X-Y+Z", - __FILE__,VViewProj,group); - theCommands.Add("vfront" , - "vfront : Front view. Orientation +X+Z" , - __FILE__,VViewProj,group); - theCommands.Add("vback" , - "vback : Back view. Orientation -X+Z" , - __FILE__,VViewProj,group); - theCommands.Add("vpick" , - "vpick : vpick X Y Z [shape subshape] ( all variables as string )", - __FILE__, VPick, group); - theCommands.Add("vfit", - "vfit or [-selected] [-noupdate]" - "\n\t\t: [-selected] fits the scene according to bounding box of currently selected objects", - __FILE__,VFit,group); - theCommands.Add ("vfitarea", - "vfitarea x1 y1 x2 y2" - "\n\t\t: vfitarea x1 y1 z1 x2 y2 z2" - "\n\t\t: Fit view to show area located between two points" - "\n\t\t: given in world 2D or 3D corrdinates.", - __FILE__, VFitArea, group); - theCommands.Add ("vzfit", "vzfit [scale]\n" - " Matches Z near, Z far view volume planes to the displayed objects.\n" - " \"scale\" - specifies factor to scale computed z range.\n", - __FILE__, VZFit, group); - theCommands.Add("vrepaint", - "vrepaint [-immediate] [-continuous FPS]" - "\n\t\t: force redraw of active View" - "\n\t\t: -immediate flag performs redraw of immediate layers only;" - "\n\t\t: -continuous activates/deactivates continuous redraw of active View," - "\n\t\t: 0 means no continuous rendering," - "\n\t\t: -1 means non-stop redraws," - "\n\t\t: >0 specifies target framerate,", - __FILE__,VRepaint,group); - theCommands.Add("vclear", - "vclear : vclear" - "\n\t\t: remove all the object from the viewer", - __FILE__,VClear,group); - theCommands.Add ("vbackground", - "vbackground [-color Color [-default]]" - "\n\t\t: [-gradient Color1 Color2 [-default]" - "\n\t\t: [-gradientMode {NONE|HORIZONTAL|VERTICAL|DIAG1|DIAG2|CORNER1|CORNER2|CORNER3|ELLIPTICAL}]=VERT]" - "\n\t\t: [-imageFile ImageFile [-imageMode {CENTERED|TILED|STRETCH|NONE}]=CENTERED [-srgb {0|1}]=1]" - "\n\t\t: [-cubemap CubemapFile1 [CubeMapFiles2-5] [-order TilesIndexes1-6] [-invertedz]=0]" - "\n\t\t: [-pbrEnv {ibl|noibl|keep}]" - "\n\t\t: Changes background or some background settings." - "\n\t\t: -color sets background color" - "\n\t\t: -gradient sets background gradient starting and ending colors" - "\n\t\t: -gradientMode sets gradient fill method" - "\n\t\t: -default sets background default gradient or color" - "\n\t\t: -imageFile sets filename of image used as background" - "\n\t\t: -imageMode sets image fill type" - "\n\t\t: -cubemap sets environment cubemap as background" - "\n\t\t: -invertedz sets inversion of Z axis for background cubemap rendering; FALSE when unspecified" - "\n\t\t: -pbrEnv sets on/off Image Based Lighting (IBL) from background cubemap for PBR" - "\n\t\t: -srgb prefer sRGB texture format when applicable; TRUE when unspecified" - "\n\t\t: -order defines order of tiles in one image cubemap" - "\n\t\t: TileIndexi defubes an index in range [0, 5] for i tile of one image packed cubemap" - "\n\t\t: (has no effect in case of multi-image cubemaps)", - __FILE__, - VBackground, - group); - theCommands.Add ("vsetbg", - "\n\t\t: Alias for 'vbackground -imageFile ImageFile [-imageMode FillType]'.", - __FILE__, - VBackground, - group); - theCommands.Add ("vsetbgmode", - "\n\t\t: Alias for 'vbackground -imageMode FillType'.", - __FILE__, - VBackground, - group); - theCommands.Add ("vsetgradientbg", - "\n\t\t: Alias for 'vbackground -gradient Color1 Color2 -gradientMode FillMethod'.", - __FILE__, - VBackground, - group); - theCommands.Add ("vsetgrbgmode", - "\n\t\t: Alias for 'vbackground -gradientMode FillMethod'.", - __FILE__, - VBackground, - group); - theCommands.Add ("vsetcolorbg", - "\n\t\t: Alias for 'vbackground -color Color'.", - __FILE__, - VBackground, - group); - theCommands.Add ("vsetdefaultbg", - "\n\t\t: Alias for 'vbackground -default -gradient Color1 Color2 [-gradientMode FillMethod]'" - "\n\t\t: and for 'vbackground -default -color Color'.", - __FILE__, - VBackground, - group); - theCommands.Add("vscale", - "vscale : vscale X Y Z", - __FILE__,VScale,group); - theCommands.Add("vzbufftrihedron", - "vzbufftrihedron [{-on|-off}=-on] [-type {wireframe|zbuffer}=zbuffer]" - "\n\t\t: [-position center|left_lower|left_upper|right_lower|right_upper]" - "\n\t\t: [-scale value=0.1] [-size value=0.8] [-arrowDiam value=0.05]" - "\n\t\t: [-colorArrowX color=RED] [-colorArrowY color=GREEN] [-colorArrowZ color=BLUE]" - "\n\t\t: [-nbfacets value=12] [-colorLabels color=WHITE]" - "\n\t\t: [-colorLabelX color] [-colorLabelY color] [-colorLabelZ color]" - "\n\t\t: Displays a trihedron", - __FILE__,VZBuffTrihedron,group); - theCommands.Add("vrotate", - "vrotate [[-mouseStart X Y] [-mouseMove X Y]]|[AX AY AZ [X Y Z]]" - "\n : Option -mouseStart starts rotation according to the mouse position" - "\n : Option -mouseMove continues rotation with angle computed" - "\n : from last and new mouse position." - "\n : vrotate AX AY AZ [X Y Z]", - __FILE__,VRotate,group); - theCommands.Add("vzoom", - "vzoom : vzoom coef", - __FILE__,VZoom,group); - theCommands.Add("vpan", - "vpan : vpan dx dy", - __FILE__,VPan,group); - theCommands.Add("vcolorscale", - "vcolorscale name [-noupdate|-update] [-demo]" - "\n\t\t: [-range RangeMin=0 RangeMax=1 NbIntervals=10]" - "\n\t\t: [-font HeightFont=20]" - "\n\t\t: [-logarithmic {on|off}=off] [-reversed {on|off}=off]" - "\n\t\t: [-smoothTransition {on|off}=off]" - "\n\t\t: [-hueRange MinAngle=230 MaxAngle=0]" - "\n\t\t: [-colorRange MinColor=BLUE1 MaxColor=RED]" - "\n\t\t: [-textpos {left|right|center|none}=right]" - "\n\t\t: [-labelAtBorder {on|off}=on]" - "\n\t\t: [-colors Color1 Color2 ...] [-color Index Color]" - "\n\t\t: [-labels Label1 Label2 ...] [-label Index Label]" - "\n\t\t: [-freeLabels NbOfLabels Label1 Label2 ...]" - "\n\t\t: [-xy Left=0 Bottom=0]" - "\n\t\t: [-uniform lightness hue_from hue_to]" - "\n\t\t: -demo - displays a color scale with demonstratio values" - "\n\t\t: -colors - set colors for all intervals" - "\n\t\t: -color - set color for specific interval" - "\n\t\t: -uniform - generate colors with the same lightness" - "\n\t\t: -textpos - horizontal label position relative to color scale bar" - "\n\t\t: -labelAtBorder - vertical label position relative to color interval;" - "\n\t\t: at border means the value inbetween neighbor intervals," - "\n\t\t: at center means the center value within current interval" - "\n\t\t: -labels - set labels for all intervals" - "\n\t\t: -freeLabels - same as -labels but does not require" - "\n\t\t: matching the number of intervals" - "\n\t\t: -label - set label for specific interval" - "\n\t\t: -title - set title" - "\n\t\t: -reversed - setup smooth color transition between intervals" - "\n\t\t: -smoothTransition - swap colorscale direction" - "\n\t\t: -hueRange - set hue angles corresponding to minimum and maximum values", - __FILE__, VColorScale, group); - theCommands.Add("vgraduatedtrihedron", - "vgraduatedtrihedron : -on/-off [-xname Name] [-yname Name] [-zname Name] [-arrowlength Value]\n" - "\t[-namefont Name] [-valuesfont Name]\n" - "\t[-xdrawname on/off] [-ydrawname on/off] [-zdrawname on/off]\n" - "\t[-xnameoffset IntVal] [-ynameoffset IntVal] [-znameoffset IntVal]" - "\t[-xnamecolor Color] [-ynamecolor Color] [-znamecolor Color]\n" - "\t[-xdrawvalues on/off] [-ydrawvalues on/off] [-zdrawvalues on/off]\n" - "\t[-xvaluesoffset IntVal] [-yvaluesoffset IntVal] [-zvaluesoffset IntVal]" - "\t[-xcolor Color] [-ycolor Color] [-zcolor Color]\n" - "\t[-xdrawticks on/off] [-ydrawticks on/off] [-zdrawticks on/off]\n" - "\t[-xticks Number] [-yticks Number] [-zticks Number]\n" - "\t[-xticklength IntVal] [-yticklength IntVal] [-zticklength IntVal]\n" - "\t[-drawgrid on/off] [-drawaxes on/off]\n" - " - Displays or erases graduated trihedron" - " - xname, yname, zname - names of axes, default: X, Y, Z\n" - " - namefont - font of axes names. Default: Arial\n" - " - xnameoffset, ynameoffset, znameoffset - offset of name from values or tickmarks or axis. Default: 30\n" - " - xnamecolor, ynamecolor, znamecolor - colors of axes names\n" - " - xvaluesoffset, yvaluesoffset, zvaluesoffset - offset of values from tickmarks or axis. Default: 10\n" - " - valuesfont - font of axes values. Default: Arial\n" - " - xcolor, ycolor, zcolor - color of axis and values\n" - " - xticks, yticks, xzicks - number of tickmark on axes. Default: 5\n" - " - xticklength, yticklength, xzicklength - length of tickmark on axes. Default: 10\n", - __FILE__,VGraduatedTrihedron,group); - theCommands.Add("vtile" , - "vtile [-totalSize W H] [-lowerLeft X Y] [-upperLeft X Y] [-tileSize W H]" - "\n\t\t: Setup view to draw a tile (a part of virtual bigger viewport)." - "\n\t\t: -totalSize the size of virtual bigger viewport" - "\n\t\t: -tileSize tile size (the view size will be used if omitted)" - "\n\t\t: -lowerLeft tile offset as lower left corner" - "\n\t\t: -upperLeft tile offset as upper left corner", - __FILE__, VTile, group); - theCommands.Add("vzlayer", - "vzlayer [layerId]" - "\n\t\t: [-add|-delete|-get|-settings] [-insertBefore AnotherLayer] [-insertAfter AnotherLayer]" - "\n\t\t: [-origin X Y Z] [-cullDist Distance] [-cullSize Size]" - "\n\t\t: [-enable|-disable {depthTest|depthWrite|depthClear|depthoffset}]" - "\n\t\t: [-enable|-disable {positiveOffset|negativeOffset|textureenv|rayTracing}]" - "\n\t\t: ZLayer list management:" - "\n\t\t: -add add new z layer to viewer and print its id" - "\n\t\t: -insertBefore add new z layer and insert it before existing one" - "\n\t\t: -insertAfter add new z layer and insert it after existing one" - "\n\t\t: -delete delete z layer" - "\n\t\t: -get print sequence of z layers" - "\n\t\t: -settings print status of z layer settings" - "\n\t\t: -disable disables given setting" - "\n\t\t: -enable enables given setting", - __FILE__,VZLayer,group); - theCommands.Add("vlayerline", - "vlayerline : vlayerline x1 y1 x2 y2 [linewidth=0.5] [linetype=0] [transparency=1.0]", - __FILE__,VLayerLine,group); - theCommands.Add("vgrid", - "vgrid [off] [-type {rect|circ}] [-mode {line|point}] [-origin X Y] [-rotAngle Angle] [-zoffset DZ]" - "\n\t\t: [-step X Y] [-size DX DY]" - "\n\t\t: [-step StepRadius NbDivisions] [-radius Radius]", - __FILE__, VGrid, group); - theCommands.Add ("vpriviledgedplane", - "vpriviledgedplane [Ox Oy Oz Nx Ny Nz [Xx Xy Xz]]" - "\n\t\t: Ox, Oy, Oz - plane origin" - "\n\t\t: Nx, Ny, Nz - plane normal direction" - "\n\t\t: Xx, Xy, Xz - plane x-reference axis direction" - "\n\t\t: Sets or prints viewer's priviledged plane geometry.", - __FILE__, VPriviledgedPlane, group); - theCommands.Add ("vconvert", - "vconvert v [Mode={window|view}]" - "\n\t\t: vconvert x y [Mode={window|view|grid|ray}]" - "\n\t\t: vconvert x y z [Mode={window|grid}]" - "\n\t\t: window - convert to window coordinates, pixels" - "\n\t\t: view - convert to view projection plane" - "\n\t\t: grid - convert to model coordinates, given on grid" - "\n\t\t: ray - convert projection ray to model coordinates" - "\n\t\t: - vconvert v window : convert view to window;" - "\n\t\t: - vconvert v view : convert window to view;" - "\n\t\t: - vconvert x y window : convert view to window;" - "\n\t\t: - vconvert x y view : convert window to view;" - "\n\t\t: - vconvert x y : convert window to model;" - "\n\t\t: - vconvert x y grid : convert window to model using grid;" - "\n\t\t: - vconvert x y ray : convert window projection line to model;" - "\n\t\t: - vconvert x y z window : convert model to window;" - "\n\t\t: - vconvert x y z grid : convert view to model using grid;" - "\n\t\t: Converts the given coordinates to window/view/model space.", - __FILE__, VConvert, group); - theCommands.Add ("vfps", - "vfps [framesNb=100] [-duration seconds] : estimate average frame rate for active view", - __FILE__, VFps, group); - theCommands.Add ("vstereo", - "vstereo [0|1] [-mode Mode] [-reverse {0|1}]" - "\n\t\t: [-mirrorComposer] [-hmdfov2d AngleDegrees] [-unitFactor MetersFactor]" - "\n\t\t: [-anaglyph Filter]" - "\n\t\t: Control stereo output mode." - "\n\t\t: When -mirrorComposer is specified, VR rendered frame will be mirrored in window (debug)." - "\n\t\t: Parameter -unitFactor specifies meters scale factor for mapping VR input." - "\n\t\t: Available modes for -mode:" - "\n\t\t: quadBuffer - OpenGL QuadBuffer stereo," - "\n\t\t: requires driver support." - "\n\t\t: Should be called BEFORE vinit!" - "\n\t\t: anaglyph - Anaglyph glasses" - "\n\t\t: rowInterlaced - row-interlaced display" - "\n\t\t: columnInterlaced - column-interlaced display" - "\n\t\t: chessBoard - chess-board output" - "\n\t\t: sideBySide - horizontal pair" - "\n\t\t: overUnder - vertical pair" - "\n\t\t: openVR - OpenVR (HMD)" - "\n\t\t: Available Anaglyph filters for -anaglyph:" - "\n\t\t: redCyan, redCyanSimple, yellowBlue, yellowBlueSimple," - "\n\t\t: greenMagentaSimple", - __FILE__, VStereo, group); - theCommands.Add ("vmemgpu", - "vmemgpu [f]: print system-dependent GPU memory information if available;" - " with f option returns free memory in bytes", - __FILE__, VMemGpu, group); - theCommands.Add ("vreadpixel", - "vreadpixel xPixel yPixel [{rgb|rgba|sRGB|sRGBa|depth|hls|rgbf|rgbaf}=rgba] [-name|-hex]" - " : Read pixel value for active view", - __FILE__, VReadPixel, group); - theCommands.Add("diffimage", - "diffimage imageFile1 imageFile2 [diffImageFile]" - "\n\t\t: [-toleranceOfColor {0..1}=0] [-blackWhite {on|off}=off] [-borderFilter {on|off}=off]" - "\n\t\t: [-display viewName prsName1 prsName2 prsNameDiff] [-exitOnClose] [-closeOnEscape]" - "\n\t\t: Compare two images by content and generate difference image." - "\n\t\t: When -exitOnClose is specified, closing the view will exit application." - "\n\t\t: When -closeOnEscape is specified, view will be closed on pressing Escape.", - __FILE__, VDiffImage, group); - theCommands.Add ("vselect", - "vselect x1 y1 [x2 y2 [x3 y3 ... xn yn]] [-allowoverlap 0|1] [-replace|-replaceextra|-xor|-add|-remove]\n" - "- emulates different types of selection:\n" - "- 1) single click selection\n" - "- 2) selection with rectangle having corners at pixel positions (x1,y1) and (x2,y2)\n" - "- 3) selection with polygon having corners in pixel positions (x1,y1), (x2,y2),...,(xn,yn)\n" - "- 4) -allowoverlap manages overlap and inclusion detection in rectangular and polygonal selection.\n" - " If the flag is set to 1, both sensitives that were included completely and overlapped partially by defined \n" - " rectangle or polygon will be detected, otherwise algorithm will chose only fully included sensitives.\n" - " Default behavior is to detect only full inclusion. (partial inclusion - overlap - is not allowed by default)\n" - "- 5) selection scheme replace, replaceextra, xor, add or remove (replace by default)", - __FILE__, VSelect, group); - theCommands.Add ("vmoveto", - "vmoveto [x y] [-reset]" - "\n\t\t: Emulates cursor movement to pixel position (x,y)." - "\n\t\t: -reset resets current highlighting", - __FILE__, VMoveTo, group); - theCommands.Add ("vselaxis", - "vselaxis x y z dx dy dz [-onlyTop 0|1] [-display Name] [-showNormal 0|1]" - "\n\t\t: Provides intersection by given axis and print result intersection points" - "\n\t\t: -onlyTop switches On/Off mode to find only top point or all" - "\n\t\t: -display Name displays intersecting axis and result intersection points for debug goals" - "\n\t\t: -showNormal adds displaying of normal in intersection point or not", - __FILE__, VSelectByAxis, group); - theCommands.Add ("vviewparams", - "vviewparams [-args] [-scale [s]]" - "\n\t\t: [-eye [x y z]] [-at [x y z]] [-up [x y z]]" - "\n\t\t: [-proj [x y z]] [-center x y] [-size sx]" - "\n\t\t: Manage current view parameters or prints all" - "\n\t\t: current values when called without argument." - "\n\t\t: -scale [s] prints or sets viewport relative scale" - "\n\t\t: -eye [x y z] prints or sets eye location" - "\n\t\t: -at [x y z] prints or sets center of look" - "\n\t\t: -up [x y z] prints or sets direction of up vector" - "\n\t\t: -proj [x y z] prints or sets direction of look" - "\n\t\t: -center x y sets location of center of the screen in pixels" - "\n\t\t: -size [sx] prints viewport projection width and height sizes" - "\n\t\t: or changes the size of its maximum dimension" - "\n\t\t: -args prints vviewparams arguments for restoring current view", - __FILE__, VViewParams, group); + const char* aGroup = "AIS Viewer"; + const char* aFileName = __FILE__; + auto addCmd = [&](const char* theName, Draw_Interpretor::CommandFunction theFunc, const char* theHelp) + { + theCommands.Add (theName, theHelp, aFileName, theFunc, aGroup); + }; - theCommands.Add("v2dmode", - "v2dmode [-name viewName] [-mode {-on|-off}=-on]" - "\n\t\t: name - name of existing view, if not defined, the active view is changed" - "\n\t\t: mode - switches On/Off rotation mode" - "\n\t\t: Set 2D mode of the active viewer manipulating. The following mouse and key actions are disabled:" - "\n\t\t: - rotation of the view by 3rd mouse button with Ctrl active" - "\n\t\t: - set view projection using key buttons: A/D/T/B/L/R for AXO, Reset, Top, Bottom, Left, Right" - "\n\t\t: View camera position might be changed only by commands.", - __FILE__, V2DMode, group); + addCmd ("vdriver", VDriver, /* [vdriver] */ R"( +vdriver [-list] [-default DriverName] [-load DriverName] +Manages active graphic driver factory. +Prints current active driver when called without arguments. +Makes specified driver active when ActiveName argument is specified. + -list print registered factories + -default define which factory should be used by default (to be used by next vinit call) + -load try loading factory plugin and set it as default one +)" /* [vdriver] */); - theCommands.Add("vanimation", "Alias for vanim", - __FILE__, VAnimation, group); + addCmd ("vinit", VInit, /* [vinit] */ R"( +vinit [-name viewName] [-left leftPx] [-top topPx] [-width widthPx] [-height heightPx] + [-exitOnClose] [-closeOnEscape] [-cloneActive] [-virtual {on|off}=off] [-2d_mode {on|off}=off] + [-display displayName] +Creates new View window with specified name viewName. +By default the new view is created in the viewer and in graphic driver shared with active view. + -name {driverName/viewerName/viewName | viewerName/viewName | viewName} + if driverName isn't specified the driver will be shared with active view; + if viewerName isn't specified the viewer will be shared with active view. + -display HostName.DisplayNumber[:ScreenNumber] - theCommands.Add("vanim", - "List existing animations:" - "\n\t\t: vanim" - "\n\t\t: Animation playback:" - "\n\t\t: vanim name {-play|-resume|-pause|-stop} [playFrom [playDuration]]" - "\n\t\t: [-speed Coeff] [-freeLook] [-noPauseOnClick] [-lockLoop]" - "\n\t\t: -speed playback speed (1.0 is normal speed)" - "\n\t\t: -freeLook skip camera animations" - "\n\t\t: -noPauseOnClick do not pause animation on mouse click" - "\n\t\t: -lockLoop disable any interactions" - "\n\t\t:" - "\n\t\t: Animation definition:" - "\n\t\t: vanim Name/sub/name [-clear] [-delete]" - "\n\t\t: [start TimeSec] [duration TimeSec]" - "\n\t\t:" - "\n\t\t: Animation name defined in path-style (anim/name or anim.name)" - "\n\t\t: specifies nested animations." - "\n\t\t: There is no syntax to explicitly add new animation," - "\n\t\t: and all non-existing animations within the name will be" - "\n\t\t: implicitly created on first use (including parents)." - "\n\t\t:" - "\n\t\t: Each animation might define the SINGLE action (see below)," - "\n\t\t: like camera transition, object transformation or custom callback." - "\n\t\t: Child animations can be used for defining concurrent actions." - "\n\t\t:" - "\n\t\t: Camera animation:" - "\n\t\t: vanim name -view [-eye1 X Y Z] [-eye2 X Y Z]" - "\n\t\t: [-at1 X Y Z] [-at2 X Y Z]" - "\n\t\t: [-up1 X Y Z] [-up2 X Y Z]" - "\n\t\t: [-scale1 Scale] [-scale2 Scale]" - "\n\t\t: -eyeX camera Eye positions pair (start and end)" - "\n\t\t: -atX camera Center positions pair" - "\n\t\t: -upX camera Up directions pair" - "\n\t\t: -scaleX camera Scale factors pair" - "\n\t\t: Object animation:" - "\n\t\t: vanim name -object [-loc1 X Y Z] [-loc2 X Y Z]" - "\n\t\t: [-rot1 QX QY QZ QW] [-rot2 QX QY QZ QW]" - "\n\t\t: [-scale1 Scale] [-scale2 Scale]" - "\n\t\t: -locX object Location points pair (translation)" - "\n\t\t: -rotX object Orientations pair (quaternions)" - "\n\t\t: -scaleX object Scale factors pair (quaternions)" - "\n\t\t: Custom callback:" - "\n\t\t: vanim name -invoke \"Command Arg1 Arg2 %Pts %LocalPts %Normalized ArgN\"" - "\n\t\t: %Pts overall animation presentation timestamp" - "\n\t\t: %LocalPts local animation timestamp" - "\n\t\t: %Normalized local animation normalized value in range 0..1" - "\n\t\t:" - "\n\t\t: Video recording:" - "\n\t\t: vanim name -record FileName [Width Height] [-fps FrameRate=24]" - "\n\t\t: [-format Format] [-vcodec Codec] [-pix_fmt PixelFormat]" - "\n\t\t: [-crf Value] [-preset Preset]" - "\n\t\t: -fps video framerate" - "\n\t\t: -format file format, container (matroska, etc.)" - "\n\t\t: -vcodec video codec identifier (ffv1, mjpeg, etc.)" - "\n\t\t: -pix_fmt image pixel format (yuv420p, rgb24, etc.)" - "\n\t\t: -crf constant rate factor (specific to codec)" - "\n\t\t: -preset codec parameters preset (specific to codec)", - __FILE__, VAnimation, group); +Display name will be used within creation of graphic driver, when specified. + -left, -top pixel position of left top corner of the window. + -width, -height width and height of window respectively. + -cloneActive flag to copy camera and dimensions of active view. + -exitOnClose when specified, closing the view will exit application. + -closeOnEscape when specified, view will be closed on pressing Escape. + -virtual create an offscreen window within interactive session + -2d_mode when on, view will not react on rotate scene events +Additional commands for operations with views: vclose, vactivate, vviewlist. +)" /* [vinit] */); - theCommands.Add("vchangeselected", - "vchangeselected shape" - "- adds to shape to selection or remove one from it", - __FILE__, VChangeSelected, group); - theCommands.Add ("vnbselected", - "vnbselected" - "\n\t\t: Returns number of selected objects", __FILE__, VNbSelected, group); - theCommands.Add ("vcamera", - "vcamera [PrsName] [-ortho] [-projtype]" - "\n\t\t: [-persp]" - "\n\t\t: [-fovy [Angle]] [-distance [Distance]]" - "\n\t\t: [-stereo] [-leftEye] [-rightEye]" - "\n\t\t: [-iod [Distance]] [-iodType [absolute|relative]]" - "\n\t\t: [-zfocus [Value]] [-zfocusType [absolute|relative]]" - "\n\t\t: [-fov2d [Angle]] [-lockZup {0|1}]" - "\n\t\t: [-rotationMode {active|pick|pickCenter|cameraAt|scene}]" - "\n\t\t: [-navigationMode {orbit|walk|flight}]" - "\n\t\t: [-xrPose base|head=base]" - "\n\t\t: Manages camera parameters." - "\n\t\t: Displays frustum when presentation name PrsName is specified." - "\n\t\t: Prints current value when option called without argument." - "\n\t\t: Orthographic camera:" - "\n\t\t: -ortho activate orthographic projection" - "\n\t\t: Perspective camera:" - "\n\t\t: -persp activate perspective projection (mono)" - "\n\t\t: -fovy field of view in y axis, in degrees" - "\n\t\t: -fov2d field of view limit for 2d on-screen elements" - "\n\t\t: -distance distance of eye from camera center" - "\n\t\t: -lockZup lock Z up (tunrtable mode)" - "\n\t\t: -rotationMode rotation mode (gravity point)" - "\n\t\t: -navigationMode navigation mode" - "\n\t\t: Stereoscopic camera:" - "\n\t\t: -stereo perspective projection (stereo)" - "\n\t\t: -leftEye perspective projection (left eye)" - "\n\t\t: -rightEye perspective projection (right eye)" - "\n\t\t: -iod intraocular distance value" - "\n\t\t: -iodType distance type, absolute or relative" - "\n\t\t: -zfocus stereographic focus value" - "\n\t\t: -zfocusType focus type, absolute or relative", - __FILE__, VCamera, group); - theCommands.Add ("vautozfit", "command to enable or disable automatic z-range adjusting\n" - "- vautozfit [on={1|0}] [scale]\n" - " Prints or changes parameters of automatic z-fit mode:\n" - " \"on\" - turns automatic z-fit on or off\n" - " \"scale\" - specifies factor to scale computed z range.\n", - __FILE__, VAutoZFit, group); - theCommands.Add ("vzrange", "command to manually access znear and zfar values\n" - " vzrange - without parameters shows current values\n" - " vzrange [znear] [zfar] - applies provided values to view", - __FILE__,VZRange, group); - theCommands.Add("vsetviewsize", - "vsetviewsize size", - __FILE__,VSetViewSize,group); - theCommands.Add("vmoveview", - "vmoveview Dx Dy Dz [Start = 1|0]", - __FILE__,VMoveView,group); - theCommands.Add("vtranslateview", - "vtranslateview Dx Dy Dz [Start = 1|0)]", - __FILE__,VTranslateView,group); - theCommands.Add("vturnview", - "vturnview Ax Ay Az [Start = 1|0]", - __FILE__,VTurnView,group); - theCommands.Add("vtextureenv", - "Enables or disables environment mapping in the 3D view, loading the texture from the given standard " - "or user-defined file and optionally applying texture mapping parameters\n" - " Usage:\n" - " vtextureenv off - disables environment mapping\n" - " vtextureenv on {std_texture|texture_file_name} [rep mod flt ss st ts tt rot] - enables environment mapping\n" - " std_texture = (0..7)\n" - " rep = {clamp|repeat}\n" - " mod = {decal|modulate}\n" - " flt = {nearest|bilinear|trilinear}\n" - " ss, st - scale factors for s and t texture coordinates\n" - " ts, tt - translation for s and t texture coordinates\n" - " rot - texture rotation angle in degrees", - __FILE__, VTextureEnv, group); - theCommands.Add("vhlr", - "vhlr {on|off} [-showHidden={1|0}] [-algoType={algo|polyAlgo}] [-noupdate]" - "\n\t\t: Hidden Line Removal algorithm." - "\n\t\t: -showHidden if set ON, hidden lines are drawn as dotted ones" - "\n\t\t: -algoType type of HLR algorithm.\n", - __FILE__,VHLR,group); - theCommands.Add("vhlrtype", - "vhlrtype {algo|polyAlgo} [shape_1 ... shape_n] [-noupdate]" - "\n\t\t: Changes the type of HLR algorithm using for shapes:" - "\n\t\t: 'algo' - exact HLR algorithm is applied" - "\n\t\t: 'polyAlgo' - polygonal HLR algorithm is applied" - "\n\t\t: If shapes are not given - option is applied to all shapes in the view", - __FILE__,VHLRType,group); - theCommands.Add("vclipplane", - "vclipplane planeName [{0|1}]" - "\n\t\t: [-equation1 A B C D]" - "\n\t\t: [-equation2 A B C D]" - "\n\t\t: [-boxInterior MinX MinY MinZ MaxX MaxY MaxZ]" - "\n\t\t: [-set|-unset|-setOverrideGlobal [objects|views]]" - "\n\t\t: [-maxPlanes]" - "\n\t\t: [-capping {0|1}]" - "\n\t\t: [-color R G B] [-transparency Value] [-hatch {on|off|ID}]" - "\n\t\t: [-texName Texture] [-texScale SX SY] [-texOrigin TX TY]" - "\n\t\t: [-texRotate Angle]" - "\n\t\t: [-useObjMaterial {0|1}] [-useObjTexture {0|1}]" - "\n\t\t: [-useObjShader {0|1}]" - "\n\t\t: Clipping planes management:" - "\n\t\t: -maxPlanes print plane limit for view" - "\n\t\t: -delete delete plane with given name" - "\n\t\t: {off|on|0|1} turn clipping on/off" - "\n\t\t: -set|-unset set/unset plane for Object or View list;" - "\n\t\t: applied to active View when list is omitted" - "\n\t\t: -equation A B C D change plane equation" - "\n\t\t: -clone SourcePlane NewPlane clone the plane definition." - "\n\t\t: Capping options:" - "\n\t\t: -capping {off|on|0|1} turn capping on/off" - "\n\t\t: -color R G B set capping color" - "\n\t\t: -transparency Value set capping transparency 0..1" - "\n\t\t: -texName Texture set capping texture" - "\n\t\t: -texScale SX SY set capping tex scale" - "\n\t\t: -texOrigin TX TY set capping tex origin" - "\n\t\t: -texRotate Angle set capping tex rotation" - "\n\t\t: -hatch {on|off|ID} set capping hatching mask" - "\n\t\t: -useObjMaterial {off|on|0|1} use material of clipped object" - "\n\t\t: -useObjTexture {off|on|0|1} use texture of clipped object" - "\n\t\t: -useObjShader {off|on|0|1} use shader program of object", - __FILE__, VClipPlane, group); - theCommands.Add("vdefaults", - "vdefaults [-absDefl value]" - "\n\t\t: [-devCoeff value]" - "\n\t\t: [-angDefl value]" - "\n\t\t: [-autoTriang {off/on | 0/1}]" - , __FILE__, VDefaults, group); - theCommands.Add("vlight", - "vlight [lightName] [-noupdate]" - "\n\t\t: [-clear|-defaults] [-layer Id] [-local|-global] [-disable|-enable]" - "\n\t\t: [-type {ambient|directional|spotlight|positional}] [-name value]" - "\n\t\t: [-position X Y Z] [-direction X Y Z] [-color colorName] [-intensity value]" - "\n\t\t: [-headlight 0|1] [-castShadows 0|1]" - "\n\t\t: [-range value] [-constAttenuation value] [-linearAttenuation value]" - "\n\t\t: [-spotExponent value] [-spotAngle angleDeg]" - "\n\t\t: [-smoothAngle value] [-smoothRadius value]" - "\n\t\t: [-display] [-showName 1|0] [-showRange 1|0] [-prsZoomable 1|0] [-prsSize Value]" - "\n\t\t: [-arcSize Value]" - "\n\t\t: Command manages light sources. Without arguments shows list of lights." - "\n\t\t: Arguments affecting the list of defined/active lights:" - "\n\t\t: -clear remove all light sources" - "\n\t\t: -defaults defines two standard light sources" - "\n\t\t: -reset resets light source parameters to default values" - "\n\t\t: -type sets type of light source" - "\n\t\t: -name sets new name to light source" - "\n\t\t: -global assigns light source to all views (default state)" - "\n\t\t: -local assigns light source to active view" - "\n\t\t: -zlayer assigns light source to specified Z-Layer" - "\n\t\t: Ambient light parameters:" - "\n\t\t: -color sets (normalized) light color" - "\n\t\t: -intensity sets intensity of light source, 1.0 by default;" - "\n\t\t: affects also environment cubemap intensity" - "\n\t\t: Point light parameters:" - "\n\t\t: -color sets (normalized) light color" - "\n\t\t: -intensity sets PBR intensity" - "\n\t\t: -range sets clamping distance" - "\n\t\t: -constAtten (obsolete) sets constant attenuation factor" - "\n\t\t: -linearAtten (obsolete) sets linear attenuation factor" - "\n\t\t: -smoothRadius sets PBR smoothing radius" - "\n\t\t: Directional light parameters:" - "\n\t\t: -color sets (normalized) light color" - "\n\t\t: -intensity sets PBR intensity" - "\n\t\t: -direction sets direction" - "\n\t\t: -headlight sets headlight flag" - "\n\t\t: -castShadows enables/disables shadow casting" - "\n\t\t: -smoothAngle sets PBR smoothing angle (in degrees) within 0..90 range" - "\n\t\t: Spot light parameters:" - "\n\t\t: -color sets (normalized) light color" - "\n\t\t: -intensity sets PBR intensity" - "\n\t\t: -range sets clamping distance" - "\n\t\t: -position sets position" - "\n\t\t: -direction sets direction" - "\n\t\t: -spotAngle sets spotlight angle" - "\n\t\t: -spotExp sets spotlight exponenta" - "\n\t\t: -headlight sets headlight flag" - "\n\t\t: -constAtten (obsolete) sets constant attenuation factor" - "\n\t\t: -linearAtten (obsolete) sets linear attenuation factor" - "\n\t\t: Light presentation parameters:" - "\n\t\t: -display adds light source presentation" - "\n\t\t: -showName shows/hides the name of light source; 1 by default" - "\n\t\t: -showRange shows/hides the range of spot/positional light source; 1 by default" - "\n\t\t: -prsZoomable makes light presentation zoomable/non-zoomable" - "\n\t\t: -prsDraggable makes light presentation draggable/non-draggable" - "\n\t\t: -prsSize sets light presentation size" - "\n\t\t: -arcSize sets arc presentation size(in pixels) for rotation directional light source; 25 by default" - "\n\t\t: Examples:" - "\n\t\t: vlight redlight -type POSITIONAL -headlight 1 -pos 0 1 1 -color RED" - "\n\t\t: vlight redlight -delete", - __FILE__, VLight, group); - theCommands.Add("vpbrenv", - "vpbrenv -clear|-generate" - "\n\t\t: Clears or generates PBR environment map of active view." - "\n\t\t: -clear clears PBR environment (fills by white color)" - "\n\t\t: -generate generates PBR environment from current background cubemap", - __FILE__, VPBREnvironment, group); - theCommands.Add("vraytrace", - "vraytrace [0|1]" - "\n\t\t: Turns on/off ray-tracing renderer." - "\n\t\t: 'vraytrace 0' alias for 'vrenderparams -raster'." - "\n\t\t: 'vraytrace 1' alias for 'vrenderparams -rayTrace'.", - __FILE__, VRenderParams, group); - theCommands.Add("vrenderparams", - "\n\t\t: Manages rendering parameters, affecting visual appearance, quality and performance." - "\n\t\t: Should be applied taking into account GPU hardware capabilities and performance." - "\n\t\t: Common parameters:" - "\n\t\t: vrenderparams [-raster] [-shadingModel {unlit|facet|gouraud|phong|pbr|pbr_facet}=gouraud]" - "\n\t\t: [-msaa 0..8=0] [-rendScale scale=1]" - "\n\t\t: [-resolution value=72] [-fontHinting {off|normal|light}=off]" - "\n\t\t: [-fontAutoHinting {auto|force|disallow}=auto]" - "\n\t\t: [-oit {off|weight|peel}] [-oit weighted [depthFactor=0.0]] [-oit peeling [nbLayers=4]]" - "\n\t\t: [-shadows {on|off}=on] [-shadowMapResolution value=1024] [-shadowMapBias value=0.005]" - "\n\t\t: [-depthPrePass {on|off}=off] [-alphaToCoverage {on|off}=on]" - "\n\t\t: [-frustumCulling {on|off|noupdate}=on] [-lineFeather width=1.0]" - "\n\t\t: [-sync {default|views}] [-reset]" - "\n\t\t: -raster Disables GPU ray-tracing." - "\n\t\t: -shadingModel Controls shading model." - "\n\t\t: -msaa Specifies number of samples for MSAA." - "\n\t\t: -rendScale Rendering resolution scale factor (supersampling, alternative to MSAA)." - "\n\t\t: -resolution Sets new pixels density (PPI) used as text scaling factor." - "\n\t\t: -fontHinting Enables/disables font hinting for better readability on low-resolution screens." - "\n\t\t: -fontAutoHinting Manages font autohinting." - "\n\t\t: -lineFeather Sets line feather factor while displaying mesh edges." - "\n\t\t: -alphaToCoverage Enables/disables alpha to coverage (needs MSAA)." - "\n\t\t: -oit Enables/disables order-independent transparency (OIT) rendering;" - "\n\t\t: off unordered transparency (but opaque objects implicitly draw first);" - "\n\t\t: weighted weight OIT is managed by depth weight factor 0.0..1.0;" - "\n\t\t: peeling depth peeling OIT is managed by number of peeling layers." - "\n\t\t: -shadows Enables/disables shadows rendering." - "\n\t\t: -shadowMapResolution Shadow texture map resolution." - "\n\t\t: -shadowMapBias Shadow map bias." - "\n\t\t: -depthPrePass Enables/disables depth pre-pass." - "\n\t\t: -frustumCulling Enables/disables objects frustum clipping or" - "\n\t\t: sets state to check structures culled previously." - "\n\t\t: -sync Sets active View parameters as Viewer defaults / to other Views." - "\n\t\t: -reset Resets active View parameters to Viewer defaults." - "\n\t\t: Diagnostic output (on-screen overlay):" - "\n\t\t: vrenderparams [-perfCounters none|fps|cpu|layers|structures|groups|arrays|triangles|points" - "\n\t\t: |gpuMem|frameTime|basic|extended|full|nofps|skipImmediate]" - "\n\t\t: [-perfUpdateInterval nbSeconds=1] [-perfChart nbFrames=1] [-perfChartMax seconds=0.1]" - "\n\t\t: -perfCounters Show/hide performance counters (flags can be combined)." - "\n\t\t: -perfUpdateInterval Performance counters update interval." - "\n\t\t: -perfChart Show frame timers chart limited by specified number of frames." - "\n\t\t: -perfChartMax Maximum time in seconds with the chart." - "\n\t\t: Ray-Tracing options:" - "\n\t\t: vrenderparams [-rayTrace] [-rayDepth {0..10}=3] [-reflections {on|off}=off]" - "\n\t\t: [-fsaa {on|off}=off] [-gleam {on|off}=off] [-env {on|off}=off]" - "\n\t\t: [-gi {on|off}=off] [-brng {on|off}=off]" - "\n\t\t: [-iss {on|off}=off] [-tileSize {1..4096}=32] [-nbTiles {64..1024}=256]" - "\n\t\t: [-ignoreNormalMap {on|off}=off] [-twoSide {on|off}=off]" - "\n\t\t: [-maxRad {value>0}=30.0]" - "\n\t\t: [-aperture {value>=0}=0.0] [-focal {value>=0.0}=1.0]" - "\n\t\t: [-exposure value=0.0] [-whitePoint value=1.0] [-toneMapping {disabled|filmic}=disabled]" - "\n\t\t: -rayTrace Enables GPU ray-tracing." - "\n\t\t: -rayDepth Defines maximum ray-tracing depth." - "\n\t\t: -reflections Enables/disables specular reflections." - "\n\t\t: -fsaa Enables/disables adaptive anti-aliasing." - "\n\t\t: -gleam Enables/disables transparency shadow effects." - "\n\t\t: -gi Enables/disables global illumination effects (Path-Tracing)." - "\n\t\t: -env Enables/disables environment map background." - "\n\t\t: -ignoreNormalMap Enables/disables normal map ignoring during path tracing." - "\n\t\t: -twoSide Enables/disables two-sided BSDF models (PT mode)." - "\n\t\t: -iss Enables/disables adaptive screen sampling (PT mode)." - "\n\t\t: -maxRad Value used for clamping radiance estimation (PT mode)." - "\n\t\t: -tileSize Specifies size of screen tiles in ISS mode (32 by default)." - "\n\t\t: -nbTiles Specifies number of screen tiles per Redraw in ISS mode (256 by default)." - "\n\t\t: -aperture Aperture size of perspective camera for depth-of-field effect (0 disables DOF)." - "\n\t\t: -focal Focal distance of perspective camera for depth-of-field effect." - "\n\t\t: -exposure Exposure value for tone mapping (0.0 value disables the effect)." - "\n\t\t: -whitePoint White point value for filmic tone mapping." - "\n\t\t: -toneMapping Tone mapping mode (disabled, filmic)." - "\n\t\t: PBR environment baking parameters (advanced/debug):" - "\n\t\t: vrenderparams [-pbrEnvPow2size {power>0}=9] [-pbrEnvSMLN {levels>1}=6] [-pbrEnvBP {0..1}=0.99]" - "\n\t\t: [-pbrEnvBDSN {samples>0}=1024] [-pbrEnvBSSN {samples>0}=256]" - "\n\t\t: -pbrEnvPow2size Controls size of IBL maps (real size can be calculates as 2^pbrenvpow2size)." - "\n\t\t: -pbrEnvSMLN Controls number of mipmap levels used in specular IBL map." - "\n\t\t: -pbrEnvBDSN Controls number of samples in Monte-Carlo integration during" - "\n\t\t: diffuse IBL map's sherical harmonics calculation." - "\n\t\t: -pbrEnvBSSN Controls maximum number of samples per mipmap level" - "\n\t\t: in Monte-Carlo integration during specular IBL maps generation." - "\n\t\t: -pbrEnvBP Controls strength of samples number reducing" - "\n\t\t: during specular IBL maps generation (1 disables reducing)." - "\n\t\t: Debug options:" - "\n\t\t: vrenderparams [-issd {on|off}=off] [-rebuildGlsl on|off]" - "\n\t\t: -issd Shows screen sampling distribution in ISS mode." - "\n\t\t: -rebuildGlsl Rebuild Ray-Tracing GLSL programs (for debugging)." - "\n\t\t: -brng Enables/disables blocked RNG (fast coherent PT).", - __FILE__, VRenderParams, group); - theCommands.Add("vstatprofiler", - "\n vstatprofiler [fps|cpu|allLayers|layers|allstructures|structures|groups" - "\n |allArrays|fillArrays|lineArrays|pointArrays|textArrays" - "\n |triangles|points|geomMem|textureMem|frameMem" - "\n |elapsedFrame|cpuFrameAverage|cpuPickingAverage|cpuCullingAverage|cpuDynAverage" - "\n |cpuFrameMax|cpuPickingMax|cpuCullingMax|cpuDynMax]" - "\n [-noredraw]" - "\n\t\t: Prints rendering statistics." - "\n\t\t: If there are some parameters - print corresponding statistic counters values," - "\n\t\t: else - print all performance counters set previously." - "\n\t\t: '-noredraw' Flag to avoid additional redraw call and use already collected values.\n", - __FILE__, VStatProfiler, group); - theCommands.Add ("vplace", - "vplace dx dy" - "\n\t\t: Places the point (in pixels) at the center of the window", - __FILE__, VPlace, group); - theCommands.Add("vxrotate", - "vxrotate", - __FILE__,VXRotate,group); + addCmd ("vclose", VClose, /* [vclose] */ R"( +vclose [view_id [keep_context=0|1]] +or vclose ALL - to remove all created views + - removes view(viewer window) defined by its view_id. + - keep_context: by default 0; if 1 and the last view is deleted the current context is not removed. +)" /* [vclose] */); - theCommands.Add("vmanipulator", - "\n vmanipulator Name [-attach AISObject | -detach | ...]" - "\n tool to create and manage AIS manipulators." - "\n Options: " - "\n '-attach AISObject' attach manipulator to AISObject" - "\n '-adjustPosition {0|center|location|shapeLocation}' adjust position when attaching" - "\n '-adjustSize {0|1}' adjust size when attaching" - "\n '-enableModes {0|1}' enable modes when attaching" - "\n '-view {active | [name of view]}' display manipulator only in defined view," - "\n by default it is displayed in all views of the current viewer" - "\n '-detach' detach manipulator" - "\n '-startTransform mouse_x mouse_y' - invoke start of transformation" - "\n '-transform mouse_x mouse_y' - invoke transformation" - "\n '-stopTransform [abort]' - invoke stop of transformation" - "\n '-move x y z' - move attached object" - "\n '-rotate x y z dx dy dz angle' - rotate attached object" - "\n '-scale factor' - scale attached object" - "\n '-autoActivate {0|1}' - set activation on detection" - "\n '-followTranslation {0|1}' - set following translation transform" - "\n '-followRotation {0|1}' - set following rotation transform" - "\n '-followDragging {0|1}' - set following dragging transform" - "\n '-gap value' - set gap between sub-parts" - "\n '-part axis mode {0|1}' - set visual part" - "\n '-parts axis mode {0|1}' - set visual part" - "\n '-pos x y z [nx ny nz [xx xy xz]' - set position of manipulator" - "\n '-size value' - set size of manipulator" - "\n '-zoomable {0|1}' - set zoom persistence", - __FILE__, VManipulator, group); + addCmd ("vactivate", VActivate, /* [vactivate] */ R"( +vactivate view_id [-noUpdate] +Activates view(viewer window) defined by its view_id. +)" /* [vactivate] */); - theCommands.Add("vselprops", - "\n vselprops [dynHighlight|localDynHighlight|selHighlight|localSelHighlight] [options]" - "\n Customizes selection and dynamic highlight parameters for the whole interactive context:" - "\n -autoActivate {0|1} : disables|enables default computation and activation of global selection mode" - "\n -autoHighlight {0|1} : disables|enables automatic highlighting in 3D Viewer" - "\n -highlightSelected {0|1}: disables|enables highlighting of detected object in selected state" - "\n -pickStrategy {first|topmost} : defines picking strategy" - "\n 'first' to pick first acceptable (default)" - "\n 'topmost' to pick only topmost (and nothing, if topmost is rejected by filters)" - "\n -pixTol value : sets up pixel tolerance" - "\n -depthTol {uniform|uniformpx} value : sets tolerance for sorting results by depth" - "\n -depthTol {sensfactor} : use sensitive factor for sorting results by depth" - "\n -preferClosest {0|1} : sets if depth should take precedence over priority while sorting results" - "\n -dispMode dispMode : sets display mode for highlighting" - "\n -layer ZLayer : sets ZLayer for highlighting" - "\n -color {name|r g b} : sets highlight color" - "\n -transp value : sets transparency coefficient for highlight" - "\n -material material : sets highlight material" - "\n -print : prints current state of all mentioned parameters", - __FILE__, VSelectionProperties, group); - theCommands.Add ("vhighlightselected", - "vhighlightselected [0|1]: alias for vselprops -highlightSelected.\n", - __FILE__, VSelectionProperties, group); + addCmd ("vviewlist", VViewList, /* [vviewlist] */ R"( +vviewlist [format={tree, long}]=tree +Prints current list of views per viewer and graphic_driver ID shared between viewers + - format: format of result output, if tree the output is a tree view; + otherwise it's a list of full view names. +)" /* [vviewlist] */); - theCommands.Add ("vseldump", - "vseldump file -type {depth|unnormDepth|object|owner|selMode|entity|entityType|surfNormal}=depth -pickedIndex Index=1" - "\n\t\t: [-xrPose base|head=base]" - "\n\t\t: Generate an image based on detection results:" - "\n\t\t: depth normalized depth values" - "\n\t\t: unnormDepth unnormalized depth values" - "\n\t\t: object color of detected object" - "\n\t\t: owner color of detected owner" - "\n\t\t: selMode color of selection mode" - "\n\t\t: entity color of detected entity" - "\n\t\t: entityType color of detected entity type" - "\n\t\t: surfNormal normal direction values", - __FILE__, VDumpSelectionImage, group); + addCmd ("vhelp", VHelp, /* [vhelp] */ R"( +vhelp : display help on the viewer commands and list of hotkeys. +)" /* [vhelp] */); - theCommands.Add ("vviewcube", - "vviewcube name" - "\n\t\t: Displays interactive view manipualtion object." - "\n\t\t: Options: " - "\n\t\t: -reset reset geomertical and visual attributes'" - "\n\t\t: -size Size adapted size of View Cube" - "\n\t\t: -boxSize Size box size" - "\n\t\t: -axes {0|1} show/hide axes (trihedron)" - "\n\t\t: -edges {0|1} show/hide edges of View Cube" - "\n\t\t: -vertices {0|1} show/hide vertices of View Cube" - "\n\t\t: -Yup {0|1} -Zup {0|1} set Y-up or Z-up view orientation" - "\n\t\t: -color Color color of View Cube" - "\n\t\t: -boxColor Color box color" - "\n\t\t: -boxSideColor Color box sides color" - "\n\t\t: -boxEdgeColor Color box edges color" - "\n\t\t: -boxCornerColor Color box corner color" - "\n\t\t: -textColor Color color of side text of view cube" - "\n\t\t: -innerColor Color inner box color" - "\n\t\t: -transparency Value transparency of object within [0, 1] range" - "\n\t\t: -boxTransparency Value transparency of box within [0, 1] range" - "\n\t\t: -xAxisTextColor Color color of X axis label" - "\n\t\t: -yAxisTextColor Color color of Y axis label" - "\n\t\t: -zAxisTextColor Color color of Z axis label" - "\n\t\t: -font Name font name" - "\n\t\t: -fontHeight Value font height" - "\n\t\t: -boxFacetExtension Value box facet extension" - "\n\t\t: -boxEdgeGap Value gap between box edges and box sides" - "\n\t\t: -boxEdgeMinSize Value minimal box edge size" - "\n\t\t: -boxCornerMinSize Value minimal box corner size" - "\n\t\t: -axesPadding Value padding between box and arrows" - "\n\t\t: -roundRadius Value relative radius of corners of sides within [0.0, 0.5] range" - "\n\t\t: -axesRadius Value radius of axes of the trihedron" - "\n\t\t: -axesConeRadius Value radius of the cone (arrow) of the trihedron" - "\n\t\t: -axesSphereRadius Value radius of the sphere (central point) of trihedron" - "\n\t\t: -fixedanimation {0|1} uninterruptible animation loop" - "\n\t\t: -duration Seconds animation duration in seconds", - __FILE__, VViewCube, group); + addCmd ("vviewproj", VViewProj, /* [vviewproj] */ R"( +vviewproj [top|bottom|left|right|front|back|axoLeft|axoRight] + [+-X+-Y+-Z] [-Zup|-Yup] [-frame +-X+-Y] +Setup view direction + -Yup use Y-up convention instead of Zup (which is default). + +-X+-Y+-Z define direction as combination of DX, DY and DZ; + for example '+Z' will show front of the model, + '-X-Y+Z' will define left axonometric view. + -frame define camera Up and Right directions (regardless Up convention); + for example '+X+Z' will show front of the model with Z-up. +)" /* [vviewproj] */); - theCommands.Add("vcolorconvert" , - "vcolorconvert {from|to} type C1 C2 C2" - "\n\t\t: vcolorconvert from type C1 C2 C2: Converts color from specified color space to linear RGB" - "\n\t\t: vcolorconvert to type R G B: Converts linear RGB color to specified color space" - "\n\t\t: type can be sRGB, HLS, Lab, or Lch", - __FILE__,VColorConvert,group); - theCommands.Add("vcolordiff" , - "vcolordiff R1 G1 B1 R2 G2 B2: returns CIEDE2000 color difference between two RGB colors", - __FILE__,VColorDiff,group); - theCommands.Add("vselbvhbuild", - "vselbvhbuild [{0|1}] [-nbThreads value] [-wait]" - "\n\t\t: Turns on/off prebuilding of BVH within background thread(s)" - "\n\t\t: -nbThreads number of threads, 1 by default; if < 1 then used (NbLogicalProcessors - 1)" - "\n\t\t: -wait waits for building all of BVH", - __FILE__,VSelBvhBuild,group); + addCmd ("vtop", VViewProj, /* [vtop] */ R"( +vtop or : Display top view (+X+Y) in the 3D viewer window. +)" /* [vtop] */); + + addCmd ("vbottom", VViewProj, /* [vbottom] */ R"( +vbottom : Display bottom view (+X-Y) in the 3D viewer window. +)" /* [vbottom] */); + + addCmd ("vleft", VViewProj, /* [vleft] */ R"( +vleft : Display left view (-Y+Z) in the 3D viewer window. +)" /* [vleft] */); + + addCmd ("vright", VViewProj, /* [vright] */ R"( +vright : Display right view (+Y+Z) in the 3D viewer window. +)" /* [vright] */); + + addCmd ("vaxo", VViewProj, /* [vaxo] */ R"( +vaxo or : Display axonometric view (+X-Y+Z) in the 3D viewer window. +)" /* [vaxo] */); + + addCmd ("vfront", VViewProj, /* [vfront] */ R"( +vfront : Display front view (+X+Z) in the 3D viewer window. +)" /* [vfront] */); + + addCmd ("vback", VViewProj, /* [vfront] */ R"( +vback : Display back view (-X+Z) in the 3D viewer window. +)" /* [vback] */); + + addCmd ("vpick", VPick, /* [vpick] */ R"( +vpick X Y Z [shape subshape] +)" /* [vpick] */); + + addCmd ("vfit", VFit, /* [vfit] */ R"( +vfit or [-selected] [-noupdate] +Fit all / selected. Objects in the view are visualized to occupy the maximum surface. +)" /* [vfit] */); + + addCmd ("vfitarea", VFitArea, /* [vfitarea] */ R"( +vfitarea [x1 y1 x2 y2] [x1 y1 z1 x2 y2 z2] +Fit view to show area located between two points +given in world 2D or 3D coordinates. +)" /* [vfitarea] */); + + addCmd ("vzfit", VZFit, /* [vzfit] */ R"( +vzfit [scale] +Automatic depth panning. +Matches Z near, Z far view volume planes to the displayed objects. + - "scale" specifies factor to scale computed z range. +)" /* [vzfit] */); + + addCmd ("vrepaint", VRepaint, /* [vrepaint] */ R"( +vrepaint [-immediate] [-continuous FPS] +Force redraw of active View. + -immediate flag performs redraw of immediate layers only; + -continuous activates/deactivates continuous redraw of active View, + 0 means no continuous rendering, + -1 means non-stop redraws, + >0 specifies target framerate. +)" /* [vrepaint] */); + + addCmd ("vclear", VClear, /* [vclear] */ R"( +vclear : Remove all the object from the viewer +)" /* [vclear] */); + + addCmd ("vbackground", VBackground, /* [vbackground] */ R"( +vbackground [-color Color [-default]] + [-gradient Color1 Color2 [-default] + [-gradientMode {NONE|HORIZONTAL|VERTICAL|DIAG1|DIAG2|CORNER1|CORNER2|CORNER3|ELLIPTICAL}]=VERT] + [-imageFile ImageFile [-imageMode {CENTERED|TILED|STRETCH|NONE}]=CENTERED [-srgb {0|1}]=1] + [-cubemap CubemapFile1 [CubeMapFiles2-5] [-order TilesIndexes1-6] [-invertedz]=0] + [-pbrEnv {ibl|noibl|keep}] +Changes background or some background settings. + -color sets background color + -gradient sets background gradient starting and ending colors + -gradientMode sets gradient fill method + -default sets background default gradient or color + -imageFile sets filename of image used as background + -imageMode sets image fill type + -cubemap sets environment cubemap as background + -invertedz sets inversion of Z axis for background cubemap rendering; FALSE when unspecified + -pbrEnv sets on/off Image Based Lighting (IBL) from background cubemap for PBR + -srgb prefer sRGB texture format when applicable; TRUE when unspecified" + -order defines order of tiles in one image cubemap + TileIndexi defubes an index in range [0, 5] for i tile of one image packed cubemap + (has no effect in case of multi-image cubemaps). +)" /* [vbackground] */); + + addCmd ("vsetbg", VBackground, /* [vsetbg] */ R"( +Alias for 'vbackground -imageFile ImageFile [-imageMode FillType]'. +)" /* [vsetbg] */); + + addCmd ("vsetbgmode", VBackground, /* [vsetbgmode] */ R"( +Alias for 'vbackground -imageMode FillType'. +)" /* [vsetbgmode] */); + + addCmd ("vsetgradientbg", VBackground, /* [vsetgradientbg] */ R"( +Alias for 'vbackground -gradient Color1 Color2 -gradientMode FillMethod'. +)" /* [vsetgradientbg] */); + + addCmd ("vsetgrbgmode", VBackground, /* [vsetgrbgmode] */ R"( +Alias for 'vbackground -gradientMode FillMethod'. +)" /* [vsetgrbgmode] */); + + addCmd ("vsetcolorbg", VBackground, /* [vsetcolorbg] */ R"( +Alias for 'vbackground -color Color'. +)" /* [vsetcolorbg] */); + + addCmd ("vsetdefaultbg", VBackground, /* [vsetdefaultbg] */ R"( +Alias for 'vbackground -default -gradient Color1 Color2 [-gradientMode FillMethod]' + and for 'vbackground -default -color Color'. +)" /* [vsetdefaultbg] */); + + addCmd ("vscale", VScale, /* [vscale] */ R"( +vscale X Y Z +)" /* [vscale] */); + + addCmd ("vzbufftrihedron", VZBuffTrihedron, /* [vzbufftrihedron] */ R"( +vzbufftrihedron [{-on|-off}=-on] [-type {wireframe|zbuffer}=zbuffer] + [-position center|left_lower|left_upper|right_lower|right_upper] + [-scale value=0.1] [-size value=0.8] [-arrowDiam value=0.05] + [-colorArrowX color=RED] [-colorArrowY color=GREEN] [-colorArrowZ color=BLUE] + [-nbfacets value=12] [-colorLabels color=WHITE] + [-colorLabelX color] [-colorLabelY color] [-colorLabelZ color] +Displays a trihedron. +)" /* [vzbufftrihedron] */); + + addCmd ("vrotate", VRotate, /* [vrotate] */ R"( +vrotate [[-mouseStart X Y] [-mouseMove X Y]]|[AX AY AZ [X Y Z]] + -mouseStart start rotation according to the mouse position; + -mouseMove continue rotation with angle computed + from last and new mouse position. +)" /* [vrotate] */); + + addCmd ("vzoom", VZoom, /* [vzoom] */ R"( +vzoom coef +)" /* [vzoom] */); + + addCmd ("vpan", VPan, /* [vpan] */ R"( +vpan dx dy +)" /* [vpan] */); + + addCmd ("vcolorscale", VColorScale, /* [vcolorscale] */ R"( +vcolorscale name [-noupdate|-update] [-demo] + [-range RangeMin=0 RangeMax=1 NbIntervals=10] + [-font HeightFont=20] + [-logarithmic {on|off}=off] [-reversed {on|off}=off] + [-smoothTransition {on|off}=off] + [-hueRange MinAngle=230 MaxAngle=0] + [-colorRange MinColor=BLUE1 MaxColor=RED] + [-textPos {left|right|center|none}=right] + [-labelAtBorder {on|off}=on] + [-colors Color1 Color2 ...] [-color Index Color] + [-labels Label1 Label2 ...] [-label Index Label] + [-freeLabels NbOfLabels Label1 Label2 ...] + [-xy Left=0 Bottom=0] + [-uniform lightness hue_from hue_to] + -demo display a color scale with demonstration values + -colors set colors for all intervals + -color set color for specific interval + -uniform generate colors with the same lightness + -textpos horizontal label position relative to color scale bar + -labelAtBorder vertical label position relative to color interval; + at border means the value inbetween neighbor intervals, + at center means the center value within current interval + -labels set labels for all intervals + -freeLabels same as -labels but does not require + matching the number of intervals + -label set label for specific interval + -title set title + -reversed setup smooth color transition between intervals + -smoothTransition swap colorscale direction + -hueRange set hue angles corresponding to minimum and maximum values +)" /* [vcolorscale] */); + + addCmd ("vgraduatedtrihedron", VGraduatedTrihedron, /* [vgraduatedtrihedron] */ R"( +vgraduatedtrihedron : -on/-off [-xname Name] [-yname Name] [-zname Name] [-arrowlength Value] + [-namefont Name] [-valuesfont Name] + [-xdrawname on/off] [-ydrawname on/off] [-zdrawname on/off] + [-xnameoffset IntVal] [-ynameoffset IntVal] [-znameoffset IntVal] + [-xnamecolor Color] [-ynamecolor Color] [-znamecolor Color] + [-xdrawvalues on/off] [-ydrawvalues on/off] [-zdrawvalues on/off] + [-xvaluesoffset IntVal] [-yvaluesoffset IntVal] [-zvaluesoffset IntVal] + [-xcolor Color] [-ycolor Color] [-zcolor Color] + [-xdrawticks on/off] [-ydrawticks on/off] [-zdrawticks on/off] + [-xticks Number] [-yticks Number] [-zticks Number] + [-xticklength IntVal] [-yticklength IntVal] [-zticklength IntVal] + [-drawgrid on/off] [-drawaxes on/off] +Display or erase graduated trihedron + - xname, yname, zname - names of axes, default: X, Y, Z + - namefont - font of axes names. Default: Arial + - xnameoffset, ynameoffset, znameoffset - offset of name + from values or tickmarks or axis. Default: 30 + - xnamecolor, ynamecolor, znamecolor - colors of axes names + - xvaluesoffset, yvaluesoffset, zvaluesoffset - offset of values + from tickmarks or axis. Default: 10 + - valuesfont - font of axes values. Default: Arial + - xcolor, ycolor, zcolor - color of axis and values + - xticks, yticks, xzicks - number of tickmark on axes. Default: 5 + - xticklength, yticklength, xzicklength - length of tickmark on axes. Default: 10 +)" /* [vgraduatedtrihedron] */); + + addCmd ("vtile", VTile, /* [vtile] */ R"( +vtile [-totalSize W H] [-lowerLeft X Y] [-upperLeft X Y] [-tileSize W H] +Setup view to draw a tile (a part of virtual bigger viewport). + -totalSize the size of virtual bigger viewport + -tileSize tile size (the view size will be used if omitted) + -lowerLeft tile offset as lower left corner + -upperLeft tile offset as upper left corner +)" /* [vtile] */); + + addCmd ("vzlayer", VZLayer, /* [vzlayer] */ R"( +vzlayer [layerId] + [-add|-delete|-get|-settings] [-insertBefore AnotherLayer] [-insertAfter AnotherLayer] + [-origin X Y Z] [-cullDist Distance] [-cullSize Size] + [-enable|-disable {depthTest|depthWrite|depthClear|depthoffset}] + [-enable|-disable {positiveOffset|negativeOffset|textureenv|rayTracing}] +ZLayer list management + -add add new z layer to viewer and print its id + -insertBefore add new z layer and insert it before existing one + -insertAfter add new z layer and insert it after existing one + -delete delete z layer + -get print sequence of z layers + -settings print status of z layer settings + -disable disables given setting + -enable enables given setting +)" /* [vzlayer] */); + + addCmd ("vlayerline", VLayerLine, /* [vlayerline] */ R"( +vlayerline x1 y1 x2 y2 [linewidth=0.5] [linetype=0] [transparency=1.0] +)" /* [vlayerline] */); + + addCmd ("vgrid", VGrid, /* [vgrid] */ R"( +vgrid [off] [-type {rect|circ}] [-mode {line|point}] [-origin X Y] [-rotAngle Angle] [-zoffset DZ] + [-step X Y] [-size DX DY] + [-step StepRadius NbDivisions] [-radius Radius] +)" /* [vgrid] */); + + addCmd ("vpriviledgedplane", VPriviledgedPlane, /* [vpriviledgedplane] */ R"( +vpriviledgedplane [Ox Oy Oz Nx Ny Nz [Xx Xy Xz]] +Sets or prints viewer's priviledged plane geometry: + Ox, Oy, Oz - plane origin; + Nx, Ny, Nz - plane normal direction; + Xx, Xy, Xz - plane x-reference axis direction. +)" /* [vpriviledgedplane] */); + + addCmd ("vconvert", VConvert, /* [vconvert] */ R"( +vconvert v [Mode={window|view}] +vconvert x y [Mode={window|view|grid|ray}] +vconvert x y z [Mode={window|grid}] +Convert the given coordinates to window/view/model space: + - window - convert to window coordinates, pixels; + - view - convert to view projection plane; + - grid - convert to model coordinates, given on grid; + - ray - convert projection ray to model coordinates. +)" /* [vconvert] */); + + addCmd ("vfps", VFps, /* [vfps] */ R"( +vfps [framesNb=100] [-duration seconds] : estimate average frame rate for active view. +)" /* [vfps] */); + + addCmd ("vstereo", VStereo, /* [vstereo] */ R"( +vstereo [0|1] [-mode Mode] [-reverse {0|1}] + [-mirrorComposer] [-hmdfov2d AngleDegrees] [-unitFactor MetersFactor] + [-anaglyph Filter] +Control stereo output mode. Available modes for -mode: + quadBuffer OpenGL QuadBuffer stereo; + requires driver support; + should be called BEFORE vinit! + anaglyph Anaglyph glasses, filters for -anaglyph: + redCyan, redCyanSimple, yellowBlue, yellowBlueSimple, greenMagentaSimple. + rowInterlaced row-interlaced display + columnInterlaced column-interlaced display + chessBoard chess-board output + sideBySide horizontal pair + overUnder vertical pair + openVR OpenVR (HMD), extra options: + -mirrorComposer flag to mirror VR frame in the window (debug); + -unitFactor specifies meters scale factor for mapping VR input. +)" /* [vstereo] */); + + addCmd ("vmemgpu", VMemGpu, /* [vmemgpu] */ R"( +vmemgpu [f]: print system-dependent GPU memory information if available; +with f option returns free memory in bytes. +)" /* [vmemgpu] */); + + addCmd ("vreadpixel", VReadPixel, /* [vreadpixel] */ R"( +vreadpixel xPixel yPixel [{rgb|rgba|sRGB|sRGBa|depth|hls|rgbf|rgbaf}=rgba] [-name|-hex] +Read pixel value for active view. +)" /* [vreadpixel] */); + + addCmd ("diffimage", VDiffImage, /* [diffimage] */ R"( +diffimage imageFile1 imageFile2 [diffImageFile] + [-toleranceOfColor {0..1}=0] [-blackWhite {on|off}=off] [-borderFilter {on|off}=off] + [-display viewName prsName1 prsName2 prsNameDiff] [-exitOnClose] [-closeOnEscape] +Compare two images by content and generate difference image. +When -exitOnClose is specified, closing the view will exit application. +When -closeOnEscape is specified, view will be closed on pressing Escape. +)" /* [diffimage] */); + + addCmd ("vselect", VSelect, /* [vselect] */ R"( +vselect x1 y1 [x2 y2 [x3 y3 ... xn yn]] [-allowoverlap 0|1] + [-replace|-replaceextra|-xor|-add|-remove] +Emulate different types of selection: + 1) Single click selection. + 2) Selection with rectangle having corners at pixel positions (x1,y1) and (x2,y2). + 3) Selection with polygon having corners in pixel positions (x1,y1), (x2,y2),...,(xn,yn). + 4) -allowoverlap manages overlap and inclusion detection in rectangular and polygonal selection. + If the flag is set to 1, both sensitives that were included completely + and overlapped partially by defined rectangle or polygon will be detected, + otherwise algorithm will chose only fully included sensitives. + Default behavior is to detect only full inclusion + (partial inclusion - overlap - is not allowed by default). + 5) Selection scheme replace, replaceextra, xor, add or remove (replace by default). +)" /* [vselect] */); + + addCmd ("vmoveto", VMoveTo, /* [vmoveto] */ R"( +vmoveto [x y] [-reset] +Emulate cursor movement to pixel position (x,y). + -reset resets current highlighting. +)" /* [vmoveto] */); + + addCmd ("vselaxis", VSelectByAxis, /* [vselaxis] */ R"( +vselaxis x y z dx dy dz [-onlyTop 0|1] [-display Name] [-showNormal 0|1]" +Provides intersection by given axis and print result intersection points. + -onlyTop switches On/Off mode to find only top point or all; + -display Name displays intersecting axis and result intersection points for debug goals; + -showNormal adds displaying of normal in intersection point or not. +)" /* [vselaxis] */); + + addCmd ("vviewparams", VViewParams, /* [vviewparams] */ R"( +vviewparams [-args] [-scale [s]] + [-eye [x y z]] [-at [x y z]] [-up [x y z]] + [-proj [x y z]] [-center x y] [-size sx] +Manage current view parameters (camera orientation) or prints all +current values when called without argument. + -scale [s] prints or sets viewport relative scale + -eye [x y z] prints or sets eye location + -at [x y z] prints or sets center of look + -up [x y z] prints or sets direction of up vector + -proj [x y z] prints or sets direction of look + -center x y sets location of center of the screen in pixels + -size [sx] prints viewport projection width and height sizes + or changes the size of its maximum dimension + -args prints vviewparams arguments for restoring current view +)" /* [vviewparams] */); + + addCmd ("v2dmode", V2DMode, /* [v2dmode] */ R"( +v2dmode [-name viewName] [-mode {-on|-off}=-on] + name - name of existing view, if not defined, the active view is changed; + mode - switches On/Off rotation mode. +Set 2D mode of the active viewer manipulating. The following mouse and key actions are disabled: + - rotation of the view by 3rd mouse button with Ctrl active + - set view projection using key buttons: A/D/T/B/L/R for AXO, Reset, Top, Bottom, Left, Right +View camera position might be changed only by commands. +)" /* [v2dmode] */); + + addCmd ("vanimation", VAnimation, /* [vanimation] */ R"( +Alias for vanim +)" /* [vanimation] */); + + addCmd ("vanim", VAnimation, /* [vanim] */ R"( +List existing animations: + vanim + +Animation playback: + vanim name {-play|-resume|-pause|-stop} [playFrom [playDuration]] + [-speed Coeff] [-freeLook] [-noPauseOnClick] [-lockLoop] + + -speed playback speed (1.0 is normal speed) + -freeLook skip camera animations + -noPauseOnClick do not pause animation on mouse click + -lockLoop disable any interactions + +Animation definition: + vanim Name/sub/name [-clear] [-delete] + [start TimeSec] [duration TimeSec] + +Animation name defined in path-style (anim/name or anim.name) +specifies nested animations. +There is no syntax to explicitly add new animation, +and all non-existing animations within the name will be +implicitly created on first use (including parents). + +Each animation might define the SINGLE action (see below), +like camera transition, object transformation or custom callback. +Child animations can be used for defining concurrent actions. + +Camera animation: + vanim name -view [-eye1 X Y Z] [-eye2 X Y Z] + [-at1 X Y Z] [-at2 X Y Z] + [-up1 X Y Z] [-up2 X Y Z] + [-scale1 Scale] [-scale2 Scale] + -eyeX camera Eye positions pair (start and end) + -atX camera Center positions pair + -upX camera Up directions pair + -scaleX camera Scale factors pair + +Object animation: + vanim name -object [-loc1 X Y Z] [-loc2 X Y Z] + [-rot1 QX QY QZ QW] [-rot2 QX QY QZ QW] + [-scale1 Scale] [-scale2 Scale] + -locX object Location points pair (translation) + -rotX object Orientations pair (quaternions) + -scaleX object Scale factors pair (quaternions) + +Custom callback: + vanim name -invoke "Command Arg1 Arg2 %Pts %LocalPts %Normalized ArgN" + + %Pts overall animation presentation timestamp + %LocalPts local animation timestamp + %Normalized local animation normalized value in range 0..1 + +Video recording: + vanim name -record FileName [Width Height] [-fps FrameRate=24] + [-format Format] [-vcodec Codec] [-pix_fmt PixelFormat] + [-crf Value] [-preset Preset] + -fps video framerate + -format file format, container (matroska, etc.) + -vcodec video codec identifier (ffv1, mjpeg, etc.) + -pix_fmt image pixel format (yuv420p, rgb24, etc.) + -crf constant rate factor (specific to codec) + -preset codec parameters preset (specific to codec) +)" /* [vanim] */); + + addCmd ("vchangeselected", VChangeSelected, /* [vchangeselected] */ R"( +vchangeselected shape : Add shape to selection or remove one from it. +)" /* [vchangeselected] */); + + addCmd ("vnbselected", VNbSelected, /* [vnbselected] */ R"( +vnbselected : Returns number of selected objects in the interactive context. +)" /* [vnbselected] */); + + addCmd ("vcamera", VCamera, /* [vcamera] */ R"( +vcamera [PrsName] [-ortho] [-projtype] + [-persp] + [-fovy [Angle]] [-distance [Distance]] + [-stereo] [-leftEye] [-rightEye] + [-iod [Distance]] [-iodType [absolute|relative]] + [-zfocus [Value]] [-zfocusType [absolute|relative]] + [-fov2d [Angle]] [-lockZup {0|1}] + [-rotationMode {active|pick|pickCenter|cameraAt|scene}] + [-navigationMode {orbit|walk|flight}] + [-xrPose base|head=base] +Manages camera parameters. +Displays frustum when presentation name PrsName is specified. +Prints current value when option called without argument. + +Orthographic camera: + -ortho activate orthographic projection. + +Perspective camera: + -persp activate perspective projection (mono); + -fovy field of view in y axis, in degrees; + -fov2d field of view limit for 2d on-screen elements; + -distance distance of eye from camera center; + -lockZup lock Z up (turntable mode); + -rotationMode rotation mode (gravity point); + -navigationMode navigation mode. + +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. +)" /* [vcamera] */); + + addCmd ("vautozfit", VAutoZFit, /* [vautozfit] */ R"( +vautozfit [on={1|0}] [scale] +Prints or changes parameters of automatic z-fit mode: + "on" - turns automatic z-fit on or off; + "scale" - specifies factor to scale computed z range. +)" /* [vautozfit] */); + + addCmd ("vzrange", VZRange, /* [vzrange] */ R"( +vzrange [znear] [zfar] +Applies provided znear/zfar to view or prints current values. +)" /* [vzrange] */); + + addCmd ("vsetviewsize", VSetViewSize, /* [vsetviewsize] */ R"( +vsetviewsize size +)" /* [vsetviewsize] */); + + addCmd ("vmoveview", VMoveView, /* [vmoveview] */ R"( +vmoveview Dx Dy Dz [Start = 1|0] +)" /* [vmoveview] */); + + addCmd ("vtranslateview", VTranslateView, /* [vtranslateview] */ R"( +vtranslateview Dx Dy Dz [Start = 1|0)] +)" /* [vtranslateview] */); + + addCmd ("vturnview", VTurnView, /* [vturnview] */ R"( +vturnview Ax Ay Az [Start = 1|0] +)" /* [vturnview] */); + + addCmd ("vtextureenv", VTextureEnv, /* [vtextureenv] */ R"( +vtextureenv {on|off} {image_file} + [{clamp|repeat} {decal|modulate} {nearest|bilinear|trilinear} ss st ts tt rot] +Enables or disables environment mapping in the 3D view, loading the texture from the given standard +or user-defined file and optionally applying texture mapping parameters. + ss, st - scale factors for s and t texture coordinates; + ts, tt - translation for s and t texture coordinates; + rot - texture rotation angle in degrees. +)" /* [vtextureenv] */); + + addCmd ("vhlr", VHLR, /* [vhlr] */ R"( +vhlr {on|off} [-showHidden={1|0}] [-algoType={algo|polyAlgo}] [-noupdate] +Hidden Line Removal algorithm. + -showHidden if set ON, hidden lines are drawn as dotted ones; + -algoType type of HLR algorithm: + 'algo' - exact HLR algorithm is applied; + 'polyAlgo' - polygonal HLR algorithm is applied. +)" /* [vhlr] */); + + addCmd ("vhlrtype", VHLRType, /* [vhlrtype] */ R"( +vhlrtype {algo|polyAlgo} [shape_1 ... shape_n] [-noupdate] +Changes the type of HLR algorithm using for shapes: + 'algo' - exact HLR algorithm is applied; + 'polyAlgo' - polygonal HLR algorithm is applied. +If shapes are not given - option is applied to all shapes in the view. +)" /* [vhlrtype] */); + + addCmd ("vclipplane", VClipPlane, /* [vclipplane] */ R"( +vclipplane planeName [{0|1}] + [-equation1 A B C D] + [-equation2 A B C D] + [-boxInterior MinX MinY MinZ MaxX MaxY MaxZ] + [-set|-unset|-setOverrideGlobal [objects|views]] + [-maxPlanes] + [-capping {0|1}] + [-color R G B] [-transparency Value] [-hatch {on|off|ID}] + [-texName Texture] [-texScale SX SY] [-texOrigin TX TY] + [-texRotate Angle] + [-useObjMaterial {0|1}] [-useObjTexture {0|1}] + [-useObjShader {0|1}] + +Clipping planes management: + -maxPlanes print plane limit for view; + -delete delete plane with given name; + {off|on|0|1} turn clipping on/off; + -set|-unset set/unset plane for Object or View list; + applied to active View when list is omitted; + -equation A B C D change plane equation; + -clone SourcePlane NewPlane clone the plane definition. + +Capping options: + -capping {off|on|0|1} turn capping on/off; + -color R G B set capping color; + -transparency Value set capping transparency 0..1; + -texName Texture set capping texture; + -texScale SX SY set capping tex scale; + -texOrigin TX TY set capping tex origin; + -texRotate Angle set capping tex rotation; + -hatch {on|off|ID} set capping hatching mask; + -useObjMaterial {off|on|0|1} use material of clipped object; + -useObjTexture {off|on|0|1} use texture of clipped object; + -useObjShader {off|on|0|1} use shader program of object. +)" /* [vclipplane] */); + + addCmd ("vdefaults", VDefaults, /* [vdefaults] */ R"( +vdefaults [-absDefl value] [-devCoeff value] [-angDefl value] + [-autoTriang {off/on | 0/1}] +)" /* [vdefaults] */); + + addCmd ("vlight", VLight, /* [vlight] */ R"( +vlight [lightName] [-noupdate] + [-clear|-defaults] [-layer Id] [-local|-global] [-disable|-enable] + [-type {ambient|directional|spotlight|positional}] [-name value] + [-position X Y Z] [-direction X Y Z] [-color colorName] [-intensity value] + [-headlight 0|1] [-castShadows 0|1] + [-range value] [-constAttenuation value] [-linearAttenuation value] + [-spotExponent value] [-spotAngle angleDeg] + [-smoothAngle value] [-smoothRadius value] + [-display] [-showName 1|0] [-showRange 1|0] [-prsZoomable 1|0] [-prsSize Value] + [-arcSize Value] + +Command manages light sources. Without arguments shows list of lights. +Arguments affecting the list of defined/active lights: + -clear remove all light sources; + -defaults defines two standard light sources; + -reset resets light source parameters to default values; + -type sets type of light source; + -name sets new name to light source; + -global assigns light source to all views (default state); + -local assigns light source to active view; + -zlayer assigns light source to specified Z-Layer. + +Ambient light parameters: + -color sets (normalized) light color; + -intensity sets intensity of light source, 1.0 by default; + affects also environment cubemap intensity. + +Point light parameters: + -color sets (normalized) light color; + -intensity sets PBR intensity; + -range sets clamping distance; + -constAtten (obsolete) sets constant attenuation factor; + -linearAtten (obsolete) sets linear attenuation factor; + -smoothRadius sets PBR smoothing radius. + +Directional light parameters: + -color sets (normalized) light color; + -intensity sets PBR intensity; + -direction sets direction; + -headlight sets headlight flag; + -castShadows enables/disables shadow casting; + -smoothAngle sets PBR smoothing angle (in degrees) within 0..90 range. + +Spot light parameters: + -color sets (normalized) light color; + -intensity sets PBR intensity; + -range sets clamping distance; + -position sets position; + -direction sets direction; + -spotAngle sets spotlight angle; + -spotExp sets spotlight exponenta; + -headlight sets headlight flag; + -constAtten (obsolete) sets constant attenuation factor; + -linearAtten (obsolete) sets linear attenuation factor. + +Light presentation parameters: + -display adds light source presentation; + -showName shows/hides the name of light source; 1 by default; + -showRange shows/hides the range of spot/positional light source; 1 by default; + -prsZoomable makes light presentation zoomable/non-zoomable; + -prsDraggable makes light presentation draggable/non-draggable; + -prsSize sets light presentation size; + -arcSize sets arc presentation size(in pixels) + for rotation directional light source; 25 by default. + +Examples: + vlight redlight -type POSITIONAL -headlight 1 -pos 0 1 1 -color RED + vlight redlight -delete +)" /* [vlight] */); + + addCmd ("vpbrenv", VPBREnvironment, /* [vpbrenv] */ R"( +vpbrenv -clear|-generate +Clears or generates PBR environment map of active view. + -clear clears PBR environment (fills by white color); + -generate generates PBR environment from current background cubemap. +)" /* [vpbrenv] */); + + addCmd ("vraytrace", VRenderParams, /* [vraytrace] */ R"( +vraytrace [0|1] : Turns on/off ray-tracing renderer. + 'vraytrace 0' alias for 'vrenderparams -raster'. + 'vraytrace 1' alias for 'vrenderparams -rayTrace'. +)" /* [vraytrace] */); + + addCmd ("vrenderparams", VRenderParams, /* [vrenderparams] */ R"( +Manages rendering parameters, affecting visual appearance, quality and performance. +Should be applied taking into account GPU hardware capabilities and performance. + +Common parameters: +vrenderparams [-raster] [-shadingModel {unlit|facet|gouraud|phong|pbr|pbr_facet}=gouraud] + [-msaa 0..8=0] [-rendScale scale=1] + [-resolution value=72] [-fontHinting {off|normal|light}=off] + [-fontAutoHinting {auto|force|disallow}=auto] + [-oit {off|weight|peel}] [-oit weighted [depthFactor=0.0]] [-oit peeling [nbLayers=4]] + [-shadows {on|off}=on] [-shadowMapResolution value=1024] [-shadowMapBias value=0.005] + [-depthPrePass {on|off}=off] [-alphaToCoverage {on|off}=on] + [-frustumCulling {on|off|noupdate}=on] [-lineFeather width=1.0] + [-sync {default|views}] [-reset] + -raster Disables GPU ray-tracing. + -shadingModel Controls shading model. + -msaa Specifies number of samples for MSAA. + -rendScale Rendering resolution scale factor (supersampling, alternative to MSAA). + -resolution Sets new pixels density (PPI) used as text scaling factor. + -fontHinting Enables/disables font hinting for better readability on low-resolution screens. + -fontAutoHinting Manages font autohinting. + -lineFeather Sets line feather factor while displaying mesh edges. + -alphaToCoverage Enables/disables alpha to coverage (needs MSAA). + -oit Enables/disables order-independent transparency (OIT) rendering; + off unordered transparency (but opaque objects implicitly draw first); + weighted weight OIT is managed by depth weight factor 0.0..1.0; + peeling depth peeling OIT is managed by number of peeling layers. + -shadows Enables/disables shadows rendering. + -shadowMapResolution Shadow texture map resolution. + -shadowMapBias Shadow map bias. + -depthPrePass Enables/disables depth pre-pass. + -frustumCulling Enables/disables objects frustum clipping or + sets state to check structures culled previously. + -sync Sets active View parameters as Viewer defaults / to other Views. + -reset Resets active View parameters to Viewer defaults. + +Diagnostic output (on-screen overlay): +vrenderparams [-perfCounters none|fps|cpu|layers|structures|groups|arrays|triangles|points + |gpuMem|frameTime|basic|extended|full|nofps|skipImmediate] + [-perfUpdateInterval nbSeconds=1] [-perfChart nbFrames=1] [-perfChartMax seconds=0.1] + -perfCounters Show/hide performance counters (flags can be combined). + -perfUpdateInterval Performance counters update interval. + -perfChart Show frame timers chart limited by specified number of frames. + -perfChartMax Maximum time in seconds with the chart. + +Ray-Tracing options: +vrenderparams [-rayTrace] [-rayDepth {0..10}=3] [-reflections {on|off}=off] + [-fsaa {on|off}=off] [-gleam {on|off}=off] [-env {on|off}=off] + [-gi {on|off}=off] [-brng {on|off}=off] + [-iss {on|off}=off] [-tileSize {1..4096}=32] [-nbTiles {64..1024}=256] + [-ignoreNormalMap {on|off}=off] [-twoSide {on|off}=off] + [-maxRad {value>0}=30.0] + [-aperture {value>=0}=0.0] [-focal {value>=0.0}=1.0] + [-exposure value=0.0] [-whitePoint value=1.0] [-toneMapping {disabled|filmic}=disabled] + -rayTrace Enables GPU ray-tracing. + -rayDepth Defines maximum ray-tracing depth. + -reflections Enables/disables specular reflections. + -fsaa Enables/disables adaptive anti-aliasing. + -gleam Enables/disables transparency shadow effects. + -gi Enables/disables global illumination effects (Path-Tracing). + -env Enables/disables environment map background. + -ignoreNormalMap Enables/disables normal map ignoring during path tracing. + -twoSide Enables/disables two-sided BSDF models (PT mode). + -iss Enables/disables adaptive screen sampling (PT mode). + -maxRad Value used for clamping radiance estimation (PT mode). + -tileSize Specifies size of screen tiles in ISS mode (32 by default). + -nbTiles Specifies number of screen tiles per Redraw in ISS mode (256 by default). + -aperture Aperture size of perspective camera for depth-of-field effect (0 disables DOF). + -focal Focal distance of perspective camera for depth-of-field effect. + -exposure Exposure value for tone mapping (0.0 value disables the effect). + -whitePoint White point value for filmic tone mapping. + -toneMapping Tone mapping mode (disabled, filmic). + +PBR environment baking parameters (advanced/debug): +vrenderparams [-pbrEnvPow2size {power>0}=9] [-pbrEnvSMLN {levels>1}=6] [-pbrEnvBP {0..1}=0.99] + [-pbrEnvBDSN {samples>0}=1024] [-pbrEnvBSSN {samples>0}=256] + -pbrEnvPow2size Controls size of IBL maps (real size can be calculates as 2^pbrenvpow2size). + -pbrEnvSMLN Controls number of mipmap levels used in specular IBL map. + -pbrEnvBDSN Controls number of samples in Monte-Carlo integration during + diffuse IBL map's sherical harmonics calculation. + -pbrEnvBSSN Controls maximum number of samples per mipmap level + in Monte-Carlo integration during specular IBL maps generation. + -pbrEnvBP Controls strength of samples number reducing + during specular IBL maps generation (1 disables reducing). + +Debug options: +vrenderparams [-issd {on|off}=off] [-rebuildGlsl on|off] + -issd Shows screen sampling distribution in ISS mode. + -rebuildGlsl Rebuild Ray-Tracing GLSL programs (for debugging). + -brng Enables/disables blocked RNG (fast coherent PT). +)" /* [vrenderparams] */); + + addCmd ("vstatprofiler", VStatProfiler, /* [vstatprofiler] */ R"( +vstatprofiler [fps|cpu|allLayers|layers|allstructures|structures|groups + |allArrays|fillArrays|lineArrays|pointArrays|textArrays + |triangles|points|geomMem|textureMem|frameMem + |elapsedFrame|cpuFrameAverage|cpuPickingAverage|cpuCullingAverage|cpuDynAverage + |cpuFrameMax|cpuPickingMax|cpuCullingMax|cpuDynMax] + [-noredraw] +Prints rendering statistics for specified counters or for all when unspecified. +Set '-noredraw' flag to avoid additional redraw call and use already collected values. +)" /* [vstatprofiler] */); + + addCmd ("vplace", VPlace, /* [vplace] */ R"( +vplace dx dy : Places the point (in pixels) at the center of the window +)" /* [vplace] */); + + addCmd ("vxrotate", VXRotate, /* [vxrotate] */ R"( +vxrotate +)" /* [vxrotate] */); + + addCmd ("vmanipulator", VManipulator, /* [vmanipulator] */ R"( +vmanipulator Name [-attach AISObject | -detach | ...] +Tool to create and manage AIS manipulators. +Options: + '-attach AISObject' attach manipulator to AISObject + '-adjustPosition {0|center|location|shapeLocation}' adjust position when attaching + '-adjustSize {0|1}' adjust size when attaching + '-enableModes {0|1}' enable modes when attaching + '-view {active | [name of view]}' display manipulator only in defined view, + by default it is displayed in all views of the current viewer + '-detach' detach manipulator + '-startTransform mouse_x mouse_y' - invoke start of transformation + '-transform mouse_x mouse_y' - invoke transformation + '-stopTransform [abort]' - invoke stop of transformation + '-move x y z' - move attached object + '-rotate x y z dx dy dz angle' - rotate attached object + '-scale factor' - scale attached object + '-autoActivate {0|1}' - set activation on detection + '-followTranslation {0|1}' - set following translation transform + '-followRotation {0|1}' - set following rotation transform + '-followDragging {0|1}' - set following dragging transform + '-gap value' - set gap between sub-parts + '-part axis mode {0|1}' - set visual part + '-parts axis mode {0|1}' - set visual part + '-pos x y z [nx ny nz [xx xy xz]' - set position of manipulator + '-size value' - set size of manipulator + '-zoomable {0|1}' - set zoom persistence +)" /* [vmanipulator] */); + + addCmd ("vselprops", VSelectionProperties, /* [vselprops] */ R"( +vselprops [dynHighlight|localDynHighlight|selHighlight|localSelHighlight] [options] +Customizes selection and dynamic highlight parameters for the whole interactive context: + -autoActivate {0|1} disables|enables default computation + and activation of global selection mode + -autoHighlight {0|1} disables|enables automatic highlighting in 3D Viewer + -highlightSelected {0|1} disables|enables highlighting of detected object in selected state + -pickStrategy {first|topmost} : defines picking strategy + 'first' to pick first acceptable (default) + 'topmost' to pick only topmost (and nothing, if topmost is rejected by filters) + -pixTol value sets up pixel tolerance + -depthTol {uniform|uniformpx} value : sets tolerance for sorting results by depth + -depthTol {sensfactor} use sensitive factor for sorting results by depth + -preferClosest {0|1} sets if depth should take precedence over priority while sorting results + -dispMode dispMode sets display mode for highlighting + -layer ZLayer sets ZLayer for highlighting + -color {name|r g b} sets highlight color + -transp value sets transparency coefficient for highlight + -material material sets highlight material + -print prints current state of all mentioned parameters +)" /* [vselprops] */); + + addCmd ("vhighlightselected", VSelectionProperties, /* [vhighlightselected] */ R"( +vhighlightselected [0|1] : alias for vselprops -highlightSelected. +)" /* [vhighlightselected] */); + + addCmd ("vseldump", VDumpSelectionImage, /* [vseldump] */ R"( +vseldump file -type {depth|unnormDepth|object|owner|selMode|entity|entityType|surfNormal}=depth + -pickedIndex Index=1 + [-xrPose base|head=base] +Generate an image based on detection results: + depth normalized depth values + unnormDepth unnormalized depth values + object color of detected object + owner color of detected owner + selMode color of selection mode + entity color of detected entity + entityType color of detected entity type + surfNormal normal direction values +)" /* [vseldump] */); + + addCmd ("vviewcube", VViewCube, /* [vviewcube] */ R"( +vviewcube name +Displays interactive view manipulation object. Options: + -reset reset geometric and visual attributes + -size Size adapted size of View Cube + -boxSize Size box size + -axes {0|1} show/hide axes (trihedron) + -edges {0|1} show/hide edges of View Cube + -vertices {0|1} show/hide vertices of View Cube + -Yup {0|1} -Zup {0|1} set Y-up or Z-up view orientation + -color Color color of View Cube + -boxColor Color box color + -boxSideColor Color box sides color + -boxEdgeColor Color box edges color + -boxCornerColor Color box corner color + -textColor Color color of side text of view cube + -innerColor Color inner box color + -transparency Value transparency of object within [0, 1] range + -boxTransparency Value transparency of box within [0, 1] range + -xAxisTextColor Color color of X axis label + -yAxisTextColor Color color of Y axis label + -zAxisTextColor Color color of Z axis label + -font Name font name + -fontHeight Value font height + -boxFacetExtension Value box facet extension + -boxEdgeGap Value gap between box edges and box sides + -boxEdgeMinSize Value minimal box edge size + -boxCornerMinSize Value minimal box corner size + -axesPadding Value padding between box and arrows + -roundRadius Value relative radius of corners of sides within [0.0, 0.5] range + -axesRadius Value radius of axes of the trihedron + -axesConeRadius Value radius of the cone (arrow) of the trihedron + -axesSphereRadius Value radius of the sphere (central point) of trihedron + -fixedAnimation {0|1} uninterruptible animation loop + -duration Seconds animation duration in seconds +)" /* [vviewcube] */); + + addCmd ("vcolorconvert", VColorConvert, /* [vcolorconvert] */ R"( +vcolorconvert {from|to} type C1 C2 C2 +vcolorconvert from type C1 C2 C2 : Converts color from specified color space to linear RGB +vcolorconvert to type R G B : Converts linear RGB color to specified color space +Type can be sRGB, HLS, Lab, or Lch. +)" /* [vcolorconvert] */); + + addCmd ("vcolordiff", VColorDiff, /* [vcolordiff] */ R"( +vcolordiff R1 G1 B1 R2 G2 B2 : returns CIEDE2000 color difference between two RGB colors. +)" /* [vcolordiff] */); + + addCmd ("vselbvhbuild", VSelBvhBuild, /* [vselbvhbuild] */ R"( +vselbvhbuild [{0|1}] [-nbThreads value] [-wait] +Turns on/off prebuilding of BVH within background thread(s). + -nbThreads number of threads, 1 by default; if < 1 then used (NbLogicalProcessors - 1); + -wait waits for building all of BVH. +)" /* [vselbvhbuild] */); }