namespace splitter; public struct Point2f { public float X; public float Y; public Point2f(float x, float y) { X = x; Y = y; } }