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