
org.bimserver.models.geometry.GeometryInfo Maven / Gradle / Ivy
Show all versions of pluginbase Show documentation
/**
* 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 'Info'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.geometry.GeometryInfo#getMinBounds Min Bounds}
* - {@link org.bimserver.models.geometry.GeometryInfo#getMaxBounds Max Bounds}
* - {@link org.bimserver.models.geometry.GeometryInfo#getStartVertex Start Vertex}
* - {@link org.bimserver.models.geometry.GeometryInfo#getStartIndex Start Index}
* - {@link org.bimserver.models.geometry.GeometryInfo#getPrimitiveCount Primitive Count}
* - {@link org.bimserver.models.geometry.GeometryInfo#getData Data}
* - {@link org.bimserver.models.geometry.GeometryInfo#getTransformation Transformation}
* - {@link org.bimserver.models.geometry.GeometryInfo#getArea Area}
* - {@link org.bimserver.models.geometry.GeometryInfo#getVolume Volume}
*
*
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo()
* @model
* @extends IdEObject
* @generated
*/
public interface GeometryInfo extends IdEObject {
/**
* Returns the value of the 'Min Bounds' reference.
*
*
* If the meaning of the 'Min Bounds' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Min Bounds' reference.
* @see #setMinBounds(Vector3f)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_MinBounds()
* @model
* @generated
*/
Vector3f getMinBounds();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getMinBounds Min Bounds}' reference.
*
*
* @param value the new value of the 'Min Bounds' reference.
* @see #getMinBounds()
* @generated
*/
void setMinBounds(Vector3f value);
/**
* Returns the value of the 'Max Bounds' reference.
*
*
* If the meaning of the 'Max Bounds' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Max Bounds' reference.
* @see #setMaxBounds(Vector3f)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_MaxBounds()
* @model
* @generated
*/
Vector3f getMaxBounds();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getMaxBounds Max Bounds}' reference.
*
*
* @param value the new value of the 'Max Bounds' reference.
* @see #getMaxBounds()
* @generated
*/
void setMaxBounds(Vector3f value);
/**
* Returns the value of the 'Start Vertex' attribute.
*
*
* If the meaning of the 'Start Vertex' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Start Vertex' attribute.
* @see #setStartVertex(Integer)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_StartVertex()
* @model
* @generated
*/
Integer getStartVertex();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getStartVertex Start Vertex}' attribute.
*
*
* @param value the new value of the 'Start Vertex' attribute.
* @see #getStartVertex()
* @generated
*/
void setStartVertex(Integer value);
/**
* Returns the value of the 'Start Index' attribute.
*
*
* If the meaning of the 'Start Index' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Start Index' attribute.
* @see #setStartIndex(Integer)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_StartIndex()
* @model
* @generated
*/
Integer getStartIndex();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getStartIndex Start Index}' attribute.
*
*
* @param value the new value of the 'Start Index' attribute.
* @see #getStartIndex()
* @generated
*/
void setStartIndex(Integer value);
/**
* Returns the value of the 'Primitive Count' attribute.
*
*
* If the meaning of the 'Primitive Count' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Primitive Count' attribute.
* @see #setPrimitiveCount(Integer)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_PrimitiveCount()
* @model
* @generated
*/
Integer getPrimitiveCount();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getPrimitiveCount Primitive Count}' attribute.
*
*
* @param value the new value of the 'Primitive Count' attribute.
* @see #getPrimitiveCount()
* @generated
*/
void setPrimitiveCount(Integer value);
/**
* Returns the value of the 'Data' reference.
*
*
* If the meaning of the 'Data' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Data' reference.
* @see #setData(GeometryData)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_Data()
* @model
* @generated
*/
GeometryData getData();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getData Data}' reference.
*
*
* @param value the new value of the 'Data' reference.
* @see #getData()
* @generated
*/
void setData(GeometryData value);
/**
* Returns the value of the 'Transformation' attribute.
*
*
* If the meaning of the 'Transformation' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Transformation' attribute.
* @see #setTransformation(byte[])
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_Transformation()
* @model
* @generated
*/
byte[] getTransformation();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getTransformation Transformation}' attribute.
*
*
* @param value the new value of the 'Transformation' attribute.
* @see #getTransformation()
* @generated
*/
void setTransformation(byte[] value);
/**
* Returns the value of the 'Area' attribute.
*
*
* If the meaning of the 'Area' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Area' attribute.
* @see #setArea(double)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_Area()
* @model
* @generated
*/
double getArea();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getArea Area}' attribute.
*
*
* @param value the new value of the 'Area' attribute.
* @see #getArea()
* @generated
*/
void setArea(double value);
/**
* Returns the value of the 'Volume' attribute.
*
*
* If the meaning of the 'Volume' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Volume' attribute.
* @see #setVolume(double)
* @see org.bimserver.models.geometry.GeometryPackage#getGeometryInfo_Volume()
* @model
* @generated
*/
double getVolume();
/**
* Sets the value of the '{@link org.bimserver.models.geometry.GeometryInfo#getVolume Volume}' attribute.
*
*
* @param value the new value of the 'Volume' attribute.
* @see #getVolume()
* @generated
*/
void setVolume(double value);
} // GeometryInfo