C# 클래스 BeardedManStudios.Network.BeardedMath

A class that is to be extended to support math models that are not currently available in any currently available libraries
파일 보기 프로젝트 열기: drakelinglabs/unityarmada 1 사용 예제들

공개 메소드들

메소드 설명
IsNumber ( object obj ) : bool

Used to determine if a specified object is a number type

Lerp ( double a0, double a1, float t ) : double

Precise method which guarantees v = v1 when t = 1, Mathf doesn't support doubles so this one will

메소드 상세

IsNumber() 공개 정적인 메소드

Used to determine if a specified object is a number type
public static IsNumber ( object obj ) : bool
obj object The object to evaluate if it is a number
리턴 bool

Lerp() 공개 정적인 메소드

Precise method which guarantees v = v1 when t = 1, Mathf doesn't support doubles so this one will
public static Lerp ( double a0, double a1, float t ) : double
a0 double
a1 double
t float
리턴 double