summaryrefslogtreecommitdiff
path: root/src/Graphic3d/Graphic3d_ArrayOfPoints.cdl
blob: 10a1f729c20a8e2d1e5e5d8f38940c988b7d704d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- File:	Graphic3d_ArrayOfPoints.cdl
-- Created:	04/01/01 : GG : G005 : Draw ARRAY primitives
--

class ArrayOfPoints from Graphic3d inherits ArrayOfPrimitives from Graphic3d

is

	-- constructor
	Create (
                maxVertexs: Integer from Standard)
	returns mutable ArrayOfPoints from Graphic3d;
	---Purpose: Creates an array of points,
	-- a single pixel point is drawn at each vertex.
	-- The array must be filled using only
	--     the AddVertex(Point) method. 

end;