man SoCone () - cone shape node
NAME
SoCone - cone shape node
INHERITS FROM
SoBase > SoFieldContainer > SoNode > SoShape > SoCone
SYNOPSIS
#include <Inventor/nodes/SoCone.h>
enum Part {
c
}
c
}
The conical part
c
}
c
}
The bottom circular face
c
}
c
}
All parts
}
Fields from class SoCone:
c
}
c
}
parts
c
}
c
}
bottomRadius
c
}
c
}
height
Methods from class SoCone:
c
}
c
}
SoCone()
c
}
c
}
addPart(SoCone::Part part)
c
}
c
}
removePart(SoCone::Part part)
c
}
c
}
hasPart(SoCone::Part part) const
c
}
c
}
getClassTypeId()
Methods from class SoNode:
c
}
c
}
setOverride(SbBool state)
c
}
c
}
isOverride() const
c
}
c
}
copy(SbBool copyConnections = FALSE) const
c
}
c
}
affectsState() const
c
}
c
}
getByName(const SbName &name)
c
}
c
}
getByName(const SbName &name, SoNodeList &list)
Methods from class SoFieldContainer:
c
}
c
}
setToDefaults()
c
}
c
}
hasDefaultValues() const
c
}
c
}
fieldsAreEqual(const SoFieldContainer *fc) const
c
}
c
}
copyFieldValues(const SoFieldContainer *fc, SbBool copyConnections = FALSE)
c
}
c
}
set(const char *fieldDataString)
c
}
c
}
get(SbString &fieldDataString)
c
}
c
}
getFields(SoFieldList &resultList) const
c
}
c
}
getField(const SbName &fieldName) const
c
}
c
}
getFieldName(const SoField *field, SbName &fieldName) const
c
}
c
}
isNotifyEnabled() const
c
}
c
}
enableNotify(SbBool flag)
Methods from class SoBase:
c
}
c
}
ref()
c
}
c
}
unref() const
c
}
c
}
unrefNoDelete() const
c
}
c
}
touch()
c
}
c
}
getTypeId() const
c
}
c
}
isOfType(SoType type) const
c
}
c
}
setName(const SbName &name)
c
}
c
}
getName() const
DESCRIPTION
This node represents a simple cone whose central axis is aligned with the y-axis. By default, the cone is centered at (0,0,0) and has a size of -1 to +1 in all three directions. The cone has a radius of 1 at the bottom and a height of 2, with its apex at 1. The cone has two parts: the sides and the bottom. The cone is transformed by the current cumulative transformation and is drawn with the current lighting model, drawing style, material, and geometric complexity. If the current material binding is PER_PART or PER_PART_INDEXED, the first current material is used for the sides of the cone, and the second is used for the bottom. Otherwise, the first material is used for the entire cone. When a texture is applied to a cone, it is applied differently to the sides and bottom. On the sides, the texture wraps counterclockwise (from above) starting at the back of the cone. The texture has a vertical seam at the back, intersecting the yz-plane. For the bottom, a circle is cut out of the texture square and applied to the cone's base circle. The texture appears right side up when the top of the cone is tilted away from the camera.
FIELDS
c
}
c
}
parts
Visible parts of cone.
c
}
c
}
bottomRadius
c
}
c
}
height
These define the cone's height and the radius of the base circle; values must be greater than 0.0.
METHODS
c
}
c
}
SoCone()
Creates a cone node with default settings.
c
}
c
}
addPart(SoCone::Part part)
c
}
c
}
removePart(SoCone::Part part)
These are convenience functions that make it easy to turn on or off a part of the cone.
c
}
c
}
hasPart(SoCone::Part part) const
This convenience function returns whether a given part is on or off.
c
}
c
}
getClassTypeId()
Returns type identifier for this class.
ACTION BEHAVIOR
SoGLRenderAction
Draws cone based on the current coordinates, materials, drawing style, and so on.
SoRayPickAction
Intersects the ray with the cone. The part of the cone that was picked is available from the SoConeDetail.
SoGetBoundingBoxAction
Computes the bounding box that encloses the cone.
SoCallbackAction
If any triangle callbacks are registered with the action, they will be invoked for each successive triangle that approximates the cone.
FILE FORMAT/DEFAULTS
Cone { parts ALL bottomRadius 1 height 2 }
SEE ALSO
SoConeDetail, SoCube, SoCylinder, SoSphere