Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Andrew Bauer
VTK
Commits
d6e00bb7
Commit
d6e00bb7
authored
Sep 14, 1994
by
Will Schroeder
Browse files
ENH: New GetVectorMacro
parent
475364bf
Changes
7
Hide whitespace changes
Inline
Side-by-side
include/Filter.hh
View file @
d6e00bb7
...
...
@@ -39,7 +39,7 @@ public:
protected:
virtual
void
Execute
()
{
vlErrorMacro
(
<<
"Execute is a Filter subclass respons
a
bility"
);};
{
vlErrorMacro
(
<<
"Execute is a Filter subclass respons
i
bility"
);};
char
Updating
;
void
(
*
StartMethod
)(
void
*
);
void
*
StartMethodArg
;
...
...
include/Locator.hh
View file @
d6e00bb7
...
...
@@ -49,7 +49,7 @@ public:
// Description:
// Set the number of divisions in x-y-z directions.
vlSetVector3Macro
(
Divisions
,
int
);
vlGetVectorMacro
(
Divisions
,
int
);
vlGetVectorMacro
(
Divisions
,
int
,
3
);
// Description:
// Boolean controls whether automatic subdivision size is computed
...
...
include/Plane.hh
View file @
d6e00bb7
...
...
@@ -43,10 +43,10 @@ public:
void
EvaluateNormal
(
float
x
,
float
y
,
float
z
,
float
n
[
3
]);
vlSetVector3Macro
(
Normal
,
float
);
vlGetVectorMacro
(
Normal
,
float
);
vlGetVectorMacro
(
Normal
,
float
,
3
);
vlSetVector3Macro
(
Origin
,
float
);
vlGetVectorMacro
(
Origin
,
float
);
vlGetVectorMacro
(
Origin
,
float
,
3
);
protected:
float
Normal
[
3
];
...
...
include/Quadric.hh
View file @
d6e00bb7
...
...
@@ -37,7 +37,7 @@ public:
void
SetCoefficients
(
float
a
[
10
]);
void
SetCoefficients
(
float
a0
,
float
a1
,
float
a2
,
float
a3
,
float
a4
,
float
a5
,
float
a6
,
float
a7
,
float
a8
,
float
a9
);
vlGetVectorMacro
(
Coefficients
,
float
);
vlGetVectorMacro
(
Coefficients
,
float
,
10
);
protected:
float
Coefficients
[
10
];
...
...
include/Sphere.hh
View file @
d6e00bb7
...
...
@@ -37,7 +37,7 @@ public:
vlGetMacro
(
Radius
,
float
);
vlSetVector3Macro
(
Origin
,
float
);
vlGetVectorMacro
(
Origin
,
float
);
vlGetVectorMacro
(
Origin
,
float
,
3
);
protected:
float
Radius
;
...
...
include/StrData.hh
View file @
d6e00bb7
...
...
@@ -53,7 +53,7 @@ public:
// specific object methods
void
SetDimensions
(
int
i
,
int
j
,
int
k
);
void
SetDimensions
(
int
dim
[
3
]);
vlGetVectorMacro
(
Dimensions
,
int
);
vlGetVectorMacro
(
Dimensions
,
int
,
3
);
int
GetDataDimension
();
...
...
include/StrPts.hh
View file @
d6e00bb7
...
...
@@ -46,13 +46,13 @@ public:
// Set the aspect ratio of the cubical cells that compose the structured
// point set.
vlSetVector3Macro
(
AspectRatio
,
float
);
vlGetVectorMacro
(
AspectRatio
,
float
);
vlGetVectorMacro
(
AspectRatio
,
float
,
3
);
// Description:
// Set the origin of the data. The origin plus aspect ratio determine the
// position in space of the structured points.
vlSetVector3Macro
(
Origin
,
float
);
vlGetVectorMacro
(
Origin
,
float
);
vlGetVectorMacro
(
Origin
,
float
,
3
);
protected:
float
Origin
[
3
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment