C# Class Revise.Files.ZMO.Channels.NormalChannel

Represents a normal channel.
Inheritance: Revise.Files.ZMO.Channels.MotionChannel
Datei anzeigen Open project: osROSE/UnityRose

Private Properties

Property Type Description

Public Methods

Method Description
NormalChannel ( ) : System

Initializes a new instance of the NormalChannel class.

ReadFrame ( BinaryReader reader, int frame ) : void

Reads a channel frame from the underlying stream.

WriteFrame ( BinaryWriter writer, int frame ) : void

Writes the specified channel frame to the underlying stream.

Method Details

NormalChannel() public method

Initializes a new instance of the NormalChannel class.
public NormalChannel ( ) : System
return System

ReadFrame() public method

Reads a channel frame from the underlying stream.
public ReadFrame ( BinaryReader reader, int frame ) : void
reader System.IO.BinaryReader The reader.
frame int The frame to read.
return void

WriteFrame() public method

Writes the specified channel frame to the underlying stream.
public WriteFrame ( BinaryWriter writer, int frame ) : void
writer System.IO.BinaryWriter The writer.
frame int The frame to write.
return void