本文整理汇总了C++中base::VectorPy::setConst方法的典型用法代码示例。如果您正苦于以下问题:C++ VectorPy::setConst方法的具体用法?C++ VectorPy::setConst怎么用?C++ VectorPy::setConst使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类base::VectorPy
的用法示例。
在下文中一共展示了VectorPy::setConst方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getVector
Py::Object MeshPointPy::getVector(void) const
{
MeshPointPy::PointerType ptr = reinterpret_cast<MeshPointPy::PointerType>(_pcTwinPointer);
Base::VectorPy* vec = new Base::VectorPy(*ptr);
vec->setConst();
return Py::Object(vec,true);
}
示例2: getNormal
Py::Object MeshPointPy::getNormal(void) const
{
if (!getMeshPointPtr()->isBound())
PyErr_SetString(Base::BaseExceptionFreeCADError, "This object is not bounded to a mesh, so no topological operation is possible!");
Base::Vector3d* v = new Base::Vector3d(getMeshPointPtr()->Mesh->getPointNormal(getMeshPointPtr()->Index));
Base::VectorPy* normal = new Base::VectorPy(v);
normal->setConst();
return Py::Object(normal,true);
}