コード例 #1
0
        public override void Read(BinaryReader br)
        {
            base.Read(br);

            UpperLeft  = new FEVector2();
            LowerRight = new FEVector2();
            UpperLeft.Read(br);
            LowerRight.Read(br);
        }
コード例 #2
0
        public override void Read(BinaryReader br)
        {
            base.Read(br);

            TopLeftUV     = new FEVector2[3];
            BottomRightUV = new FEVector2[3];
            PivotRotation = new FEVector3();

            for (int i = 0; i < TopLeftUV.Length; i++)
            {
                TopLeftUV[i] = new FEVector2();
                TopLeftUV[i].Read(br);
            }

            for (int i = 0; i < BottomRightUV.Length; i++)
            {
                BottomRightUV[i] = new FEVector2();
                BottomRightUV[i].Read(br);
            }

            PivotRotation.Read(br);
        }
コード例 #3
0
 public FrontendImage(FrontendImage original) : this(original as FrontendObject)
 {
     ImageFlags = original.ImageFlags;
     UpperLeft  = original.UpperLeft;
     LowerRight = original.LowerRight;
 }