6 instantiations of Point
PresentationBuildTasks (6)
Core\CSharp\MS\internal\Media\XamlSerializationHelper.cs (1)
425value = new Point(
Core\CSharp\System\Windows\Media\ParsersCommon.cs (5)
497return new Point(x, y); 506return new Point(2 * _lastPoint.X - _secondLastPoint.X, 539_secondLastPoint = new Point(0, 0); 540_lastPoint = new Point(0, 0); 541_lastStart = new Point(0, 0);
37 references to Point
PresentationBuildTasks (37)
Core\CSharp\MS\internal\Media\ParserStreamGeometryContext.cs (14)
107public override void BeginFigure(Point startPoint, bool isFilled, bool isClosed) 136public override void LineTo(Point point, bool isStroked, bool isSmoothJoin) 147public override void QuadraticBezierTo(Point point1, Point point2, bool isStroked, bool isSmoothJoin) 161public override void BezierTo(Point point1, Point point2, Point point3, bool isStroked, bool isSmoothJoin) 178public override void PolyLineTo(IList<Point> points, bool isStroked, bool isSmoothJoin) 189public override void PolyQuadraticBezierTo(IList<Point> points, bool isStroked, bool isSmoothJoin) 200public override void PolyBezierTo(IList<Point> points, bool isStroked, bool isSmoothJoin) 214public override void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, bool sweepDirection, bool isStroked, bool isSmoothJoin) 645Point point, 671private void SerializeListOfPointsAndTwoBools(ParserGeometryContextOpCodes opCode, IList<Point> points, bool bool1, bool bool2) 754Point _startPoint;
Core\CSharp\MS\internal\Media\XamlSerializationHelper.cs (6)
275List<Point> points = ParsePointCollection(stringValue, TypeConverterHelper.InvariantEnglishUS); 276Point curPoint; 415private static List<Point> ParsePointCollection(string source, IFormatProvider formatProvider) 419List<Point> resource = new List<Point>(source.Length/ 8 ); // SWAG the length of the collection. 421Point value;
Core\CSharp\System\Windows\Media\ParsersCommon.cs (6)
200Point _lastStart; // Last figure starting point 201Point _lastPoint; // Last point 202Point _secondLastPoint; // The point before last point 486private Point ReadPoint(char cmd, bool allowcomma) 504private Point Reflect() 613Point p;
Core\CSharp\System\Windows\Media\StreamGeometryContext.cs (11)
100public abstract void BeginFigure(Point startPoint, bool isFilled, bool isClosed); 105public abstract void LineTo(Point point, bool isStroked, bool isSmoothJoin); 110public abstract void QuadraticBezierTo(Point point1, Point point2, bool isStroked, bool isSmoothJoin); 115public abstract void BezierTo(Point point1, Point point2, Point point3, bool isStroked, bool isSmoothJoin); 120public abstract void PolyLineTo(IList<Point> points, bool isStroked, bool isSmoothJoin); 125public abstract void PolyQuadraticBezierTo(IList<Point> points, bool isStroked, bool isSmoothJoin); 130public abstract void PolyBezierTo(IList<Point> points, bool isStroked, bool isSmoothJoin); 141public abstract void ArcTo(Point point, Size size, double rotationAngle, bool isLargeArc, bool sweepDirection, bool isStroked, bool isSmoothJoin);