operator *

operator *(Point2, int)

public static Point2 operator *(Point2 a, int b) ;

説明

Point2の乗算。

パラメーター

パラメーター名 説明
a 乗算するPoint2
b 乗算するPoint2

戻り値

乗算した結果を返す。

operator *(int, Point2)

public static Point2 operator *(int a, Point2 b) ;

説明

Point2の乗算。

パラメーター

パラメーター名 説明
a 乗算するint
b 乗算するPoint2

戻り値

乗算した結果を返す。