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