SbImageDataAccessorSetColumn Method (SoCpuBufferObject, Int32, Int32, Int32, Int32) |
Set values to a column at specified coordinates.
Namespace: OIV.ImageVizAssembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public bool SetColumn(
SoCpuBufferObject values,
int x,
int z,
int t,
int c
)
Public Function SetColumn (
values As SoCpuBufferObject,
x As Integer,
z As Integer,
t As Integer,
c As Integer
) As Boolean
public:
bool SetColumn(
SoCpuBufferObject^ values,
int x,
int z,
int t,
int c
)
member SetColumn :
values : SoCpuBufferObject *
x : int *
z : int *
t : int *
c : int -> bool
Parameters
- values
- Type: OIV.Inventor.DevicesSoCpuBufferObject
to set one component of the specified column as an array of double. OIV.Inventor.Devices.SoCpuBufferObject cannot be NULL. If its size does not match the required one, false is returned.
- x
- Type: SystemInt32
column coordinate
- z
- Type: SystemInt32
depth coordinate. Default is 0. Useful for 2D images.
- t
- Type: SystemInt32
time coordinate. Default is 0.
- c
- Type: SystemInt32
component number. Default is 0.
Return Value
Type:
Booleantrue if the column is correctly written on image false otherwise
Remarks See Also