public Primitive(Vector3D position)
        {
            boundingbox = new BoundingBox();

            Position = position;

            material_ = new Material();
        }
        public Primitive()
        {
            boundingbox = new BoundingBox();

            Position = new Vector3D();

            material_ = new Material();
        }