C# 클래스 Accord.Point

파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
X float
Y float

공개 메소드들

메소드 설명
Add ( Point point1, Point point2 ) : Point

Addition operator - adds values of two points.

Add ( Point point, float valueToAdd ) : Point

Addition operator - adds scalar to the specified point.

DistanceTo ( Point anotherPoint ) : float

Calculate Euclidean distance between two points.

Divide ( Point point, float factor ) : Point

Division operator - divides coordinates of the specified point by scalar value.

Equals ( object obj ) : bool

Check if this instance of Point equal to the specified one.

EuclideanNorm ( ) : float

Calculate Euclidean norm of the vector comprised of the point's coordinates - distance from (0, 0) in other words.

GetHashCode ( ) : int

Get hash code for this instance.

Multiply ( Point point, float factor ) : Point

Multiplication operator - multiplies coordinates of the specified point by scalar value.

Point ( float x, float y ) : System

Initializes a new instance of the Point structure.

Round ( ) : IntPoint

Rounds the single precision point.

SquaredDistanceTo ( Point anotherPoint ) : float

Calculate squared Euclidean distance between two points.

Subtract ( Point point1, Point point2 ) : Point

Subtraction operator - subtracts values of two points.

Subtract ( Point point, float valueToSubtract ) : Point

Subtraction operator - subtracts scalar from the specified point.

ToString ( ) : string

Get string representation of the class.

operator ( ) : Point

Addition operator - adds values of two points.

operator ( ) : bool

Equality operator - checks if two points have equal coordinates.

메소드 상세

Add() 공개 정적인 메소드

Addition operator - adds values of two points.
public static Add ( Point point1, Point point2 ) : Point
point1 Point First point for addition.
point2 Point Second point for addition.
리턴 Point

Add() 공개 정적인 메소드

Addition operator - adds scalar to the specified point.
public static Add ( Point point, float valueToAdd ) : Point
point Point Point to increase coordinates of.
valueToAdd float Value to add to coordinates of the specified point.
리턴 Point

DistanceTo() 공개 메소드

Calculate Euclidean distance between two points.
public DistanceTo ( Point anotherPoint ) : float
anotherPoint Point Point to calculate distance to.
리턴 float

Divide() 공개 정적인 메소드

Division operator - divides coordinates of the specified point by scalar value.
public static Divide ( Point point, float factor ) : Point
point Point Point to divide coordinates of.
factor float Division factor.
리턴 Point

Equals() 공개 메소드

Check if this instance of Point equal to the specified one.
public Equals ( object obj ) : bool
obj object Another point to check equalty to.
리턴 bool

EuclideanNorm() 공개 메소드

Calculate Euclidean norm of the vector comprised of the point's coordinates - distance from (0, 0) in other words.
public EuclideanNorm ( ) : float
리턴 float

GetHashCode() 공개 메소드

Get hash code for this instance.
public GetHashCode ( ) : int
리턴 int

Multiply() 공개 정적인 메소드

Multiplication operator - multiplies coordinates of the specified point by scalar value.
public static Multiply ( Point point, float factor ) : Point
point Point Point to multiply coordinates of.
factor float Multiplication factor.
리턴 Point

Point() 공개 메소드

Initializes a new instance of the Point structure.
public Point ( float x, float y ) : System
x float X axis coordinate.
y float Y axis coordinate.
리턴 System

Round() 공개 메소드

Rounds the single precision point.
public Round ( ) : IntPoint
리턴 IntPoint

SquaredDistanceTo() 공개 메소드

Calculate squared Euclidean distance between two points.
public SquaredDistanceTo ( Point anotherPoint ) : float
anotherPoint Point Point to calculate distance to.
리턴 float

Subtract() 공개 정적인 메소드

Subtraction operator - subtracts values of two points.
public static Subtract ( Point point1, Point point2 ) : Point
point1 Point Point to subtract from.
point2 Point Point to subtract.
리턴 Point

Subtract() 공개 정적인 메소드

Subtraction operator - subtracts scalar from the specified point.
public static Subtract ( Point point, float valueToSubtract ) : Point
point Point Point to decrease coordinates of.
valueToSubtract float Value to subtract from coordinates of the specified point.
리턴 Point

ToString() 공개 메소드

Get string representation of the class.
public ToString ( ) : string
리턴 string

operator() 공개 정적인 메소드

Addition operator - adds values of two points.
public static operator ( ) : Point
리턴 Point

operator() 공개 정적인 메소드

Equality operator - checks if two points have equal coordinates.
public static operator ( ) : bool
리턴 bool

프로퍼티 상세

X 공개적으로 프로퍼티

X coordinate.
public float X
리턴 float

Y 공개적으로 프로퍼티

Y coordinate.
public float Y
리턴 float