Skip to content
GitLab
Menu
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
18314240
Commit
18314240
authored
Jul 11, 1994
by
Will Schroeder
Browse files
*** empty log message ***
parent
0d08bfad
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/PtS2PtSF.hh
View file @
18314240
...
...
@@ -36,10 +36,15 @@ public:
// dataset interface
vlDataSet
*
MakeObject
()
{
return
this
->
PointSet
->
MakeObject
();};
int
GetNumberOfCells
()
{
return
this
->
PointSet
->
GetNumberOfCells
();}
int
GetNumberOfPoints
()
{
return
this
->
PointSet
->
GetNumberOfPoints
();}
float
*
GetPoint
(
int
i
)
{
return
this
->
PointSet
->
GetPoint
(
i
);}
vlCell
*
GetCell
(
int
cellId
)
{
return
this
->
PointSet
->
GetCell
(
cellId
);}
int
GetNumberOfCells
()
{
return
this
->
PointSet
->
GetNumberOfCells
();};
int
GetNumberOfPoints
()
{
return
this
->
PointSet
->
GetNumberOfPoints
();};
float
*
GetPoint
(
int
i
)
{
return
this
->
PointSet
->
GetPoint
(
i
);};
vlCell
*
GetCell
(
int
cellId
)
{
return
this
->
PointSet
->
GetCell
(
cellId
);};
int
GetCellType
(
int
cellId
)
{
return
this
->
PointSet
->
GetCellType
(
cellId
);};
void
GetCellPoints
(
int
cellId
,
vlIdList
&
ptIds
)
{
this
->
PointSet
->
GetCellPoints
(
cellId
,
ptIds
);};
void
GetPointCells
(
int
ptId
,
vlIdList
&
cellIds
)
{
this
->
PointSet
->
GetPointCells
(
ptId
,
cellIds
);};
void
Initialize
();
void
ComputeBounds
()
{
this
->
PointSet
->
ComputeBounds
();};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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