Esempio n. 1
0
        public override void Randomize()
        {
            int    arraylength = -1;
            Random rand        = new Random();
            int    strlength;

            byte[] strbuf, myByte;

            //position
            position = new Point();
            position.Randomize();
            //orientation
            orientation = new Quaternion();
            orientation.Randomize();
        }
        public override void Randomize()
        {
            int    arraylength = -1;
            Random rand        = new Random();
            int    strlength;

            byte[] strbuf, myByte;

            //translation
            translation = new Vector3();
            translation.Randomize();
            //rotation
            rotation = new Quaternion();
            rotation.Randomize();
        }
        public override void Randomize()
        {
            int    arraylength = -1;
            Random rand        = new Random();
            int    strlength;

            byte[] strbuf, myByte;

            //header
            header = new Header();
            header.Randomize();
            //quaternion
            quaternion = new Quaternion();
            quaternion.Randomize();
        }