CSS Logo XNACS1Lib Library Documentation
XNACS1Primitive Members

Game-Themed Introductory Programming Project   

XNACS1Primitive overview

Public Instance Properties

Center Center of the primitive.
CenterX X coordinate of the center position of the primitive.
CenterY Y coordinate of the center position of the primitive.
Color Color of the primitive. (undefined for PrimitiveSet).
FrontDirection Sets the front direction of the primitive. Setting FrontDireciton will cause the RotateAngle of the primitive to be updated accordingly. y default, when RotateAngle is 0, FrontDireciton points towards (1,0) [positive X-direction]. E.g., if we set RotateAngle to 90-degrees, FrontDireciton will be updated accordinlgy to (0,1) [positive y-direciton], or rotated 90-degress in the anit-clockwise direction
Label Annotated text label to be associated with the primitive.
LabelColor Color of the anontated text label.
MaxBound Upper left corner of the primitive.
MinBound Lower left corner of the Primitive.
RotateAngle Rotate the primitive by the Angle specified (in degree). After the rotation, the FrontDirection of the primitive will be udpated accordingly. By default, when RotateAngle is 0, FrontDireciton points towards (1,0) [positive X-direction]. E.g., if we set RotateAngle to 90-degrees, FrontDireciton will be updated accordinlgy to (0,1) [positive y-direciton], or rotated 90-degress in the anit-clockwise direction
ShouldTravel Defines if the primitive should move by its current velocity. Defaults to false.
Speed Get/Set the speed (magnitude of the Velocity vector) for the velocity.
Texture Texture file name (without the "." or the extension) to cover the primitive.
Velocity Velocity of a primitive. This is a true velocity: with magnitude (speed) and direction for tavel.
VelocityDirection Get/Set the direction of the velocity.
VelocityX Get/Set the x-component of the primitive velocity.
VelocityY Get/Set the y-component of the primitive velocity.
Visible Whether the primitive is visible.

Public Instance Methods

Above Returns if the center of this primitive is "above" (in y) in relation to the center of otherPrimitive.
AddToAutoDrawSet Add this primitive to the AutoDrawSet. If this primitive already exists in the draw set, this function call is ignored. By default, all primitive are added into the AutoDrawSet.
Below Returns if the center of this primitive is "below" (in y) in relation to the center of otherPrimitive.
CollidedOverloaded. Determines if this primitive collides with the otherPrimitive. If true, pos is the colliding position.
Draw If visible, draws the primitive with the associated text label.
HasNonZeroVelocity Retruns if the current velocity is non-zero.
IsInAutoDrawSet Determines if this primitive is in the AutoDrawSet.
LeftOf Returns if the center of this primitive is "to the left" (in x) in relation to the center of otherPrimtive
RemoveFromAutoDrawSet Remove this primitive from the AutoDrawSet. After this function call, this primitive will not be drawn in the application window.
RightOf Returns if the center of this primitive is "to the right" (in x) in relation to the center of otherPrimitive
TopOfAutoDrawSet Make sure this primitive is drawn on top of all other primitives.
TravelPrimitive Moves the primitive during each update cycle. This function is automacially called for all visible primitives. Default behavior is to move the primitive if: . Primitive is visible (invivislble primitive is not updated) . ShouldTravel is true . HasNonZeroVelocity() is true

Protected Instance Methods

DrawPrimitive Draws the primitive.

Protected Internal Instance Properties

Size Get/Set width/height of the primitive.
SizeX Width of the primitive.
SizeY Height of the primitive. For PrimitiveCircle (diameter), PrimitiveRectangle (height), PrimitiveSet (undefined).

See Also

XNACS1Primitive Class | XNACS1Lib Namespace