mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0033016: Documentation - Draw Harness User Guide mentions removed commands 'meshdispmode'
Updated description of MeshVS commands in User's Guide.
This commit is contained in:
parent
fb30026cf1
commit
88ff1a3834
@ -2044,14 +2044,14 @@ Creates a *MeshVS_Mesh* object based on STL file data. The object will be displa
|
|||||||
meshfromstl mesh myfile.stl
|
meshfromstl mesh myfile.stl
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
@subsubsection occt_draw_4_5_2 meshdispmode
|
@subsubsection occt_draw_4_5_2 vsetdispmode
|
||||||
|
|
||||||
Syntax:
|
Syntax:
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
meshdispmode meshname displaymode
|
vsetdispmode meshname displaymode
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Changes the display mode of object **meshname**. The **displaymode** is integer, which can be:
|
Changes the display mode of object **meshname**. The **displaymode** is integer (`MeshVS_DisplayModeFlags`), which can be:
|
||||||
* *1* for *wireframe*,
|
* *1* for *wireframe*,
|
||||||
* *2* for *shading* mode, or
|
* *2* for *shading* mode, or
|
||||||
* *3* for *shrink* mode.
|
* *3* for *shrink* mode.
|
||||||
@ -2060,27 +2060,31 @@ Changes the display mode of object **meshname**. The **displaymode** is integer,
|
|||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
vinit
|
vinit
|
||||||
meshfromstl mesh myfile.stl
|
meshfromstl mesh myfile.stl
|
||||||
meshdispmode mesh 2
|
vsetdispmode mesh 2
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
@subsubsection occt_draw_4_5_3 meshselmode
|
@subsubsection occt_draw_4_5_3 vselmode
|
||||||
|
|
||||||
Syntax:
|
Syntax:
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
meshselmode meshname selectionmode
|
vselmode meshname selectionmode {on|off}
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Changes the selection mode of object **meshname**. The *selectionmode* is integer OR-combination of mode flags. The basic flags are the following:
|
Changes the selection mode of object **meshname**.
|
||||||
|
The *selectionmode* is integer OR-combination of mode flags (`MeshVS_SelectionModeFlags`). The basic flags are the following:
|
||||||
|
* *0* -- selection of mesh as whole;
|
||||||
* *1* -- node selection;
|
* *1* -- node selection;
|
||||||
* *2* -- 0D elements (not supported in STL);
|
* *2* -- 0D elements (not supported in STL);
|
||||||
* *4* -- links (not supported in STL);
|
* *4* -- links (not supported in STL);
|
||||||
* *8* -- faces.
|
* *8* -- faces;
|
||||||
|
* *16* -- volumes (not supported in STL);
|
||||||
|
* *256* -- groups (not supported in STL).
|
||||||
|
|
||||||
**Example:**
|
**Example:**
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
vinit
|
vinit
|
||||||
meshfromstl mesh myfile.stl
|
meshfromstl mesh myfile.stl
|
||||||
meshselmode mesh 1
|
vselmode mesh 1
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
@subsubsection occt_draw_4_5_4 meshshadcolor
|
@subsubsection occt_draw_4_5_4 meshshadcolor
|
||||||
@ -2119,39 +2123,37 @@ meshlinkcolormode mesh 0.5 0.5 0.5
|
|||||||
|
|
||||||
Syntax:
|
Syntax:
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
meshmat meshname material
|
meshmat meshname material [transparency]
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Changes the material of object **meshname**.
|
Changes the material of object **meshname**.
|
||||||
|
|
||||||
*material* is represented with an integer value as follows (equivalent to enumeration *Graphic3d_NameOfMaterial*):
|
*material* is represented with an integer value as follows (equivalent to enumeration *Graphic3d_NameOfMaterial*):
|
||||||
* *0 -- BRASS,*
|
* *0 -- BRASS*,
|
||||||
* *1 -- BRONZE,*
|
* *1 -- BRONZE*,
|
||||||
* *2 -- COPPER,*
|
* *2 -- COPPER*,
|
||||||
* *3 -- GOLD,*
|
* *3 -- GOLD*,
|
||||||
* *4 -- PEWTER,*
|
* *4 -- PEWTER*,
|
||||||
* *5 -- PLASTER,*
|
* *5 -- PLASTER*,
|
||||||
* *6 -- PLASTIC,*
|
* *6 -- PLASTIC*,
|
||||||
* *7 -- SILVER,*
|
* *7 -- SILVER*,
|
||||||
* *8 -- STEEL,*
|
* *8 -- STEEL*,
|
||||||
* *9 -- STONE,*
|
* *9 -- STONE*,
|
||||||
* *10 -- SHINY_PLASTIC,*
|
* *10 -- SHINY_PLASTIC*,
|
||||||
* *11 -- SATIN,*
|
* *11 -- SATIN*,
|
||||||
* *12 -- METALIZED,*
|
* *12 -- METALIZED*,
|
||||||
* *13 -- NEON_GNC,*
|
* *13 -- NEON_GNC*,
|
||||||
* *14 -- CHROME,*
|
* *14 -- CHROME*,
|
||||||
* *15 -- ALUMINIUM,*
|
* *15 -- ALUMINIUM*,
|
||||||
* *16 -- OBSIDIAN,*
|
* *16 -- OBSIDIAN*,
|
||||||
* *17 -- NEON_PHC,*
|
* *17 -- NEON_PHC*,
|
||||||
* *18 -- JADE,*
|
* *18 -- JADE*.
|
||||||
* *19 -- DEFAULT,*
|
|
||||||
* *20 -- UserDefined*
|
|
||||||
|
|
||||||
**Example:**
|
**Example:**
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
vinit
|
vinit
|
||||||
meshfromstl mesh myfile.stl
|
meshfromstl mesh myfile.stl
|
||||||
meshmat mesh JADE
|
meshmat mesh 18
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
@subsubsection occt_draw_4_5_7 meshshrcoef
|
@subsubsection occt_draw_4_5_7 meshshrcoef
|
||||||
@ -2161,7 +2163,9 @@ Syntax:
|
|||||||
meshshrcoef meshname shrinkcoefficient
|
meshshrcoef meshname shrinkcoefficient
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Changes the value of shrink coefficient used in the shrink mode. In the shrink mode the face is shown as a congruent part of a usual face, so that *shrinkcoefficient* controls the value of this part. The *shrinkcoefficient* is a positive real number.
|
Changes the value of shrink coefficient used in the shrink mode.
|
||||||
|
In the shrink mode the face is shown as a congruent part of a usual face, so that *shrinkcoefficient* controls the value of this part.
|
||||||
|
The *shrinkcoefficient* is a positive real number.
|
||||||
|
|
||||||
**Example:**
|
**Example:**
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
@ -2178,6 +2182,7 @@ meshshow meshname
|
|||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Displays **meshname** in the viewer (if it is erased).
|
Displays **meshname** in the viewer (if it is erased).
|
||||||
|
The same as calling `vdisplay`.
|
||||||
|
|
||||||
**Example:**
|
**Example:**
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
@ -2194,6 +2199,7 @@ meshhide meshname
|
|||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Hides **meshname** in the viewer.
|
Hides **meshname** in the viewer.
|
||||||
|
The same as calling `verase`.
|
||||||
|
|
||||||
**Example:**
|
**Example:**
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
@ -2229,11 +2235,11 @@ meshshowall meshname
|
|||||||
|
|
||||||
Changes the state of all entities to visible for **meshname**.
|
Changes the state of all entities to visible for **meshname**.
|
||||||
|
|
||||||
@subsubsection occt_draw_4_5_13 meshdelete
|
@subsubsection occt_draw_4_5_13 vremove
|
||||||
|
|
||||||
Syntax:
|
Syntax:
|
||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
meshdelete meshname
|
vremove meshname
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Deletes MeshVS_Mesh object **meshname**.
|
Deletes MeshVS_Mesh object **meshname**.
|
||||||
@ -2242,7 +2248,7 @@ Deletes MeshVS_Mesh object **meshname**.
|
|||||||
~~~~{.php}
|
~~~~{.php}
|
||||||
vinit
|
vinit
|
||||||
meshfromstl mesh myfile.stl
|
meshfromstl mesh myfile.stl
|
||||||
meshdelete mesh
|
vremove mesh
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
@subsection occt_draw_4_6 VIS Viewer commands
|
@subsection occt_draw_4_6 VIS Viewer commands
|
||||||
|
Loading…
x
Reference in New Issue
Block a user