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
4cd8ce86
Commit
4cd8ce86
authored
Mar 04, 1995
by
Will Schroeder
Browse files
Initial revision
parent
14a14075
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/IScalars.hh
0 → 100644
View file @
4cd8ce86
/*=========================================================================
Program: Visualization Library
Module: IScalars.hh
Language: C++
Date: $Date$
Version: $Revision$
This file is part of the Visualization Library. No part of this file
or its contents may be copied, reproduced or altered in any way
without the express written consent of the authors.
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 1993, 1994
=========================================================================*/
// .NAME vlIntScalars - integer representation of scalar data
// .SECTION Description
// vlIntScalars is a concrete implementation of vlScalars. Scalars are
// represented using integer values.
#ifndef __vlIntScalars_h
#define __vlIntScalars_h
#include "Scalars.hh"
#include "SArray.hh"
class
vlIntScalars
:
public
vlScalars
{
public:
vlIntScalars
()
{};
vlIntScalars
(
const
vlIntScalars
&
ss
)
{
this
->
S
=
ss
.
S
;};
vlIntScalars
(
const
int
sz
,
const
int
ext
=
1000
)
:
S
(
sz
,
ext
){};
~
vlIntScalars
()
{};
int
Allocate
(
const
int
sz
,
const
int
ext
=
1000
)
{
return
this
->
S
.
Allocate
(
sz
,
ext
);};
void
Initialize
()
{
this
->
S
.
Initialize
();};
char
*
GetClassName
()
{
return
"vlIntScalars"
;};
// vlScalar interface
vlScalars
*
MakeObject
(
int
sze
,
int
ext
=
1000
);
int
GetNumberOfScalars
()
{
return
(
this
->
S
.
GetMaxId
()
+
1
);};
void
Squeeze
()
{
this
->
S
.
Squeeze
();};
float
GetScalar
(
int
i
)
{
return
(
float
)
this
->
S
[
i
];};
void
SetScalar
(
int
i
,
int
s
)
{
this
->
S
[
i
]
=
s
;};
void
SetScalar
(
int
i
,
float
s
)
{
this
->
S
[
i
]
=
(
int
)
s
;};
void
InsertScalar
(
int
i
,
float
s
)
{
S
.
InsertValue
(
i
,(
int
)
s
);};
void
InsertScalar
(
int
i
,
int
s
)
{
S
.
InsertValue
(
i
,
s
);};
int
InsertNextScalar
(
int
s
)
{
return
S
.
InsertNextValue
(
s
);};
int
InsertNextScalar
(
float
s
)
{
return
S
.
InsertNextValue
((
int
)
s
);};
void
GetScalars
(
vlIdList
&
ptIds
,
vlFloatScalars
&
fs
);
// miscellaneous
int
*
WritePtr
(
const
int
id
,
const
int
number
);
vlIntScalars
&
operator
=
(
const
vlIntScalars
&
is
);
void
operator
+=
(
const
vlIntScalars
&
is
)
{
this
->
S
+=
is
.
S
;};
void
Reset
()
{
this
->
S
.
Reset
();};
private:
vlIntArray
S
;
};
// Description:
// Get pointer to data. Useful for direct writes into object. MaxId is bumped
// by number (and memory allocated if necessary). Id is the locaation you
// wish to write into; number is the number of scalars to write.
inline
int
*
vlIntScalars
::
WritePtr
(
const
int
id
,
const
int
number
)
{
return
this
->
S
.
WritePtr
(
id
,
number
);
}
#endif
src/IScalars.cc
0 → 100644
View file @
4cd8ce86
/*=========================================================================
Program: Visualization Library
Module: IScalars.cc
Language: C++
Date: $Date$
Version: $Revision$
This file is part of the Visualization Library. No part of this file
or its contents may be copied, reproduced or altered in any way
without the express written consent of the authors.
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 1993, 1994
=========================================================================*/
#include "IScalars.hh"
vlScalars
*
vlIntScalars
::
MakeObject
(
int
sze
,
int
ext
)
{
return
new
vlIntScalars
(
sze
,
ext
);
}
// Description:
// Deep copy of scalars.
vlIntScalars
&
vlIntScalars
::
operator
=
(
const
vlIntScalars
&
is
)
{
this
->
S
=
is
.
S
;
return
*
this
;
}
void
vlIntScalars
::
GetScalars
(
vlIdList
&
ptId
,
vlFloatScalars
&
fs
)
{
for
(
int
i
=
0
;
i
<
ptId
.
GetNumberOfIds
();
i
++
)
{
fs
.
InsertScalar
(
i
,(
float
)
this
->
S
.
GetValue
(
ptId
.
GetId
(
i
)));
}
}
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