Unreal Math: FIntPoint

 
 
struct FIntPoint
{
	/** Holds the point's x-coordinate. */
	int32 X;
	
	/** Holds the point's y-coordinate. */
	int32 Y;
}

一个包含两个整数的结构体,可以用来表示一个坐标为整数的2D的点,也可以表示网格尺寸,屏幕分辨率等等。

猜你喜欢

转载自www.cnblogs.com/haisong1991/p/11273214.html
今日推荐