struct FIntPoint { /** Holds the point‘s x-coordinate. */ int32 X; /** Holds the point‘s y-coordinate. */ int32 Y; } 一个包含两个整数的结构体,可以用来表示一个坐标为整数的2D的点,也可以表示网格尺寸,屏幕分辨率等等。
struct FIntPoint { /** Holds the point‘s x-coordinate. */ int32 X; /** Holds the point‘s y-coordinate. */ int32 Y; }
一个包含两个整数的结构体,可以用来表示一个坐标为整数的2D的点,也可以表示网格尺寸,屏幕分辨率等等。
Unreal Math: FIntPoint
原文:https://www.cnblogs.com/haisong1991/p/11273214.html