C# Class SharpVectors.Dom.Svg.SvgPoint

Many of the SVG DOM interfaces refer to objects of class SvgPoint. An SvgPoint is an (x,y) coordinate pair. When used in matrix operations, an SvgPoint is treated as a vector of the form: [x] [y] [1]
Inheritance: ISvgPoint
Exibir arquivo Open project: codebutler/savagesvg Class Usage Examples

Public Methods

Method Description
MatrixTransform ( ISvgMatrix matrix ) : ISvgPoint
SvgPoint ( double x, double y ) : System
lerp ( SvgPoint that, double percent ) : SvgPoint
operator ( ) : SvgPoint

Method Details

MatrixTransform() public method

public MatrixTransform ( ISvgMatrix matrix ) : ISvgPoint
matrix ISvgMatrix
return ISvgPoint

SvgPoint() public method

public SvgPoint ( double x, double y ) : System
x double
y double
return System

lerp() public method

public lerp ( SvgPoint that, double percent ) : SvgPoint
that SvgPoint
percent double
return SvgPoint

operator() public static method

public static operator ( ) : SvgPoint
return SvgPoint