Skip to content
Snippets Groups Projects
Commit 104cd63f authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

Merge branch 'mesh_rotation' into 'master'

Added rotate method to MeshOperations

See merge request walberla/walberla!372
parents 8aa2d25c 103667f2
No related merge requests found
......@@ -49,6 +49,9 @@ void translate( MeshType & mesh, const Vector3< typename MeshType::Scalar > & of
template< typename MeshType >
void scale( MeshType & mesh, const Vector3< typename MeshType::Scalar > & scaleFactors );
template< typename MeshType >
void rotate( MeshType& mesh, Vector3<typename MeshType::Scalar > axis, typename MeshType::Scalar angle, Vector3< typename MeshType::scalar> axis_foot);
template< typename MeshType >
typename MeshType::Scalar computeVolume( const MeshType & mesh );
......@@ -182,6 +185,21 @@ void scale( MeshType & mesh, const Vector3< typename MeshType::Scalar > & scaleF
}
}
template< typename MeshType >
void rotate( MeshType& mesh, Vector3<typename MeshType::Scalar > axis, typename MeshType::Scalar angle, Vector3< typename MeshType::Scalar> axis_foot)
{
Matrix3< typename MeshType::Scalar > mat(axis, angle);
for( auto v_it = mesh.vertices_begin(); v_it != mesh.vertices_end(); ++v_it)
{
auto &p = mesh.point(*v_it);
p -= mesh::toOpenMesh(axis_foot);
p = mat*p;
p += mesh::toOpenMesh(axis_foot);
}
}
template< typename MeshType >
typename MeshType::Scalar computeVolume( const MeshType & mesh )
......
......@@ -120,6 +120,28 @@ void testCube()
WALBERLA_CHECK_FLOAT_EQUAL( inertiaTensor(0,0), aabb.volume() * ( aabb.ySize() * aabb.ySize() + aabb.zSize() * aabb.zSize() ) / real_t(12) );
WALBERLA_CHECK_FLOAT_EQUAL( inertiaTensor(1,1), aabb.volume() * ( aabb.xSize() * aabb.xSize() + aabb.zSize() * aabb.zSize() ) / real_t(12) );
WALBERLA_CHECK_FLOAT_EQUAL( inertiaTensor(2,2), aabb.volume() * ( aabb.xSize() * aabb.xSize() + aabb.ySize() * aabb.ySize() ) / real_t(12) );
rotate(mesh, Vector3<Scalar>{0, 0, 1}, static_cast<Scalar>(M_PI_2), Vector3<Scalar>{-4, 0, 0});
aabb = computeAABB( mesh );
WALBERLA_CHECK_FLOAT_EQUAL( aabb.xMin(), Scalar(-5.5) );
WALBERLA_CHECK_FLOAT_EQUAL( aabb.yMin(), Scalar(3) );
WALBERLA_CHECK_FLOAT_EQUAL( aabb.zMin(), Scalar(-0.25) );
WALBERLA_CHECK_FLOAT_EQUAL( aabb.xMax(), Scalar(-2.5) );
WALBERLA_CHECK_FLOAT_EQUAL( aabb.yMax(), Scalar(5) );
WALBERLA_CHECK_FLOAT_EQUAL( aabb.zMax(), Scalar(0.25) );
WALBERLA_CHECK_FLOAT_EQUAL( computeSurfaceArea( mesh ), Scalar(2) * ( aabb.xSize() * aabb.ySize() + aabb.xSize() * aabb.zSize() + aabb.ySize() * aabb.zSize() ) );
WALBERLA_CHECK_FLOAT_EQUAL( computeVolume( mesh ), aabb.volume() );
centroid = computeCentroid( mesh );
aabbCenter = aabb.center();
WALBERLA_CHECK_FLOAT_EQUAL( centroid[0], aabbCenter[0] );
WALBERLA_CHECK_FLOAT_EQUAL( centroid[1], aabbCenter[1] );
WALBERLA_CHECK_FLOAT_EQUAL( centroid[2], aabbCenter[2] );
}
int main( int argc, char * argv[] )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment