Mesh: Apply clang-format

This commit is contained in:
wmayer
2023-09-22 19:59:39 +02:00
committed by wwmayer
parent 70ba930230
commit 23db389a76
116 changed files with 15683 additions and 12447 deletions

View File

@@ -41,19 +41,18 @@ Transform::Transform()
App::DocumentObjectExecReturn* Transform::execute()
{
/*
Feature* pcFirst = dynamic_cast<Feature*>(Source.getValue());
if (!pcFirst || pcFirst->isError())
return new App::DocumentObjectExecReturn("Unknown Error");
/*
Feature* pcFirst = dynamic_cast<Feature*>(Source.getValue());
if (!pcFirst || pcFirst->isError())
return new App::DocumentObjectExecReturn("Unknown Error");
Matrix4D Matrix = Position.getValue();
Matrix4D Matrix = Position.getValue();
MeshCore::MeshKernel* pcKernel =
new MeshCore::MeshKernel(pcFirst->Mesh.getValue());// Result Meshkernel
pcKernel->Transform(Matrix);
Mesh.setValue(pcKernel);
*/
MeshCore::MeshKernel* pcKernel =
new MeshCore::MeshKernel(pcFirst->Mesh.getValue());// Result Meshkernel
pcKernel->Transform(Matrix);
Mesh.setValue(pcKernel);
*/
return App::DocumentObject::StdReturn;
}