mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
STL Reader and Writer tools have been refactored to improve performance and usability: - Basic reading of STL file is separated to abstract class RWStl_Reader which is not bound to particular data structures; the target data model can be bound via inheritance. - RWStl package uses class Poly_Triangulation to represent triangular mesh. - Obsolete data structures and tools (packages StlMesh and StlTransfer) are removed.
1291 lines
41 KiB
C++
1291 lines
41 KiB
C++
// Created on: 2000-05-30
|
|
// Created by: Sergey MOZOKHIN
|
|
// Copyright (c) 2000-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <AIS_InteractiveContext.hxx>
|
|
#include <Aspect_TypeOfMarker.hxx>
|
|
#include <Bnd_Box.hxx>
|
|
#include <BRep_Builder.hxx>
|
|
#include <DBRep.hxx>
|
|
#include <Draw.hxx>
|
|
#include <Draw_Interpretor.hxx>
|
|
#include <Draw_PluginMacro.hxx>
|
|
#include <Draw_ProgressIndicator.hxx>
|
|
#include <Graphic3d_MaterialAspect.hxx>
|
|
#include <MeshVS_DataMapOfIntegerAsciiString.hxx>
|
|
#include <MeshVS_DeformedDataSource.hxx>
|
|
#include <MeshVS_Drawer.hxx>
|
|
#include <MeshVS_DrawerAttribute.hxx>
|
|
#include <MeshVS_ElementalColorPrsBuilder.hxx>
|
|
#include <MeshVS_Mesh.hxx>
|
|
#include <MeshVS_MeshEntityOwner.hxx>
|
|
#include <MeshVS_MeshPrsBuilder.hxx>
|
|
#include <MeshVS_NodalColorPrsBuilder.hxx>
|
|
#include <MeshVS_PrsBuilder.hxx>
|
|
#include <MeshVS_TextPrsBuilder.hxx>
|
|
#include <MeshVS_VectorPrsBuilder.hxx>
|
|
#include <OSD_Path.hxx>
|
|
#include <Quantity_Color.hxx>
|
|
#include <Quantity_HArray1OfColor.hxx>
|
|
#include <Quantity_NameOfColor.hxx>
|
|
#include <RWStl.hxx>
|
|
#include <SelectMgr_SelectionManager.hxx>
|
|
#include <Standard_ErrorHandler.hxx>
|
|
#include <StdSelect_ViewerSelector3d.hxx>
|
|
#include <StlAPI.hxx>
|
|
#include <StlAPI_Writer.hxx>
|
|
#include <TColgp_SequenceOfXYZ.hxx>
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
#include <TColStd_HPackedMapOfInteger.hxx>
|
|
#include <TColStd_MapIteratorOfPackedMapOfInteger.hxx>
|
|
#include <TopoDS_Face.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <V3d_View.hxx>
|
|
#include <ViewerTest.hxx>
|
|
#include <VrmlAPI.hxx>
|
|
#include <VrmlAPI_Writer.hxx>
|
|
#include <VrmlData_DataMapOfShapeAppearance.hxx>
|
|
#include <VrmlData_Scene.hxx>
|
|
#include <VrmlData_ShapeConvert.hxx>
|
|
#include <XSDRAW.hxx>
|
|
#include <XSDRAWIGES.hxx>
|
|
#include <XSDRAWSTEP.hxx>
|
|
#include <XSDRAWSTLVRML.hxx>
|
|
#include <XSDRAWSTLVRML_DataSource.hxx>
|
|
#include <XSDRAWSTLVRML_DataSource3D.hxx>
|
|
#include <XSDRAWSTLVRML_DrawableMesh.hxx>
|
|
|
|
#ifndef _STDIO_H
|
|
#include <stdio.h>
|
|
#endif
|
|
|
|
extern Standard_Boolean VDisplayAISObject (const TCollection_AsciiString& theName,
|
|
const Handle(AIS_InteractiveObject)& theAISObj,
|
|
Standard_Boolean theReplaceIfExists = Standard_True);
|
|
|
|
static Standard_Integer writestl
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv)
|
|
{
|
|
if (argc < 3 || argc > 4) {
|
|
di << "Use: " << argv[0]
|
|
<< " shape file [ascii/binary (0/1) : 1 by default]\n";
|
|
} else {
|
|
TopoDS_Shape aShape = DBRep::Get(argv[1]);
|
|
Standard_Boolean isASCIIMode = Standard_False;
|
|
if (argc == 4) {
|
|
isASCIIMode = (Draw::Atoi(argv[3]) == 0);
|
|
}
|
|
StlAPI_Writer aWriter;
|
|
aWriter.ASCIIMode() = isASCIIMode;
|
|
Standard_Boolean isOK = aWriter.Write (aShape, argv[2]);
|
|
if (!isOK)
|
|
di << "** Error **: Mesh writing has been failed.\n";
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
//=============================================================================
|
|
//function : readstl
|
|
//purpose : Reads stl file
|
|
//=============================================================================
|
|
static Standard_Integer readstl(Draw_Interpretor& theDI,
|
|
Standard_Integer theArgc,
|
|
const char** theArgv)
|
|
{
|
|
if (theArgc < 3)
|
|
{
|
|
theDI << "wrong number of parameters" << "\n";
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
if (theArgc == 4 &&
|
|
strcmp("triangulation", theArgv[3]) == 0)
|
|
{
|
|
// Read STL file to the triangulation.
|
|
Handle(Poly_Triangulation) aTriangulation = RWStl::ReadFile (theArgv[2]);
|
|
|
|
TopoDS_Face aFace;
|
|
BRep_Builder aB;
|
|
aB.MakeFace(aFace);
|
|
aB.UpdateFace(aFace, aTriangulation);
|
|
DBRep::Set(theArgv[1], aFace);
|
|
}
|
|
else
|
|
{
|
|
TopoDS_Shape aShape;
|
|
Standard_DISABLE_DEPRECATION_WARNINGS
|
|
StlAPI::Read(aShape, theArgv[2]);
|
|
Standard_ENABLE_DEPRECATION_WARNINGS
|
|
DBRep::Set(theArgv[1], aShape);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static Standard_Integer writevrml
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv)
|
|
{
|
|
if (argc < 3 || argc > 5)
|
|
{
|
|
di << "wrong number of parameters\n";
|
|
return 0;
|
|
}
|
|
|
|
TopoDS_Shape aShape = DBRep::Get(argv[1]);
|
|
|
|
// Get the optional parameters
|
|
Standard_Integer aVersion = 2;
|
|
Standard_Integer aType = 1;
|
|
if (argc >= 4)
|
|
{
|
|
aVersion = Draw::Atoi(argv[3]);
|
|
if (argc == 5)
|
|
aType = Draw::Atoi(argv[4]);
|
|
}
|
|
|
|
// Bound parameters
|
|
aVersion = Max(1, aVersion);
|
|
aVersion = Min(2, aVersion);
|
|
aType = Max(0, aType);
|
|
aType = Min(2, aType);
|
|
|
|
VrmlAPI_Writer writer;
|
|
|
|
switch (aType)
|
|
{
|
|
case 0: writer.SetRepresentation(VrmlAPI_ShadedRepresentation); break;
|
|
case 1: writer.SetRepresentation(VrmlAPI_WireFrameRepresentation); break;
|
|
case 2: writer.SetRepresentation(VrmlAPI_BothRepresentation); break;
|
|
}
|
|
|
|
writer.Write(aShape, argv[2], aVersion);
|
|
|
|
return 0;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : loadvrml
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
static Standard_Integer loadvrml
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv)
|
|
{
|
|
if (argc<3) di << "wrong number of parameters" << "\n";
|
|
else {
|
|
TopoDS_Shape aShape ;
|
|
VrmlData_DataMapOfShapeAppearance aShapeAppMap;
|
|
|
|
//-----------------------------------------------------------
|
|
filebuf aFic;
|
|
istream aStream (&aFic);
|
|
|
|
if (aFic.open(argv[2], ios::in)) {
|
|
|
|
// Get path of the VRML file.
|
|
OSD_Path aPath(argv[2]);
|
|
TCollection_AsciiString aVrmlDir(".");
|
|
TCollection_AsciiString aDisk = aPath.Disk();
|
|
TCollection_AsciiString aTrek = aPath.Trek();
|
|
if (!aTrek.IsEmpty())
|
|
{
|
|
if (!aDisk.IsEmpty())
|
|
aVrmlDir = aDisk;
|
|
else
|
|
aVrmlDir.Clear();
|
|
aTrek.ChangeAll('|', '/');
|
|
aVrmlDir += aTrek;
|
|
}
|
|
|
|
VrmlData_Scene aScene;
|
|
|
|
aScene.SetVrmlDir (aVrmlDir);
|
|
aScene << aStream;
|
|
const char * aStr = 0L;
|
|
switch (aScene.Status()) {
|
|
|
|
case VrmlData_StatusOK:
|
|
{
|
|
aShape = aScene.GetShape(aShapeAppMap);
|
|
break;
|
|
}
|
|
case VrmlData_EmptyData: aStr = "EmptyData"; break;
|
|
case VrmlData_UnrecoverableError: aStr = "UnrecoverableError"; break;
|
|
case VrmlData_GeneralError: aStr = "GeneralError"; break;
|
|
case VrmlData_EndOfFile: aStr = "EndOfFile"; break;
|
|
case VrmlData_NotVrmlFile: aStr = "NotVrmlFile"; break;
|
|
case VrmlData_CannotOpenFile: aStr = "CannotOpenFile"; break;
|
|
case VrmlData_VrmlFormatError: aStr = "VrmlFormatError"; break;
|
|
case VrmlData_NumericInputError: aStr = "NumericInputError"; break;
|
|
case VrmlData_IrrelevantNumber: aStr = "IrrelevantNumber"; break;
|
|
case VrmlData_BooleanInputError: aStr = "BooleanInputError"; break;
|
|
case VrmlData_StringInputError: aStr = "StringInputError"; break;
|
|
case VrmlData_NodeNameUnknown: aStr = "NodeNameUnknown"; break;
|
|
case VrmlData_NonPositiveSize: aStr = "NonPositiveSize"; break;
|
|
case VrmlData_ReadUnknownNode: aStr = "ReadUnknownNode"; break;
|
|
case VrmlData_NonSupportedFeature: aStr = "NonSupportedFeature"; break;
|
|
case VrmlData_OutputStreamUndefined:aStr = "OutputStreamUndefined"; break;
|
|
case VrmlData_NotImplemented: aStr = "NotImplemented"; break;
|
|
default:
|
|
break;
|
|
}
|
|
if (aStr) {
|
|
di << " ++ VRML Error: " << aStr << " in line "
|
|
<< aScene.GetLineError() << "\n";
|
|
}
|
|
else {
|
|
DBRep::Set(argv[1],aShape);
|
|
}
|
|
}
|
|
else {
|
|
di << "cannot open file\n";
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer createmesh
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<3)
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use: " << argv[0] << " <mesh name> <stl file>\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(AIS_InteractiveContext) aContext = ViewerTest::GetAISContext();
|
|
if (aContext.IsNull())
|
|
{
|
|
di << "No active view. Please call 'vinit' first\n";
|
|
return 0;
|
|
}
|
|
|
|
// Progress indicator
|
|
OSD_Path aFile( argv[2] );
|
|
Handle(Draw_ProgressIndicator) aProgress = new Draw_ProgressIndicator (di, 1);
|
|
Handle(Poly_Triangulation) aSTLMesh = RWStl::ReadFile (aFile, aProgress);
|
|
|
|
di << "Reading OK...\n";
|
|
Handle( XSDRAWSTLVRML_DataSource ) aDS = new XSDRAWSTLVRML_DataSource( aSTLMesh );
|
|
di << "Data source is created successful\n";
|
|
Handle( MeshVS_Mesh ) aMesh = new MeshVS_Mesh();
|
|
di << "MeshVS_Mesh is created successful\n";
|
|
|
|
aMesh->SetDataSource( aDS );
|
|
aMesh->AddBuilder( new MeshVS_MeshPrsBuilder( aMesh.operator->() ), Standard_True );
|
|
|
|
aMesh->GetDrawer()->SetColor( MeshVS_DA_EdgeColor, Quantity_NOC_YELLOW );
|
|
|
|
// Hide all nodes by default
|
|
Handle(TColStd_HPackedMapOfInteger) aNodes = new TColStd_HPackedMapOfInteger();
|
|
Standard_Integer aLen = aSTLMesh->Nodes().Length();
|
|
for ( Standard_Integer anIndex = 1; anIndex <= aLen; anIndex++ )
|
|
aNodes->ChangeMap().Add( anIndex );
|
|
aMesh->SetHiddenNodes( aNodes );
|
|
aMesh->SetSelectableNodes ( aNodes );
|
|
|
|
VDisplayAISObject(argv[1], aMesh);
|
|
aContext->Deactivate( aMesh );
|
|
|
|
Draw::Set( argv[1], new XSDRAWSTLVRML_DrawableMesh( aMesh ) );
|
|
Handle( V3d_View ) aView = ViewerTest::CurrentView();
|
|
if ( !aView.IsNull() )
|
|
aView->FitAll();
|
|
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
|
|
static Standard_Integer create3d
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<2)
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use: " << argv[0] << " <mesh name>\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(AIS_InteractiveContext) aContext = ViewerTest::GetAISContext();
|
|
if (aContext.IsNull())
|
|
{
|
|
di << "No active view. Please call 'vinit' first\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle( XSDRAWSTLVRML_DataSource3D ) aDS = new XSDRAWSTLVRML_DataSource3D();
|
|
di << "Data source is created successful\n";
|
|
Handle( MeshVS_Mesh ) aMesh = new MeshVS_Mesh();
|
|
di << "MeshVS_Mesh is created successful\n";
|
|
|
|
aMesh->SetDataSource( aDS );
|
|
aMesh->AddBuilder( new MeshVS_MeshPrsBuilder( aMesh.operator->() ), Standard_True );
|
|
|
|
aMesh->GetDrawer()->SetColor( MeshVS_DA_EdgeColor, Quantity_NOC_YELLOW );
|
|
|
|
// Hide all nodes by default
|
|
Handle(TColStd_HPackedMapOfInteger) aNodes = new TColStd_HPackedMapOfInteger();
|
|
Standard_Integer aLen = aDS->GetAllNodes().Extent();
|
|
for ( Standard_Integer anIndex = 1; anIndex <= aLen; anIndex++ )
|
|
aNodes->ChangeMap().Add( anIndex );
|
|
aMesh->SetHiddenNodes( aNodes );
|
|
aMesh->SetSelectableNodes ( aNodes );
|
|
|
|
VDisplayAISObject(argv[1], aMesh);
|
|
aContext->Deactivate( aMesh );
|
|
|
|
Draw::Set( argv[1], new XSDRAWSTLVRML_DrawableMesh( aMesh ) );
|
|
Handle( V3d_View ) aView = ViewerTest::CurrentView();
|
|
if ( !aView.IsNull() )
|
|
aView->FitAll();
|
|
|
|
return 0;
|
|
}
|
|
|
|
Handle( MeshVS_Mesh ) getMesh( const char* theName, Draw_Interpretor& di)
|
|
{
|
|
Handle( XSDRAWSTLVRML_DrawableMesh ) aDrawMesh =
|
|
Handle( XSDRAWSTLVRML_DrawableMesh )::DownCast( Draw::Get( theName ) );
|
|
|
|
if( aDrawMesh.IsNull() )
|
|
{
|
|
di << "There is no such object\n";
|
|
return NULL;
|
|
}
|
|
else
|
|
{
|
|
Handle( MeshVS_Mesh ) aMesh = aDrawMesh->GetMesh();
|
|
if( aMesh.IsNull() )
|
|
{
|
|
di << "There is invalid mesh\n";
|
|
return NULL;
|
|
}
|
|
else
|
|
return aMesh;
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer setcolor
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv, Standard_Integer theParam )
|
|
{
|
|
if (argc<5)
|
|
di << "Wrong number of parameters\n";
|
|
else
|
|
{
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( !aMesh.IsNull() )
|
|
{
|
|
Standard_Real aRed = Draw::Atof (argv[2]);
|
|
Standard_Real aGreen = Draw::Atof (argv[3]);
|
|
Standard_Real aBlue = Draw::Atof (argv[4]);
|
|
aMesh->GetDrawer()->SetColor( (MeshVS_DrawerAttribute)theParam,
|
|
Quantity_Color( aRed, aGreen, aBlue, Quantity_TOC_RGB ) );
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer meshcolor
|
|
(Draw_Interpretor& theInterp, Standard_Integer argc, const char** argv )
|
|
{
|
|
return setcolor( theInterp, argc, argv, MeshVS_DA_InteriorColor );
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer linecolor
|
|
(Draw_Interpretor& theInterp, Standard_Integer argc, const char** argv )
|
|
{
|
|
return setcolor( theInterp, argc, argv, MeshVS_DA_EdgeColor );
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer meshmat
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<3)
|
|
di << "Wrong number of parameters\n";
|
|
else
|
|
{
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( !aMesh.IsNull() )
|
|
{
|
|
Standard_Integer aMaterial = Draw::Atoi (argv[2]);
|
|
|
|
Graphic3d_MaterialAspect aMatAsp =
|
|
(Graphic3d_MaterialAspect)(Graphic3d_NameOfMaterial)aMaterial;
|
|
|
|
if (argc == 4)
|
|
{
|
|
Standard_Real aTransparency = Draw::Atof(argv[3]);
|
|
aMatAsp.SetTransparency (Standard_ShortReal (aTransparency));
|
|
}
|
|
aMesh->GetDrawer()->SetMaterial( MeshVS_DA_FrontMaterial, aMatAsp );
|
|
aMesh->GetDrawer()->SetMaterial( MeshVS_DA_BackMaterial, aMatAsp );
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer shrink
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<3)
|
|
di << "Wrong number of parameters\n";
|
|
else
|
|
{
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( !aMesh.IsNull() )
|
|
{
|
|
Standard_Real aShrinkCoeff = Draw::Atof (argv[2]);
|
|
aMesh->GetDrawer()->SetDouble( MeshVS_DA_ShrinkCoeff, aShrinkCoeff );
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer closed (Draw_Interpretor& theDI, Standard_Integer theArgc, const char** theArgv)
|
|
{
|
|
if (theArgc < 3)
|
|
{
|
|
theDI << "Wrong number of parameters.\n";
|
|
}
|
|
else
|
|
{
|
|
Handle(MeshVS_Mesh) aMesh = getMesh (theArgv[1], theDI);
|
|
if (!aMesh.IsNull())
|
|
{
|
|
Standard_Boolean aFlag = Draw::Atoi (theArgv[2]) != 0;
|
|
aMesh->GetDrawer()->SetBoolean (MeshVS_DA_SupressBackFaces, aFlag);
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
if (aContext.IsNull())
|
|
{
|
|
theDI << "The context is null\n";
|
|
}
|
|
else
|
|
{
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
static Standard_Integer mdisplay
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<2)
|
|
di << "Wrong number of parameters\n";
|
|
else
|
|
{
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( !aMesh.IsNull() )
|
|
{
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
{
|
|
Standard_DISABLE_DEPRECATION_WARNINGS
|
|
if (aContext->HasOpenedContext())
|
|
{
|
|
aContext->CloseLocalContext();
|
|
}
|
|
Standard_ENABLE_DEPRECATION_WARNINGS
|
|
|
|
aContext->Display (aMesh, Standard_True);
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer merase
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<2)
|
|
di << "Wrong number of parameters\n";
|
|
else
|
|
{
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( !aMesh.IsNull() )
|
|
{
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
{
|
|
Standard_DISABLE_DEPRECATION_WARNINGS
|
|
if (aContext->HasOpenedContext())
|
|
{
|
|
aContext->CloseLocalContext();
|
|
}
|
|
Standard_ENABLE_DEPRECATION_WARNINGS
|
|
|
|
aContext->Erase (aMesh, Standard_True);
|
|
}
|
|
}
|
|
else
|
|
di << "Mesh is null\n";
|
|
}
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer hidesel
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<2)
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use: " << argv[0] << " <mesh name>\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( aMesh.IsNull() )
|
|
{
|
|
di << "The mesh is invalid\n";
|
|
return 0;
|
|
}
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
{
|
|
Handle(TColStd_HPackedMapOfInteger) aHiddenNodes = aMesh->GetHiddenNodes();
|
|
if (aHiddenNodes.IsNull())
|
|
{
|
|
aHiddenNodes = new TColStd_HPackedMapOfInteger();
|
|
}
|
|
Handle(TColStd_HPackedMapOfInteger) aHiddenElements = aMesh->GetHiddenElems();
|
|
if (aHiddenElements.IsNull())
|
|
{
|
|
aHiddenElements = new TColStd_HPackedMapOfInteger();
|
|
}
|
|
for( aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected() )
|
|
{
|
|
Handle( MeshVS_MeshEntityOwner ) anOwner =
|
|
Handle( MeshVS_MeshEntityOwner )::DownCast( aContext->SelectedOwner() );
|
|
if( !anOwner.IsNull() )
|
|
{
|
|
if( anOwner->Type()==MeshVS_ET_Node )
|
|
{
|
|
aHiddenNodes->ChangeMap().Add( anOwner->ID() );
|
|
}
|
|
else
|
|
{
|
|
aHiddenElements->ChangeMap().Add( anOwner->ID() );
|
|
}
|
|
}
|
|
}
|
|
aContext->ClearSelected (Standard_False);
|
|
aMesh->SetHiddenNodes( aHiddenNodes );
|
|
aMesh->SetHiddenElems( aHiddenElements );
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer showonly
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<2)
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use: " << argv[0] << " <mesh name>\n";
|
|
return 0;
|
|
}
|
|
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( aMesh.IsNull() )
|
|
{
|
|
di << "The mesh is invalid\n";
|
|
return 0;
|
|
}
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
{
|
|
Handle(TColStd_HPackedMapOfInteger) aHiddenNodes =
|
|
new TColStd_HPackedMapOfInteger(aMesh->GetDataSource()->GetAllNodes());
|
|
Handle(TColStd_HPackedMapOfInteger) aHiddenElements =
|
|
new TColStd_HPackedMapOfInteger(aMesh->GetDataSource()->GetAllElements());
|
|
for( aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected() )
|
|
{
|
|
Handle( MeshVS_MeshEntityOwner ) anOwner =
|
|
Handle( MeshVS_MeshEntityOwner )::DownCast( aContext->SelectedOwner() );
|
|
if( !anOwner.IsNull() )
|
|
{
|
|
if( anOwner->Type() == MeshVS_ET_Node )
|
|
{
|
|
aHiddenNodes->ChangeMap().Remove( anOwner->ID() );
|
|
}
|
|
else
|
|
{
|
|
aHiddenElements->ChangeMap().Remove( anOwner->ID() );
|
|
}
|
|
}
|
|
}
|
|
aMesh->SetHiddenNodes( aHiddenNodes );
|
|
aMesh->SetHiddenElems( aHiddenElements );
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer showall
|
|
(Draw_Interpretor& di, Standard_Integer argc, const char** argv )
|
|
{
|
|
if (argc<2)
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use: " << argv[0] << " <mesh name>\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle( AIS_InteractiveContext ) aContext = ViewerTest::GetAISContext();
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[1], di );
|
|
if( aMesh.IsNull() )
|
|
{
|
|
di << "The mesh is invalid\n";
|
|
return 0;
|
|
}
|
|
|
|
if( aContext.IsNull() )
|
|
di << "The context is null\n";
|
|
else
|
|
{
|
|
aMesh->SetHiddenNodes( new TColStd_HPackedMapOfInteger() );
|
|
aMesh->SetHiddenElems( new TColStd_HPackedMapOfInteger() );
|
|
aContext->Redisplay (aMesh, Standard_True);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer meshcolors( Draw_Interpretor& di,
|
|
Standard_Integer argc,
|
|
const char** argv )
|
|
{
|
|
try
|
|
{
|
|
OCC_CATCH_SIGNALS
|
|
if ( argc < 4 )
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use : meshcolors <mesh name> <mode> <isreflect>\n";
|
|
di << "mode : {elem1|elem2|nodal|nodaltex|none}\n";
|
|
di << " elem1 - different color for each element\n";
|
|
di << " elem2 - one color for one side\n";
|
|
di << " nodal - different color for each node\n";
|
|
di << " nodaltex - different color for each node with texture interpolation\n";
|
|
di << " none - clear\n";
|
|
di << "isreflect : {0|1} \n";
|
|
|
|
return 0;
|
|
}
|
|
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[ 1 ], di );
|
|
|
|
if ( aMesh.IsNull() )
|
|
{
|
|
di << "Mesh not found\n";
|
|
return 0;
|
|
}
|
|
Handle(AIS_InteractiveContext) anIC = ViewerTest::GetAISContext();
|
|
if ( anIC.IsNull() )
|
|
{
|
|
di << "The context is null\n";
|
|
return 0;
|
|
}
|
|
if( !aMesh.IsNull() )
|
|
{
|
|
TCollection_AsciiString aMode = TCollection_AsciiString (argv[2]);
|
|
Quantity_Color aColor1(Quantity_NOC_BLUE1);
|
|
Quantity_Color aColor2(Quantity_NOC_RED1);
|
|
if( aMode.IsEqual("elem1") || aMode.IsEqual("elem2") || aMode.IsEqual("nodal") || aMode.IsEqual("nodaltex") || aMode.IsEqual("none") )
|
|
{
|
|
Handle(MeshVS_PrsBuilder) aTempBuilder;
|
|
Standard_Integer aReflection = Draw::Atoi(argv[3]);
|
|
|
|
for (Standard_Integer aCount = 0 ; aCount < aMesh->GetBuildersCount(); aCount++ ){
|
|
aTempBuilder = aMesh->FindBuilder("MeshVS_ElementalColorPrsBuilder");
|
|
if( !aTempBuilder.IsNull())
|
|
aMesh->RemoveBuilderById(aTempBuilder->GetId());
|
|
|
|
aTempBuilder = aMesh->FindBuilder("MeshVS_NodalColorPrsBuilder");
|
|
if( !aTempBuilder.IsNull())
|
|
aMesh->RemoveBuilderById(aTempBuilder->GetId());
|
|
}
|
|
|
|
if( aMode.IsEqual("elem1") || aMode.IsEqual("elem2") )
|
|
{
|
|
Handle(MeshVS_ElementalColorPrsBuilder) aBuilder = new MeshVS_ElementalColorPrsBuilder(
|
|
aMesh, MeshVS_DMF_ElementalColorDataPrs | MeshVS_DMF_OCCMask );
|
|
// Color
|
|
const TColStd_PackedMapOfInteger& anAllElements = aMesh->GetDataSource()->GetAllElements();
|
|
TColStd_MapIteratorOfPackedMapOfInteger anIter( anAllElements );
|
|
|
|
if( aMode.IsEqual("elem1") )
|
|
for ( ; anIter.More(); anIter.Next() )
|
|
{
|
|
Quantity_Color aColor( (Quantity_NameOfColor)( anIter.Key() % Quantity_NOC_WHITE ) );
|
|
aBuilder->SetColor1( anIter.Key(), aColor );
|
|
}
|
|
else
|
|
for ( ; anIter.More(); anIter.Next() )
|
|
aBuilder->SetColor2( anIter.Key(), aColor1, aColor2 );
|
|
|
|
aMesh->AddBuilder( aBuilder, Standard_True );
|
|
}
|
|
|
|
|
|
if( aMode.IsEqual("nodal") )
|
|
{
|
|
Handle(MeshVS_NodalColorPrsBuilder) aBuilder = new MeshVS_NodalColorPrsBuilder(
|
|
aMesh, MeshVS_DMF_NodalColorDataPrs | MeshVS_DMF_OCCMask );
|
|
aMesh->AddBuilder( aBuilder, Standard_True );
|
|
|
|
// Color
|
|
const TColStd_PackedMapOfInteger& anAllNodes =
|
|
aMesh->GetDataSource()->GetAllNodes();
|
|
TColStd_MapIteratorOfPackedMapOfInteger anIter( anAllNodes );
|
|
for ( ; anIter.More(); anIter.Next() )
|
|
{
|
|
Quantity_Color aColor( (Quantity_NameOfColor)(
|
|
anIter.Key() % Quantity_NOC_WHITE ) );
|
|
aBuilder->SetColor( anIter.Key(), aColor );
|
|
}
|
|
aMesh->AddBuilder( aBuilder, Standard_True );
|
|
}
|
|
|
|
if(aMode.IsEqual("nodaltex"))
|
|
{
|
|
// assign nodal builder to the mesh
|
|
Handle(MeshVS_NodalColorPrsBuilder) aBuilder = new MeshVS_NodalColorPrsBuilder(
|
|
aMesh, MeshVS_DMF_NodalColorDataPrs | MeshVS_DMF_OCCMask);
|
|
aMesh->AddBuilder(aBuilder, Standard_True);
|
|
aBuilder->UseTexture(Standard_True);
|
|
|
|
// prepare color map for texture
|
|
Aspect_SequenceOfColor aColorMap;
|
|
aColorMap.Append((Quantity_NameOfColor) Quantity_NOC_RED);
|
|
aColorMap.Append((Quantity_NameOfColor) Quantity_NOC_YELLOW);
|
|
aColorMap.Append((Quantity_NameOfColor) Quantity_NOC_BLUE1);
|
|
|
|
// prepare scale map for mesh - it will be assigned to mesh as texture coordinates
|
|
// make mesh color interpolated from minimum X coord to maximum X coord
|
|
Handle(MeshVS_DataSource) aDataSource = aMesh->GetDataSource();
|
|
Standard_Real aMinX, aMinY, aMinZ, aMaxX, aMaxY, aMaxZ;
|
|
|
|
// get bounding box for calculations
|
|
aDataSource->GetBoundingBox().Get(aMinX, aMinY, aMinZ, aMaxX, aMaxY, aMaxZ);
|
|
Standard_Real aDelta = aMaxX - aMinX;
|
|
|
|
// assign color scale map values (0..1) to nodes
|
|
TColStd_DataMapOfIntegerReal aScaleMap;
|
|
TColStd_Array1OfReal aCoords(1, 3);
|
|
Standard_Integer aNbNodes;
|
|
MeshVS_EntityType aType;
|
|
|
|
// iterate nodes
|
|
const TColStd_PackedMapOfInteger& anAllNodes =
|
|
aMesh->GetDataSource()->GetAllNodes();
|
|
TColStd_MapIteratorOfPackedMapOfInteger anIter(anAllNodes);
|
|
for (; anIter.More(); anIter.Next())
|
|
{
|
|
//get node coordinates to aCoord variable
|
|
aDataSource->GetGeom(anIter.Key(), Standard_False, aCoords, aNbNodes, aType);
|
|
|
|
Standard_Real aScaleValue;
|
|
try {
|
|
OCC_CATCH_SIGNALS
|
|
aScaleValue = (aCoords.Value(1) - (Standard_Real) aMinX) / aDelta;
|
|
} catch(Standard_Failure) {
|
|
aScaleValue = 0;
|
|
}
|
|
|
|
aScaleMap.Bind(anIter.Key(), aScaleValue);
|
|
}
|
|
|
|
//set color map for builder and a color for invalid scale value
|
|
aBuilder->SetColorMap(aColorMap);
|
|
aBuilder->SetInvalidColor(Quantity_NOC_BLACK);
|
|
aBuilder->SetTextureCoords(aScaleMap);
|
|
aMesh->AddBuilder(aBuilder, Standard_True);
|
|
}
|
|
|
|
aMesh->GetDrawer()->SetBoolean (MeshVS_DA_ColorReflection, aReflection != 0);
|
|
|
|
anIC->Redisplay (aMesh, Standard_True);
|
|
}
|
|
else
|
|
{
|
|
di << "Wrong mode name\n";
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
catch ( Standard_Failure )
|
|
{
|
|
di << "Error\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
static Standard_Integer meshvectors( Draw_Interpretor& di,
|
|
Standard_Integer argc,
|
|
const char** argv )
|
|
{
|
|
if ( argc < 3 )
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use : meshvectors <mesh name> < -mode {elem|nodal|none} > [-maxlen len] [-color name] [-arrowpart ratio] [-issimple {1|0}]\n";
|
|
di << "Supported mode values:\n";
|
|
di << " elem - vector per element\n";
|
|
di << " nodal - vector per node\n";
|
|
di << " none - clear\n";
|
|
|
|
return 0;
|
|
}
|
|
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[ 1 ], di );
|
|
|
|
if ( aMesh.IsNull() )
|
|
{
|
|
di << "Mesh not found\n";
|
|
return 0;
|
|
}
|
|
Handle(AIS_InteractiveContext) anIC = ViewerTest::GetAISContext();
|
|
if ( anIC.IsNull() )
|
|
{
|
|
di << "The context is null\n";
|
|
return 0;
|
|
}
|
|
|
|
TCollection_AsciiString aParam;
|
|
TCollection_AsciiString aMode("none");
|
|
Standard_Real aMaxlen(1.0);
|
|
Quantity_Color aColor(Quantity_NOC_ORANGE);
|
|
Standard_Real anArrowPart(0.1);
|
|
Standard_Boolean isSimplePrs(Standard_False);
|
|
|
|
for (Standard_Integer anIdx = 2; anIdx < argc; anIdx++)
|
|
{
|
|
if (!aParam.IsEmpty())
|
|
{
|
|
if (aParam == "-mode")
|
|
{
|
|
aMode = argv[anIdx];
|
|
}
|
|
else if (aParam == "-maxlen")
|
|
{
|
|
aMaxlen = Draw::Atof(argv[anIdx]);
|
|
}
|
|
else if (aParam == "-color")
|
|
{
|
|
aColor = ViewerTest::GetColorFromName(argv[anIdx]);
|
|
}
|
|
else if (aParam == "-arrowpart")
|
|
{
|
|
anArrowPart = Draw::Atof(argv[anIdx]);
|
|
}
|
|
else if (aParam == "-issimple")
|
|
{
|
|
isSimplePrs = Draw::Atoi(argv[anIdx]) != 0;
|
|
}
|
|
aParam.Clear();
|
|
}
|
|
else if (argv[anIdx][0] == '-')
|
|
{
|
|
aParam = argv[anIdx];
|
|
}
|
|
}
|
|
|
|
if( !aMode.IsEqual("elem") && !aMode.IsEqual("nodal") && !aMode.IsEqual("none") )
|
|
{
|
|
di << "Wrong mode name\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(MeshVS_PrsBuilder) aTempBuilder;
|
|
|
|
aTempBuilder = aMesh->FindBuilder("MeshVS_VectorPrsBuilder");
|
|
if( !aTempBuilder.IsNull())
|
|
aMesh->RemoveBuilderById(aTempBuilder->GetId());
|
|
|
|
if( !aMode.IsEqual("none") )
|
|
{
|
|
Handle(MeshVS_VectorPrsBuilder) aBuilder = new MeshVS_VectorPrsBuilder( aMesh.operator->(),
|
|
aMaxlen,
|
|
aColor,
|
|
MeshVS_DMF_VectorDataPrs,
|
|
0,
|
|
-1,
|
|
MeshVS_BP_Vector,
|
|
isSimplePrs);
|
|
|
|
Standard_Boolean anIsElement = aMode.IsEqual("elem");
|
|
const TColStd_PackedMapOfInteger& anAllIDs = anIsElement ? aMesh->GetDataSource()->GetAllElements() :
|
|
aMesh->GetDataSource()->GetAllNodes();
|
|
|
|
Standard_Integer aNbNodes;
|
|
MeshVS_EntityType aEntType;
|
|
|
|
TColStd_Array1OfReal aCoords(1, 3);
|
|
aCoords.Init (0.);
|
|
TColStd_MapIteratorOfPackedMapOfInteger anIter( anAllIDs );
|
|
for ( ; anIter.More(); anIter.Next() )
|
|
{
|
|
Standard_Boolean IsValidData = Standard_False;
|
|
if (anIsElement) {
|
|
aMesh->GetDataSource()->GetGeomType(anIter.Key(), anIsElement, aEntType);
|
|
if (aEntType == MeshVS_ET_Face)
|
|
IsValidData = aMesh->GetDataSource()->GetNormal(anIter.Key(), 3, aCoords.ChangeValue(1), aCoords.ChangeValue(2), aCoords.ChangeValue(3));
|
|
} else
|
|
IsValidData = aMesh->GetDataSource()->GetGeom(anIter.Key(), Standard_False, aCoords, aNbNodes, aEntType);
|
|
|
|
gp_Vec aNorm;
|
|
if(IsValidData)
|
|
{
|
|
aNorm = gp_Vec(aCoords.Value(1), aCoords.Value(2), aCoords.Value(3));
|
|
if(aNorm.Magnitude() < gp::Resolution())
|
|
{
|
|
aNorm = gp_Vec(0,0,1); //method GetGeom(...) returns coordinates of nodes
|
|
}
|
|
}
|
|
else
|
|
{
|
|
aNorm = gp_Vec(0,0,1);
|
|
}
|
|
aBuilder->SetVector(anIsElement, anIter.Key(), aNorm.Normalized());
|
|
}
|
|
|
|
aMesh->AddBuilder( aBuilder, Standard_False );
|
|
aMesh->GetDrawer()->SetDouble ( MeshVS_DA_VectorArrowPart, anArrowPart );
|
|
}
|
|
|
|
anIC->Redisplay (aMesh, Standard_True);
|
|
|
|
return 0;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
|
|
static Standard_Integer meshtext( Draw_Interpretor& di,
|
|
Standard_Integer argc,
|
|
const char** argv )
|
|
{
|
|
if ( argc < 2 )
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use : meshtext <mesh name>\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[ 1 ], di );
|
|
|
|
if ( aMesh.IsNull() )
|
|
{
|
|
di << "Mesh not found\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(AIS_InteractiveContext) anIC = ViewerTest::GetAISContext();
|
|
if ( anIC.IsNull() )
|
|
{
|
|
di << "The context is null\n";
|
|
return 0;
|
|
}
|
|
|
|
// Prepare triangle labels
|
|
MeshVS_DataMapOfIntegerAsciiString aLabels;
|
|
Standard_Integer aLen = aMesh->GetDataSource()->GetAllElements().Extent();
|
|
for ( Standard_Integer anIndex = 1; anIndex <= aLen; anIndex++ ){
|
|
aLabels.Bind( anIndex, TCollection_AsciiString( anIndex ) );
|
|
}
|
|
|
|
Handle(MeshVS_TextPrsBuilder) aTextBuilder = new MeshVS_TextPrsBuilder( aMesh.operator->(), 20., Quantity_NOC_YELLOW );
|
|
aTextBuilder->SetTexts( Standard_True, aLabels );
|
|
aMesh->AddBuilder( aTextBuilder );
|
|
|
|
return 0;
|
|
}
|
|
|
|
static Standard_Integer meshdeform( Draw_Interpretor& di,
|
|
Standard_Integer argc,
|
|
const char** argv )
|
|
{
|
|
if ( argc < 3 )
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use : meshdeform <mesh name> < -mode {on|off} > [-scale scalefactor]\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle( MeshVS_Mesh ) aMesh = getMesh( argv[ 1 ], di );
|
|
|
|
if ( aMesh.IsNull() )
|
|
{
|
|
di << "Mesh not found\n";
|
|
return 0;
|
|
}
|
|
Handle(AIS_InteractiveContext) anIC = ViewerTest::GetAISContext();
|
|
if ( anIC.IsNull() )
|
|
{
|
|
di << "The context is null\n";
|
|
return 0;
|
|
}
|
|
|
|
TCollection_AsciiString aParam;
|
|
TCollection_AsciiString aMode("off");
|
|
Standard_Real aScale(1.0);
|
|
|
|
for (Standard_Integer anIdx = 2; anIdx < argc; anIdx++)
|
|
{
|
|
if (!aParam.IsEmpty())
|
|
{
|
|
if (aParam == "-mode")
|
|
{
|
|
aMode = argv[anIdx];
|
|
}
|
|
else if (aParam == "-scale")
|
|
{
|
|
aScale = Draw::Atof(argv[anIdx]);
|
|
}
|
|
aParam.Clear();
|
|
}
|
|
else if (argv[anIdx][0] == '-')
|
|
{
|
|
aParam = argv[anIdx];
|
|
}
|
|
}
|
|
|
|
if(!aMode.IsEqual("on") && !aMode.IsEqual("off"))
|
|
{
|
|
di << "Wrong mode name\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle ( MeshVS_DeformedDataSource ) aDefDS =
|
|
new MeshVS_DeformedDataSource( aMesh->GetDataSource() , aScale );
|
|
|
|
const TColStd_PackedMapOfInteger& anAllIDs = aMesh->GetDataSource()->GetAllNodes();
|
|
|
|
Standard_Integer aNbNodes;
|
|
MeshVS_EntityType aEntType;
|
|
|
|
TColStd_MapIteratorOfPackedMapOfInteger anIter( anAllIDs );
|
|
for ( ; anIter.More(); anIter.Next() )
|
|
{
|
|
TColStd_Array1OfReal aCoords(1, 3);
|
|
aMesh->GetDataSource()->GetGeom(anIter.Key(), Standard_False, aCoords, aNbNodes, aEntType);
|
|
|
|
gp_Vec aNorm = gp_Vec(aCoords.Value(1), aCoords.Value(2), aCoords.Value(3));
|
|
if( !aNorm.Magnitude() )
|
|
aNorm = gp_Vec(0,0,1);
|
|
aDefDS->SetVector(anIter.Key(), aNorm.Normalized());
|
|
}
|
|
|
|
aMesh->SetDataSource(aDefDS);
|
|
|
|
anIC->Redisplay (aMesh, Standard_False);
|
|
|
|
Handle( V3d_View ) aView = ViewerTest::CurrentView();
|
|
if ( !aView.IsNull() )
|
|
aView->FitAll();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static Standard_Integer mesh_edge_width( Draw_Interpretor& di,
|
|
Standard_Integer argc,
|
|
const char** argv )
|
|
{
|
|
try
|
|
{
|
|
OCC_CATCH_SIGNALS
|
|
if ( argc < 3 )
|
|
{
|
|
di << "Wrong number of parameters\n";
|
|
di << "Use : mesh_edge_width <mesh name> <width>\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(MeshVS_Mesh) aMesh = getMesh( argv[ 1 ], di );
|
|
if ( aMesh.IsNull() )
|
|
{
|
|
di << "Mesh not found\n";
|
|
return 0;
|
|
}
|
|
|
|
const char* aWidthStr = argv[ 2 ];
|
|
if ( aWidthStr == 0 || Draw::Atof( aWidthStr ) <= 0 )
|
|
{
|
|
di << "Width must be real value more than zero\n";
|
|
return 0;
|
|
}
|
|
|
|
double aWidth = Draw::Atof( aWidthStr );
|
|
|
|
Handle(AIS_InteractiveContext) anIC = ViewerTest::GetAISContext();
|
|
if ( anIC.IsNull() )
|
|
{
|
|
di << "The context is null\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(MeshVS_Drawer) aDrawer = aMesh->GetDrawer();
|
|
if ( aDrawer.IsNull() )
|
|
{
|
|
di << "The drawer is null\n";
|
|
return 0;
|
|
}
|
|
|
|
aDrawer->SetDouble( MeshVS_DA_EdgeWidth, aWidth );
|
|
anIC->Redisplay (aMesh, Standard_True);
|
|
}
|
|
catch ( Standard_Failure )
|
|
{
|
|
di << "Error\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
static Standard_Integer meshinfo(Draw_Interpretor& di,
|
|
Standard_Integer argc,
|
|
const char** argv)
|
|
{
|
|
if ( argc != 2 )
|
|
{
|
|
di << "Wrong number of parameters. Use : meshinfo mesh\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(MeshVS_Mesh) aMesh = getMesh(argv[ 1 ], di);
|
|
if ( aMesh.IsNull() )
|
|
{
|
|
di << "Mesh not found\n";
|
|
return 0;
|
|
}
|
|
|
|
Handle(XSDRAWSTLVRML_DataSource) stlMeshSource = Handle(XSDRAWSTLVRML_DataSource)::DownCast(aMesh->GetDataSource());
|
|
if (!stlMeshSource.IsNull())
|
|
{
|
|
const TColStd_PackedMapOfInteger& nodes = stlMeshSource->GetAllNodes();
|
|
const TColStd_PackedMapOfInteger& tris = stlMeshSource->GetAllElements();
|
|
|
|
di << "Nb nodes = " << nodes.Extent() << "\n";
|
|
di << "Nb triangles = " << tris.Extent() << "\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void XSDRAWSTLVRML::InitCommands (Draw_Interpretor& theCommands)
|
|
{
|
|
const char* g = "XSTEP-STL/VRML"; // Step transfer file commands
|
|
//XSDRAW::LoadDraw(theCommands);
|
|
|
|
theCommands.Add ("writevrml", "shape file [version VRML#1.0/VRML#2.0 (1/2): 2 by default] [representation shaded/wireframe/both (0/1/2): 1 by default]",__FILE__,writevrml,g);
|
|
theCommands.Add ("writestl", "shape file [ascii/binary (0/1) : 1 by default] [InParallel (0/1) : 0 by default]",__FILE__,writestl,g);
|
|
theCommands.Add ("readstl", "shape file [triangulation: no by default]",__FILE__,readstl,g);
|
|
theCommands.Add ("loadvrml" , "shape file",__FILE__,loadvrml,g);
|
|
|
|
theCommands.Add ("meshfromstl", "creates MeshVS_Mesh from STL file", __FILE__, createmesh, g );
|
|
theCommands.Add ("mesh3delem", "creates 3d element mesh to test", __FILE__, create3d, g );
|
|
theCommands.Add ("meshshadcolor", "change MeshVS_Mesh shading color", __FILE__, meshcolor, g );
|
|
theCommands.Add ("meshlinkcolor", "change MeshVS_Mesh line color", __FILE__, linecolor, g );
|
|
theCommands.Add ("meshmat", "change MeshVS_Mesh material and transparency", __FILE__, meshmat, g );
|
|
theCommands.Add ("meshshrcoef", "change MeshVS_Mesh shrink coeff", __FILE__, shrink, g );
|
|
theCommands.Add ("meshclosed", "meshclosed meshname (0/1) \nChange MeshVS_Mesh drawing mode. 0 - not closed object, 1 - closed object", __FILE__, closed, g);
|
|
theCommands.Add ("meshshow", "display MeshVS_Mesh object", __FILE__, mdisplay, g );
|
|
theCommands.Add ("meshhide", "erase MeshVS_Mesh object", __FILE__, merase, g );
|
|
theCommands.Add ("meshhidesel", "hide selected entities", __FILE__, hidesel, g );
|
|
theCommands.Add ("meshshowsel", "show only selected entities", __FILE__, showonly, g );
|
|
theCommands.Add ("meshshowall", "show all entities", __FILE__, showall, g );
|
|
theCommands.Add ("meshcolors", "display color presentation", __FILE__, meshcolors, g );
|
|
theCommands.Add ("meshvectors", "display sample vectors", __FILE__, meshvectors, g );
|
|
theCommands.Add ("meshtext", "display text labels", __FILE__, meshtext, g );
|
|
theCommands.Add ("meshdeform", "display deformed mesh", __FILE__, meshdeform, g );
|
|
theCommands.Add ("mesh_edge_width", "set width of edges", __FILE__, mesh_edge_width, g );
|
|
theCommands.Add ("meshinfo", "displays the number of nodes and triangles", __FILE__, meshinfo, g );
|
|
}
|
|
|
|
//==============================================================================
|
|
// XSDRAWSTLVRML::Factory
|
|
//==============================================================================
|
|
void XSDRAWSTLVRML::Factory(Draw_Interpretor& theDI)
|
|
{
|
|
XSDRAWIGES::InitSelect();
|
|
XSDRAWIGES::InitToBRep(theDI);
|
|
XSDRAWIGES::InitFromBRep(theDI);
|
|
XSDRAWSTEP::InitCommands(theDI);
|
|
XSDRAWSTLVRML::InitCommands(theDI);
|
|
XSDRAW::LoadDraw(theDI);
|
|
#ifdef OCCT_DEBUG
|
|
theDI << "Draw Plugin : All TKXSDRAW commands are loaded\n";
|
|
#endif
|
|
}
|
|
|
|
// Declare entry point PLUGINFACTORY
|
|
DPLUGIN(XSDRAWSTLVRML)
|
|
|