本文整理汇总了C++中Matrixd::preMult方法的典型用法代码示例。如果您正苦于以下问题:C++ Matrixd::preMult方法的具体用法?C++ Matrixd::preMult怎么用?C++ Matrixd::preMult使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrixd
的用法示例。
在下文中一共展示了Matrixd::preMult方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setInteractionMode
void SceneGraphManipulator::setInteractionMode(int mode, Vec3f center, float imageZoom)
{
if (_trackerMode == -1) _trackerMode = 0; // if ProjectionType is UNKNOWN treat it as VISION
else _trackerMode = mode;
Matrixd viewMat = getMatrix();
float C = 1.5;
_panRating = C * (viewMat.preMult(center)).length() / imageZoom; //(viewMat.preMult(center)).length() is the distance between the eye and the center of the viewed scene
}