/** * Copyright (C) 2009-2013 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 <http://www.gnu.org/licenses/>. */ package org.bimserver.models.ifc2x3tc1; import org.bimserver.emf.IdEObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Vector3f</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.bimserver.models.ifc2x3tc1.Vector3f#getX <em>X</em>}</li> * <li>{@link org.bimserver.models.ifc2x3tc1.Vector3f#getY <em>Y</em>}</li> * <li>{@link org.bimserver.models.ifc2x3tc1.Vector3f#getZ <em>Z</em>}</li> * </ul> * </p> * * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getVector3f() * @model * @extends IdEObject * @generated */ public interface Vector3f extends IdEObject { /** * Returns the value of the '<em><b>X</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>X</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>X</em>' attribute. * @see #setX(float) * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getVector3f_X() * @model * @generated */ float getX(); /** * Sets the value of the '{@link org.bimserver.models.ifc2x3tc1.Vector3f#getX <em>X</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>X</em>' attribute. * @see #getX() * @generated */ void setX(float value); /** * Returns the value of the '<em><b>Y</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Y</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Y</em>' attribute. * @see #setY(float) * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getVector3f_Y() * @model * @generated */ float getY(); /** * Sets the value of the '{@link org.bimserver.models.ifc2x3tc1.Vector3f#getY <em>Y</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Y</em>' attribute. * @see #getY() * @generated */ void setY(float value); /** * Returns the value of the '<em><b>Z</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Z</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Z</em>' attribute. * @see #setZ(float) * @see org.bimserver.models.ifc2x3tc1.Ifc2x3tc1Package#getVector3f_Z() * @model * @generated */ float getZ(); /** * Sets the value of the '{@link org.bimserver.models.ifc2x3tc1.Vector3f#getZ <em>Z</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Z</em>' attribute. * @see #getZ() * @generated */ void setZ(float value); } // Vector3f