17 references to SegSmoothJoin
PresentationCore (17)
System\Windows\Media\ByteStreamGeometryContext.cs (4)
214arcToSegment.Flags |= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0; 688(((_currentPolySegmentData.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) != isSmoothJoin) 710_currentPolySegmentData.Flags |= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0; 718(((_currentPolySegmentData.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) == isSmoothJoin));
System\Windows\Media\EllipseGeometry.cs (2)
383(byte)MILCoreSegFlags.SegSmoothJoin; 387(byte)MILCoreSegFlags.SegSmoothJoin |
System\Windows\Media\PathGeometry.cs (8)
171((pSegmentLine->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 188((pSegmentBezier->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 204((pSegmentQuadraticBezier->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 223((pSegmentArc->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 267((pSegmentPoly->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 272((pSegmentPoly->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 277((pSegmentPoly->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 454bool fSmooth = (pSegTypes[segIndex] & (byte)MILCoreSegFlags.SegSmoothJoin) != (byte)0;
System\Windows\Media\RectangleGeometry.cs (3)
595(byte)MILCoreSegFlags.SegSmoothJoin; 597private static byte smoothLine = (byte)MILCoreSegFlags.SegTypeLine | (byte)MILCoreSegFlags.SegSmoothJoin; 602(byte)MILCoreSegFlags.SegSmoothJoin |