All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.models.geometry.Vector3f Maven / Gradle / Ivy

/**
 * Copyright (C) 2009-2014 BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package org.bimserver.models.geometry;

import org.bimserver.emf.IdEObject;

/**
 * 
 * A representation of the model object 'Vector3f'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.geometry.Vector3f#getX X}
  • *
  • {@link org.bimserver.models.geometry.Vector3f#getY Y}
  • *
  • {@link org.bimserver.models.geometry.Vector3f#getZ Z}
  • *
* * @see org.bimserver.models.geometry.GeometryPackage#getVector3f() * @model * @extends IdEObject * @generated */ public interface Vector3f extends IdEObject { /** * Returns the value of the 'X' attribute. * *

* If the meaning of the 'X' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'X' attribute. * @see #setX(double) * @see org.bimserver.models.geometry.GeometryPackage#getVector3f_X() * @model * @generated */ double getX(); /** * Sets the value of the '{@link org.bimserver.models.geometry.Vector3f#getX X}' attribute. * * * @param value the new value of the 'X' attribute. * @see #getX() * @generated */ void setX(double value); /** * Returns the value of the 'Y' attribute. * *

* If the meaning of the 'Y' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Y' attribute. * @see #setY(double) * @see org.bimserver.models.geometry.GeometryPackage#getVector3f_Y() * @model * @generated */ double getY(); /** * Sets the value of the '{@link org.bimserver.models.geometry.Vector3f#getY Y}' attribute. * * * @param value the new value of the 'Y' attribute. * @see #getY() * @generated */ void setY(double value); /** * Returns the value of the 'Z' attribute. * *

* If the meaning of the 'Z' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Z' attribute. * @see #setZ(double) * @see org.bimserver.models.geometry.GeometryPackage#getVector3f_Z() * @model * @generated */ double getZ(); /** * Sets the value of the '{@link org.bimserver.models.geometry.Vector3f#getZ Z}' attribute. * * * @param value the new value of the 'Z' attribute. * @see #getZ() * @generated */ void setZ(double value); } // Vector3f




© 2015 - 2024 Weber Informatics LLC | Privacy Policy