package agg; public class point_type { float x, y; public point_type() { } public point_type(float x_, float y_) { x = x_; y = y_; } }