Skip to content

Commit 8ec83ef

Browse files
committed
fix typos
1 parent 1590575 commit 8ec83ef

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

IfcPlusPlus/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif(WIN32)
1919
file (GLOB ifc4_source "src/ifcpp/IFC4/lib/*.cpp")
2020

2121
if(UNIX)
22-
# do not add src/external/XUnzip.cpp on unix plattforms
22+
# do not add src/external/XUnzip.cpp on unix platforms
2323
set(IFCPP_SOURCE_FILES
2424
src/ifcpp/IFC4/EntityFactory.cpp
2525
src/ifcpp/IFC4/TypeFactory.cpp

IfcPlusPlus/src/ifcpp/geometry/Carve/GeometryInputData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ class ProductShapeData
680680

681681
if (transform_self->m_placement_entity_id >= 0 && transform_self->m_placement_entity_id == transform_other->m_placement_entity_id)
682682
{
683-
// skip matrices that are the same at both products, to avoid unecessary multiplications and numerical inaccuracies
683+
// skip matrices that are the same at both products, to avoid unnecessary multiplications and numerical inaccuracies
684684
++it_self;
685685
++it_other;
686686
continue;

IfcPlusPlus/src/ifcpp/geometry/Carve/SolidModelConverter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ class SolidModelConverter : public StatusCallback
11571157
}
11581158
polyhedron_data->addVertex( primitive_placement_matrix*carve::geom::VECTOR( 0.0, 0.0, -radius ) ); // bottom
11591159

1160-
// uppper triangle fan
1160+
// upper triangle fan
11611161
for( int i = 0; i < nvc - 1; ++i )
11621162
{
11631163
polyhedron_data->addFace( 0, i + 2, i + 1 );

IfcPlusPlus/src/ifcpp/geometry/Carve/SplineConverter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class SplineConverter : public StatusCallback
247247
const size_t num_curve_pts = num_control_pts * m_geom_settings->getNumVerticesPerControlPoint();
248248
std::vector<double> knot_vec;
249249

250-
// set weighting factors to 1.0 in case of homogenious curve
250+
// set weighting factors to 1.0 in case of homogeneous curve
251251
vec_weights.resize( num_control_pts + 1, 1.0 );
252252

253253
shared_ptr<IfcBSplineCurveWithKnots> bspline_curve_with_knots = dynamic_pointer_cast<IfcBSplineCurveWithKnots>( bspline_curve );

IfcPlusPlus/src/ifcpp/geometry/OCC/SplineConverterOCC.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class SplineConverterOCC : public StatusCallback
240240
const size_t num_curve_pts = num_control_pts * m_geom_settings->getNumVerticesPerControlPoint();
241241
std::vector<double> knot_vec;
242242

243-
// set weighting factors to 1.0 in case of homogenious curve
243+
// set weighting factors to 1.0 in case of homogeneous curve
244244
vec_weights.resize( num_control_pts + 1, 1.0 );
245245

246246
shared_ptr<IfcBSplineCurveWithKnots> bspline_curve_with_knots = dynamic_pointer_cast<IfcBSplineCurveWithKnots>( bspline_curve );

IfcPlusPlus/src/ifcpp/reader/ReaderUtil.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ void readTypeOfStringList( const wchar_t* str, std::vector<shared_ptr<T> >& targ
427427
{
428428
if( isspace( *ch ) )
429429
{
430-
// ingore leading space characters
430+
// ignore leading space characters
431431
++ch;
432432
continue;
433433
}

0 commit comments

Comments
 (0)