C# Class datastructures.BFSLeaf

Represents a leaf node of a BFSOctree. A leaf doesn't contain any positional data, but only visual data.
显示文件 Open project: denniskb/asvo_cuda

Public Properties

Property Type Description
visualData VisualData

Public Methods

Method Description
BFSLeaf ( VisualData visualData )

Constructs a new leaf node.

export ( BinaryWriter writer ) : void

Writes the contents of this BFSLeaf to a binary stream using the provided BinaryWriter. Output-format: bytes: type/format: interpretation: =================================================== sizeof(VisualData) VisualData visual data See also VisualData.export for how the composed data types are being exported.

Method Details

BFSLeaf() public method

Constructs a new leaf node.
public BFSLeaf ( VisualData visualData )
visualData VisualData visual data

export() public method

Writes the contents of this BFSLeaf to a binary stream using the provided BinaryWriter. Output-format: bytes: type/format: interpretation: =================================================== sizeof(VisualData) VisualData visual data See also VisualData.export for how the composed data types are being exported.
public export ( BinaryWriter writer ) : void
writer BinaryWriter The BinaryWriter used to write to the stream.
return void

Property Details

visualData public_oe property

public VisualData,datastructures visualData
return VisualData