Merge pull request #874 from blobfish/occt7.4

Occt7.4
OpenSceneGraph-3.6
OpenSceneGraph git repository 5 years ago committed by GitHub
commit c50b699992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@
# correspond to the ./configure --prefix=$OPENCASCADE_DIR
# used in building OPENCASCADE.
FIND_PATH(OPENCASCADE_INCLUDE_DIR BRepMesh.hxx
FIND_PATH(OPENCASCADE_INCLUDE_DIR Standard_Version.hxx
PATHS
${OPENCASCADE_DIR}
$ENV{OPENCASCADE_DIR}

@ -292,7 +292,7 @@ osg::ref_ptr<osg::Geode> ReaderWritterOpenCASCADE::OCCTKReader::igesToOSGGeode(c
/// transfer data from reader to doc
if(!reader.Transfer(doc))
{
cout << "Cannot read any relevant data from the STEP file" << endl;
std::cout << "Cannot read any relevant data from the STEP file" << std::endl;
return NULL;
}
}
@ -309,7 +309,7 @@ osg::ref_ptr<osg::Geode> ReaderWritterOpenCASCADE::OCCTKReader::igesToOSGGeode(c
/// transfer data from reader to doc
if(!reader.Transfer(doc))
{
cout << "Cannot read any relevant data from the IGES file" << endl;
std::cout << "Cannot read any relevant data from the IGES file" << std::endl;
return NULL;
}
}
@ -327,7 +327,7 @@ osg::ref_ptr<osg::Geode> ReaderWritterOpenCASCADE::OCCTKReader::igesToOSGGeode(c
if(freeShapes.Length() == 0)
{
std::cout << "No Shapes found" << endl;
std::cout << "No Shapes found" << std::endl;
return NULL;
}
else

Loading…
Cancel
Save