public void Set(vec2 point) { Points = new List <vec2>(new vec2[] { point }); }
public PointShape(vec2 point, vec3 color) : base(new List <vec2>(new vec2[] { point }), color) { primitiveType = PrimitiveType.Points; }