22 references to FaceType
PresentationCore (22)
Core\CSharp\MS\Internal\Media3D\GeneralTransform2Dto3Dto2D.cs (1)
195
_geometry.RayHitTest(rayHitTestParameters,
FaceType
.Front);
Core\CSharp\MS\Internal\Media3D\LineUtil.cs (3)
410
FaceType
type,
430
if (a > 0 && (type &
FaceType
.Front) != 0)
434
else if (a < 0 && (type &
FaceType
.Back) != 0)
Core\CSharp\System\Windows\Media3D\Geometry3D.cs (3)
81
internal void RayHitTest(RayHitTestParameters rayParams,
FaceType
facesToHit)
83
Debug.Assert(facesToHit !=
FaceType
.None,
113
internal abstract void RayHitTestCore(RayHitTestParameters rayParams,
FaceType
hitTestableFaces);
Core\CSharp\System\Windows\Media3D\GeometryModel3D.cs (5)
93
FaceType
facesToHit =
FaceType
.None;
97
facesToHit |=
FaceType
.Front;
102
facesToHit |=
FaceType
.Back;
105
if (facesToHit !=
FaceType
.None)
Core\CSharp\System\Windows\Media3D\MeshGeometry3D.cs (10)
173
FaceType
hitTestableFaces)
175
Debug.Assert(hitTestableFaces !=
FaceType
.None,
194
FaceType
facesToHit;
201
facesToHit =
FaceType
.Front |
FaceType
.Back;
442
FaceType
facesToHit,
521
if (((facesToHit &
FaceType
.Front) ==
FaceType
.Front && frontFace) || ((facesToHit &
FaceType
.Back) ==
FaceType
.Back && !frontFace))