Hide menu
Loading...
Searching...
No Matches
advgeom/meshsimplify/meshsimplify.py

Refer to the Mesh Simplification Example.

1#!/usr/bin/env python3
2
3# $Id$
4
5# Copyright (C) 2008-2014, Roman Lygin. All rights reserved.
6# Copyright (C) 2014-2023, CADEX. All rights reserved.
7
8# This file is part of the CAD Exchanger software.
9
10# You may use this file under the terms of the BSD license as follows:
11
12# Redistribution and use in source and binary forms, with or without
13# modification, are permitted provided that the following conditions are met:
14# * Redistributions of source code must retain the above copyright notice,
15# this list of conditions and the following disclaimer.
16# * Redistributions in binary form must reproduce the above copyright notice,
17# this list of conditions and the following disclaimer in the documentation
18# and/or other materials provided with the distribution.
19
20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30# POSSIBILITY OF SUCH DAMAGE.
31
32
33import sys
34from pathlib import Path
35import os
36
37import cadexchanger.CadExCore as cadex
38import cadexchanger.CadExAdvGeom as geom
39
40sys.path.append(os.path.abspath(os.path.dirname(Path(__file__).resolve()) + r"/../../"))
41import cadex_license as license
42
43
44class PolyRepExplorer(cadex.ModelData_Part_VoidRepresentationVisitor):
45 def __init__(self):
46 super().__init__()
47 self.myNumberOfTriangles = 0
48
49 def VisitPoly(self, theRep: cadex.ModelData_PolyRepresentation):
50 aShapeList = theRep.Get()
51 for aShape in aShapeList:
53 anITS = cadex.ModelData_IndexedTriangleSet.Cast(aShape)
54 self.myNumberOfTriangles += anITS.NumberOfFaces()
55
56class TriangleCounter(cadex.ModelData_Model_VoidElementVisitor):
57 def __init__(self):
58 super().__init__()
59 self.myNumberOfTriangles = 0
60
61 def VisitPart(self, thePart: cadex.ModelData_Part):
62 aRepExplorer = PolyRepExplorer()
63 thePart.Accept(aRepExplorer)
64 self.myNumberOfTriangles += aRepExplorer.myNumberOfTriangles
65
66
67def main(theSource: str, theDest: str):
68 aKey = license.Value()
69
70 if not cadex.LicenseManager.Activate(aKey):
71 print("Failed to activate CAD Exchanger license.")
72 return 1
73
75
76 aModel = cadex.ModelData_Model()
77
78 # Opening and converting the file
79 if not aReader.Read(cadex.Base_UTF16String(theSource), aModel):
80 print("Failed to open and convert the file " + theSource)
81 return 1
82
83 # Basic info about model
84 aBeforeCounter = TriangleCounter()
85 aModel.AcceptElementVisitor(aBeforeCounter)
86 print(f"Model name: {aModel.Name()}")
87 print(f"# of triangles before: {aBeforeCounter.myNumberOfTriangles}")
88
89 # Running the simplifier
90 aParams = geom.ModelSimplifier_MeshSimplifierParameters()
91 aParams.SetDegreeOfSimplification(geom.ModelSimplifier_MeshSimplifierParameters.High)
92
93 aSimplifier = geom.ModelSimplifier_MeshSimplifier()
94 aSimplifier.SetParameters(aParams)
95 aNewModel = aSimplifier.Perform(aModel)
96
97 # How many shapes does simplified model contain?
98 anAfterCounter = TriangleCounter()
99 aNewModel.AcceptElementVisitor(anAfterCounter)
100 print(f"# of triangles after: {anAfterCounter.myNumberOfTriangles}")
101
102 # Saving the simplified model
103 if not cadex.ModelData_ModelWriter().Write(aNewModel, cadex.Base_UTF16String(theDest)):
104 print("Failed to save the .cdx file")
105 return 1
106
107 print("Completed")
108 return 0
109
110if __name__ == "__main__":
111 if len(sys.argv) != 3:
112 print(" <input_file> is a name of the VRML file to be read")
113 print(" <output_file> is a name of the CDX file to Save() the model")
114 sys.exit(1)
115
116 aSource = os.path.abspath(sys.argv[1])
117 aDest = os.path.abspath(sys.argv[2])
118
119 sys.exit(main(aSource, aDest))
Defines a Unicode (UTF-16) string wrapping a standard string.
Definition: Base_UTF16String.hxx:34
static IdType GetTypeId()
Definition: ModelData_IndexedTriangleSet.cxx:134
Provides CAD Exchanger data model.
Definition: ModelData_Model.hxx:43
Reads any format that CAD Exchanger can import.
Definition: ModelData_ModelReader.hxx:33
Writes any format that CAD Exchanger can export.
Definition: ModelData_ModelWriter.hxx:33