Grid3D ClassDelta Engine Documentation
Inheritance Hierarchy

System Object
  DeltaEngine.Entities Entity
    DeltaEngine.Entities DrawableEntity
      DeltaEngine.Rendering3D Entity3D
        DeltaEngine.Rendering3D.Shapes Grid3D

Namespace: DeltaEngine.Rendering3D.Shapes
Assembly: DeltaEngine.Rendering3D.Shapes (in DeltaEngine.Rendering3D.Shapes.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public class Grid3D : Entity3D

The Grid3D type exposes the following members.

Constructors

  NameDescription
Public methodGrid3D(Size, Single)
Initializes a new instance of the Grid3D class
Public methodGrid3D(Vector3D, Size, Single)
Initializes a new instance of the Grid3D class
Top
Methods

  NameDescription
Public methodAdd T  (Inherited from Entity3D.)
Public methodAddTag (Inherited from Entity.)
Public methodClearTags (Inherited from Entity.)
Public methodContains T  (Inherited from Entity3D.)
Public methodContainsBehavior T  (Inherited from Entity.)
Public methodContainsTag (Inherited from Entity.)
Protected methodDeactivate (Inherited from Entity.)
Public methodDispose (Inherited from Entity.)
Public methodGet T  (Inherited from Entity3D.)
Protected methodGetActiveBehaviors (Inherited from Entity.)
Protected methodGetComponentsForSaving (Inherited from Entity3D.)
Protected methodGetDrawBehaviors (Inherited from DrawableEntity.)
Public methodGetInterpolatedArray T  (Inherited from DrawableEntity.)
Public methodGetInterpolatedList T  (Inherited from DrawableEntity.)
Public methodGetOrDefault T  (Inherited from Entity.)
Public methodGetTags (Inherited from Entity.)
Protected methodNextUpdateStarted (Inherited from Entity3D.)
Public methodOnDraw T  (Inherited from DrawableEntity.)
Protected methodOnOrientationChanged (Inherited from Entity3D.)
Protected methodOnPositionChanged (Inherited from Entity3D.)
Protected methodOnScaleChanged (Inherited from Entity3D.)
Public methodRemove T  (Inherited from Entity.)
Public methodRemoveTag (Inherited from Entity.)
Public methodSet (Inherited from Entity3D.)
Public methodSetComponents (Inherited from Entity.)
Public methodSetWithoutInterpolation T  (Inherited from Entity3D.)
Public methodStart T  (Inherited from Entity.)
Public methodStop T  (Inherited from Entity.)
Public methodToggleVisibility (Overrides DrawableEntity ToggleVisibility .)
Public methodToString (Inherited from Entity.)
Top
Fields

  NameDescription
Protected fieldcomponents (Inherited from Entity.)
Protected fieldlastOrientation (Inherited from Entity3D.)
Protected fieldlastPosition (Inherited from Entity3D.)
Protected fieldlastTickLerpComponents
Each element can either be a Lerp, a Lerp List or an array of Lerp objects. View code on GitHub
(Inherited from DrawableEntity.)
Top
Properties

  NameDescription
Public propertyDimension
Public propertyGridScale
Public propertyIsActive (Overrides DrawableEntity IsActive.)
Public propertyIsPauseable (Inherited from Entity.)
Public propertyIsVisible (Inherited from DrawableEntity.)
Public propertyNumberOfComponents (Inherited from Entity.)
Public propertyOrientation (Inherited from Entity3D.)
Public propertyPosition
Public propertyRenderLayer (Inherited from DrawableEntity.)
Public propertyScale (Inherited from Entity3D.)
Public propertyUpdatePriority (Inherited from Entity.)
Top
Remarks

Tests: DeltaEngine.Rendering3D.Shapes.Tests.Grid3DTests
Examples

8 unit tests call DeltaEngine.Rendering3D.Shapes.Grid3D
[Test]
public void RenderQuadraticGridWithSizeOfOne()
{
    var grid = CreateQuadraticGrid(1);
    new Line3D(Vector3D.Zero, Vector3D.UnitZ, Color.Red);
    AssertQuadraticGrid(1, grid);
    foreach (var line in grid.lines)
        Assert.IsTrue(line.IsActive);
}
[Test]
public void RenderQuadraticGridWithSizeOfTen()
{
    var grid = CreateQuadraticGrid(10);
    AssertQuadraticGrid(10, grid);
}
[Test, CloseAfterFirstFrame]
public void InactivatingInactivatesLines()
{
    var grid = CreateQuadraticGrid(2);
    grid.IsActive = false;
    foreach (var line in grid.lines)
        Assert.IsFalse(line.IsActive);
}
See Also