コード例 #1
0
        public Primitive(Vector3D position)
        {
            boundingbox = new BoundingBox();

            Position = position;

            material_ = new Material();
        }
コード例 #2
0
        public Primitive()
        {
            boundingbox = new BoundingBox();

            Position = new Vector3D();

            material_ = new Material();
        }