Lines Matching refs:pl1
38 HyperplaneType pl1(n1, p1); in hyperplane() local
39 HyperplaneType pl2 = pl1; in hyperplane()
48 VERIFY_IS_APPROX( pl1.signedDistance(p1 + n1 * s0), s0); in hyperplane()
50 VERIFY_IS_MUCH_SMALLER_THAN( abs(pl1.signedDistance(p1 + n1 * s0) - s0), Scalar(1) ); in hyperplane()
51 VERIFY_IS_MUCH_SMALLER_THAN( pl1.signedDistance(pl1.projection(p0)), Scalar(1) ); in hyperplane()
52 …VERIFY_IS_MUCH_SMALLER_THAN( pl1.absDistance(p1 + pl1.normal().unitOrthogonal() * s1), Scalar(1) … in hyperplane()
63 pl2 = pl1; in hyperplane()
65 pl2 = pl1; in hyperplane()
67 pl2 = pl1; in hyperplane()
70 pl2 = pl1; in hyperplane()
74 pl2 = pl1; in hyperplane()
83 Hyperplane<OtherScalar,Dim,Options> hp1f = pl1.template cast<OtherScalar>(); in hyperplane()
84 VERIFY_IS_APPROX(hp1f.template cast<Scalar>(),pl1); in hyperplane()
85 Hyperplane<Scalar,Dim,Options> hp1d = pl1.template cast<Scalar>(); in hyperplane()
86 VERIFY_IS_APPROX(hp1d.template cast<Scalar>(),pl1); in hyperplane()