blob: 630925106264510ac51876a1d03bdfd70a87a69f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-- File: Voxel_Writer.cdl
-- Created: Wed Aug 28 11:23:33 2008
-- Author: Vladislav ROMASHKO
-- <vladislav.romashko@opencascade.com>
---Copyright: Open CASCADE S.A.
class Writer from Voxel
---Purpose: Writes a cube of voxels on disk.
uses
VoxelFileFormat from Voxel,
BoolDS from Voxel,
ColorDS from Voxel,
FloatDS from Voxel,
ExtendedString from TCollection
is
Create
---Purpose: An empty constructor.
returns Writer from Voxel;
SetFormat(me : in out;
format : VoxelFileFormat from Voxel);
---Purpose: Defines the file format for voxels.
-- ASCII - slow and occupies more space on disk.
-- BINARY - fast and occupies less space on disk.
SetVoxels(me : in out;
voxels : BoolDS from Voxel);
---Purpose: Defines the voxels (1bit).
SetVoxels(me : in out;
voxels : ColorDS from Voxel);
---Purpose: Defines the voxels (4bit).
SetVoxels(me : in out;
voxels : FloatDS from Voxel);
---Purpose: Defines the voxels (4bytes).
Write(me;
file : ExtendedString from TCollection)
---Purpose: Writes the voxels on disk
-- using the defined format and file name.
returns Boolean from Standard;
---Private area
-- ============
WriteBoolAsciiVoxels(me;
file : ExtendedString from TCollection)
---Purpose: Writes 1bit voxels on disk in ASCII format.
returns Boolean from Standard
is private;
WriteColorAsciiVoxels(me;
file : ExtendedString from TCollection)
---Purpose: Writes 4bit voxels on disk in ASCII format.
returns Boolean from Standard
is private;
WriteFloatAsciiVoxels(me;
file : ExtendedString from TCollection)
---Purpose: Writes 4bytes voxels on disk in ASCII format.
returns Boolean from Standard
is private;
WriteBoolBinaryVoxels(me;
file : ExtendedString from TCollection)
---Purpose: Writes 1bit voxels on disk in BINARY format.
returns Boolean from Standard
is private;
WriteColorBinaryVoxels(me;
file : ExtendedString from TCollection)
---Purpose: Writes 4bit voxels on disk in BINARY format.
returns Boolean from Standard
is private;
WriteFloatBinaryVoxels(me;
file : ExtendedString from TCollection)
---Purpose: Writes 4bytes voxels on disk in BINARY format.
returns Boolean from Standard
is private;
fields
myFormat : VoxelFileFormat from Voxel;
myBoolVoxels : Address from Standard;
myColorVoxels : Address from Standard;
myFloatVoxels : Address from Standard;
end Writer;
|