예제 #1
0
        public Chart3DBarShape(IStreamReader reader, RecordType id, ushort length)
            : base(reader, id, length)
        {
            // assert that the correct record type is instantiated
            Debug.Assert(this.Id == ID);

            // initialize class members from stream
            this.riser = (RiserType)reader.ReadByte();
            this.taper = (TaperType)reader.ReadByte();

            // assert that the correct number of bytes has been read from the stream
            Debug.Assert(this.Offset + this.Length == this.Reader.BaseStream.Position);
        }
예제 #2
0
 public Taper(bool m_exists, int m_startIntensity, int m_endIntensity, double m_duration, TaperType direction)
 {
 }