Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
iMSTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ben Boeckel
iMSTK
Commits
f0c83c03
Commit
f0c83c03
authored
3 years ago
by
Andrew Wilson
Browse files
Options
Downloads
Patches
Plain Diff
REFAC: Removed unused handler
parent
99e962d9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/CollisionHandling/imstkPickingCH.cpp
+0
-88
0 additions, 88 deletions
Source/CollisionHandling/imstkPickingCH.cpp
Source/CollisionHandling/imstkPickingCH.h
+0
-89
0 additions, 89 deletions
Source/CollisionHandling/imstkPickingCH.h
with
0 additions
and
177 deletions
Source/CollisionHandling/imstkPickingCH.cpp
deleted
100644 → 0
+
0
−
88
View file @
99e962d9
///*=========================================================================
//
//Library: iMSTK
//
//Copyright (c) Kitware, Inc. & Center for Modeling, Simulation,
//& Imaging in Medicine, Rensselaer Polytechnic Institute.
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0.txt
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
//
//=========================================================================*/
//
//#include "imstkPickingCH.h"
//#include "imstkCollisionData.h"
//#include "imstkFeDeformableObject.h"
//#include "imstkFEMDeformableBodyModel.h"
//#include "imstkLinearProjectionConstraint.h"
//#include "imstkPointSet.h"
//#include "imstkTimeIntegrator.h"
//
//namespace imstk
//{
//PickingCH::PickingCH(const CollisionHandling::Side& side,
// const std::shared_ptr<CollisionData> colData,
// std::shared_ptr<FeDeformableObject> obj) :
// CollisionHandling(Type::NodalPicking, side, colData),
// m_object(obj)
//{
//}
//
//void
//PickingCH::processCollisionData()
//{
// CHECK(m_object != nullptr) << "PickingCH::handleCollision error: "
// << "no picking collision handling available the object";
//
// this->addPickConstraints(m_object);
//}
//
//void
//PickingCH::addPickConstraints(std::shared_ptr<FeDeformableObject> deformableObj)
//{
// m_DynamicLinearProjConstraints->clear();
//
// if (m_colData->NodePickData.isEmpty())
// {
// return;
// }
//
// CHECK(deformableObj != nullptr) << "PenaltyRigidCH::addPickConstraints error: "
// << " not a deformable object.";
//
// std::shared_ptr<FEMDeformableBodyModel> model = deformableObj->getFEMModel();
// const Vectord& Uprev = model->getCurrentState()->getQ();
// const Vectord& Vprev = model->getCurrentState()->getQDot();
//
// auto PhysTetMesh = std::dynamic_pointer_cast<PointSet>(deformableObj->getPhysicsGeometry());
// auto dT = std::dynamic_pointer_cast<FEMDeformableBodyModel>(m_object->getDynamicalModel())->getTimeIntegrator()->getTimestepSize();
//
// // If collision data, append LPC constraints
// ParallelUtils::SpinLock lock;
// ParallelUtils::parallelFor(m_colData->NodePickData.getSize(),
// [&](const size_t idx) {
// const auto& cd = m_colData->NodePickData[idx];
// const auto nodeDof = static_cast<Eigen::Index>(3 * cd.nodeIdx);
// const auto vprev = Vec3d(Vprev(nodeDof), Vprev(nodeDof + 1), Vprev(nodeDof + 2));
// const auto uprev = Vec3d(Uprev(nodeDof), Uprev(nodeDof + 1), Uprev(nodeDof + 2));
// const auto x = (cd.ptPos + PhysTetMesh->getVertexPosition(cd.nodeIdx) -
// PhysTetMesh->getInitialVertexPosition(cd.nodeIdx) - uprev) / dT - vprev;
//
// auto pickProjector = LinearProjectionConstraint(cd.nodeIdx, true);
// pickProjector.setProjectorToDirichlet(static_cast<unsigned int>(cd.nodeIdx), x);
//
// lock.lock();
// m_DynamicLinearProjConstraints->push_back(std::move(pickProjector));
// lock.unlock();
// });
//}
//}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Source/CollisionHandling/imstkPickingCH.h
deleted
100644 → 0
+
0
−
89
View file @
99e962d9
///*=========================================================================
//
// Library: iMSTK
//
// Copyright (c) Kitware, Inc. & Center for Modeling, Simulation,
// & Imaging in Medicine, Rensselaer Polytechnic Institute.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0.txt
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//=========================================================================*/
//
//#pragma once
//
//#include "imstkCollisionHandling.h"
//
//#include <vector>
//
//namespace imstk
//{
//class CollidingObject;
//class FeDeformableObject;
//class LinearProjectionConstraint;
//struct CollisionData;
//
/////
///// \class PickingCH
/////
///// \brief Implements nodal picking
/////
//class PickingCH : public CollisionHandling
//{
//public:
//
// ///
// /// \brief Constructor
// ///
// PickingCH(const Side& side,
// const std::shared_ptr<CollisionData> colData,
// std::shared_ptr<FeDeformableObject> obj);
//
// PickingCH() = delete;
//
// ///
// /// \brief Destructor
// ///
// virtual ~PickingCH() override = default;
//
// ///
// /// \brief Compute forces based on collision data
// ///
// void processCollisionData() override;
//
// ///
// /// \brief Add LPC constraints for the node that is picked
// ///
// void addPickConstraints(std::shared_ptr<FeDeformableObject> deformableObj);
//
// ///
// /// \brief Get the vector denoting the filter
// ///
// void setDynamicLinearProjectors(std::vector<LinearProjectionConstraint>* f)
// {
// m_DynamicLinearProjConstraints = f;
// }
//
// ///
// /// \brief Get the vector denoting the filter
// ///
// std::vector<LinearProjectionConstraint>& getDynamicLinearProjectors()
// {
// return *m_DynamicLinearProjConstraints;
// }
//
//private:
//
// std::shared_ptr<FeDeformableObject> m_object; ///> Deformable object
// std::vector<LinearProjectionConstraint>* m_DynamicLinearProjConstraints = nullptr;
//};
//}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment