本文整理汇总了C++中Matrix2f::inverse方法的典型用法代码示例。如果您正苦于以下问题:C++ Matrix2f::inverse方法的具体用法?C++ Matrix2f::inverse怎么用?C++ Matrix2f::inverse使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrix2f
的用法示例。
在下文中一共展示了Matrix2f::inverse方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: contains_point
bool Triangle::contains_point(Point3f point, float epsilon) {
Vector3f v1 = p1 - p0;
Vector3f v2 = p2 - p0;
Vector3f expected = point - p0;
Matrix2f A;
A << v1[0], v2[0],
v1[1], v2[1];
Vector2f expected2f;
expected2f << expected[0],
expected[1];
// so using barycentric coord, we remove the z values solve for [v1 v2]x = point - p0
// afterwards using the calculated values, we see if the z values fit.
// x must have values from 0-1
Vector2f x = A.inverse() * expected2f;
if(x[0] < 0.0 || 1.0 < x[0] || x[1] < 0.0 || 1.0 < x[1])
return false;
float expected_z = (x[0] * v1[2]) + (x[1] * v2[2]);
return (expected[2] - epsilon) <= expected_z && expected_z <= (expected[2] + epsilon);
}