C# Класс datastructures.BFSLeaf

Represents a leaf node of a BFSOctree. A leaf doesn't contain any positional data, but only visual data.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
visualData VisualData

Открытые методы

Метод Описание
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.

Описание методов

BFSLeaf() публичный Метод

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

export() публичный Метод

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.
Результат void

Описание свойств

visualData публичное свойство

public VisualData,datastructures visualData
Результат VisualData