gmio/src/gmio_support/stl_occ.cpp

131 lines
4.1 KiB
C++
Raw Normal View History

2015-03-05 00:41:07 +08:00
/****************************************************************************
2015-05-28 15:40:24 +08:00
** gmio
2015-05-06 15:39:37 +08:00
** Copyright Fougue (2 Mar. 2015)
2015-07-13 17:42:03 +08:00
** contact@fougue.pro
2015-03-05 00:41:07 +08:00
**
** This software is a reusable library whose purpose is to provide complete
** I/O support for various CAD file formats (eg. STL)
**
** This software is governed by the CeCILL-B license under French law and
** abiding by the rules of distribution of free software. You can use,
** modify and/ or redistribute the software under the terms of the CeCILL-B
** license as circulated by CEA, CNRS and INRIA at the following URL
2015-03-30 15:05:25 +08:00
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
2015-03-05 00:41:07 +08:00
****************************************************************************/
#include <gmio_support/stl_occ.h>
#include <cstring>
#include <StlMesh_Mesh.hxx>
#include <StlMesh_MeshTriangle.hxx>
#include <StlMesh_SequenceOfMeshTriangle.hxx>
#include <TColgp_SequenceOfXYZ.hxx>
2014-01-27 22:03:50 +08:00
namespace internal {
/* Common */
2014-01-27 22:03:50 +08:00
static StlMesh_Mesh* occMeshPtr(const Handle_StlMesh_Mesh& mesh)
{
2015-03-20 00:31:08 +08:00
return mesh.operator->();
}
2014-01-27 22:03:50 +08:00
static void occmesh_add_triangle(void* cookie,
2014-01-29 18:33:55 +08:00
uint32_t tri_id,
const gmio_stl_triangle_t* tri)
{
2015-03-20 00:31:08 +08:00
StlMesh_Mesh* mesh = static_cast<StlMesh_Mesh*>(cookie);
if (tri_id == 0)
mesh->AddDomain();
mesh->AddTriangle(mesh->AddOnlyNewVertex(tri->v1.x, tri->v1.y, tri->v1.z),
mesh->AddOnlyNewVertex(tri->v2.x, tri->v2.y, tri->v2.z),
mesh->AddOnlyNewVertex(tri->v3.x, tri->v3.y, tri->v3.z),
tri->normal.x, tri->normal.y, tri->normal.z);
}
2015-03-20 00:31:08 +08:00
static void occmesh_get_triangle(
const void* cookie, uint32_t tri_id, gmio_stl_triangle_t* triangle)
{
const gmio_occ_stl_mesh_domain_t* mesh_domain =
static_cast<const gmio_occ_stl_mesh_domain_t*>(cookie);
2015-03-20 00:31:08 +08:00
const StlMesh_SequenceOfMeshTriangle& occTriangles =
mesh_domain->mesh->Triangles(mesh_domain->domain_id);
2015-03-20 00:31:08 +08:00
const Handle_StlMesh_MeshTriangle& occTri =
occTriangles.Value(tri_id + 1);
int v1;
int v2;
int v3;
double xN;
double yN;
double zN;
2015-03-20 00:31:08 +08:00
occTri->GetVertexAndOrientation(v1, v2, v3, xN, yN, zN);
triangle->normal.x = float(xN);
triangle->normal.y = float(yN);
triangle->normal.z = float(zN);
const TColgp_SequenceOfXYZ& vertices =
mesh_domain->mesh->Vertices(mesh_domain->domain_id);
2015-03-20 00:31:08 +08:00
const gp_XYZ& coordsV1 = vertices.Value(v1);
const gp_XYZ& coordsV2 = vertices.Value(v2);
const gp_XYZ& coordsV3 = vertices.Value(v3);
triangle->v1.x = float(coordsV1.X());
triangle->v2.x = float(coordsV2.X());
triangle->v3.x = float(coordsV3.X());
triangle->v1.y = float(coordsV1.Y());
triangle->v2.y = float(coordsV2.Y());
triangle->v3.y = float(coordsV3.Y());
triangle->v1.z = float(coordsV1.Z());
triangle->v2.z = float(coordsV2.Z());
triangle->v3.z = float(coordsV3.Z());
}
2014-01-29 23:59:19 +08:00
} // namespace internal
gmio_stl_mesh_t gmio_stl_occmesh(const gmio_occ_stl_mesh_domain_t* mesh_domain)
2015-03-19 23:34:53 +08:00
{
gmio_stl_mesh_t mesh = { 0 };
mesh.cookie = mesh_domain;
if (mesh_domain != NULL && mesh_domain->mesh != NULL) {
mesh.triangle_count =
mesh_domain->mesh->NbTriangles(mesh_domain->domain_id);
}
mesh.func_get_triangle = internal::occmesh_get_triangle;
return mesh;
2014-01-29 23:59:19 +08:00
}
2014-01-27 22:03:50 +08:00
gmio_stl_mesh_creator_t gmio_stl_occmesh_creator(StlMesh_Mesh* mesh)
2015-03-19 23:34:53 +08:00
{
gmio_stl_mesh_creator_t creator = { 0 };
creator.cookie = mesh;
creator.func_add_triangle = internal::occmesh_add_triangle;
return creator;
2015-03-19 23:34:53 +08:00
}
gmio_stl_mesh_creator_t gmio_stl_hnd_occmesh_creator(const Handle_StlMesh_Mesh &hnd)
{
return gmio_stl_occmesh_creator(internal::occMeshPtr(hnd));
}
gmio_occ_stl_mesh_domain::gmio_occ_stl_mesh_domain()
: mesh(NULL),
domain_id(0)
{
}
gmio_occ_stl_mesh_domain::gmio_occ_stl_mesh_domain(
const StlMesh_Mesh *msh, int dom_id)
: mesh(msh),
domain_id(dom_id)
{
}
gmio_occ_stl_mesh_domain::gmio_occ_stl_mesh_domain(
const Handle_StlMesh_Mesh &hndMesh, int dom_id)
: mesh(internal::occMeshPtr(hndMesh)),
domain_id(dom_id)
{
}