summaryrefslogtreecommitdiff
path: root/CSXCAD/src/CSPrimPolyhedron.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CSXCAD/src/CSPrimPolyhedron.cpp')
-rw-r--r--CSXCAD/src/CSPrimPolyhedron.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CSXCAD/src/CSPrimPolyhedron.cpp b/CSXCAD/src/CSPrimPolyhedron.cpp
index 2454f28..129d238 100644
--- a/CSXCAD/src/CSPrimPolyhedron.cpp
+++ b/CSXCAD/src/CSPrimPolyhedron.cpp
@@ -183,11 +183,11 @@ bool CSPrimPolyhedron::BuildTree()
{
m_Dimension = 2;
- //if structure is not closed due to invalud faces, mark it as 3D
+ //if structure is not closed due to invalid faces, mark it as 3D
if (m_InvalidFaces>0)
{
m_Dimension = 3;
- std::cerr << "CSPrimPolyhedron::BuildTree: Warning, found polyhedron has invalud faces and is not a closed surface, setting to 3D solid anyway!" << std::endl;
+ std::cerr << "CSPrimPolyhedron::BuildTree: Warning, found polyhedron has invalid faces and is not a closed surface, setting to 3D solid anyway!" << std::endl;
}
}