Poonya.SEA3D.Objects.SEAObject3D.Write3D C# (CSharp) Method

Write3D() protected method

protected Write3D ( ByteArray header ) : int
header Poonya.Utils.ByteArray
return int
        protected int Write3D(ByteArray header)
        {
            int attrib = 0x0000;

            if (parent != -1)
            {
                attrib |= 1;
                header.WriteUInt32((uint)parent);
            }

            return attrib;
        }