Zoomer ClassDelta Engine Documentation
Provides a fast Mandelbrot fractal zoomer, use the Fractal constructor parameters to customize the iterations and color scaling. Utilizes all your CPU cores to calculate new images. Fractal uses doubles, which is pretty good for zooming in about a million times, then it gets blurry. View code on GitHub
Inheritance Hierarchy

System Object
  DeltaEngine.Entities Entity
    FractalZoomer Zoomer

Namespace: FractalZoomer
Assembly: FractalZoomer (in FractalZoomer.exe) Version: 1.1.1.0 (1.1.1)
Syntax

public class Zoomer : Entity

The Zoomer type exposes the following members.

Constructors

  NameDescription
Public methodZoomer
Initializes a new instance of the Zoomer class
Top
Methods

  NameDescription
Public methodAdd T  (Inherited from Entity.)
Public methodAddTag (Inherited from Entity.)
Public methodClearTags (Inherited from Entity.)
Public methodContains T  (Inherited from Entity.)
Public methodContainsBehavior T  (Inherited from Entity.)
Public methodContainsTag (Inherited from Entity.)
Protected methodDeactivate (Inherited from Entity.)
Public methodDispose (Inherited from Entity.)
Public methodGet T 
Gets a specific component, derived classes can return faster cached values (e.g. Entity2D) View code on GitHub
(Inherited from Entity.)
Protected methodGetActiveBehaviors (Inherited from Entity.)
Protected methodGetComponentsForSaving (Inherited from Entity.)
Public methodGetOrDefault T  (Inherited from Entity.)
Public methodGetTags (Inherited from Entity.)
Public methodRemove T  (Inherited from Entity.)
Public methodRemoveTag (Inherited from Entity.)
Public methodSet (Inherited from Entity.)
Public methodSetComponents (Inherited from Entity.)
Public methodStart T  (Inherited from Entity.)
Public methodStop T  (Inherited from Entity.)
Public methodToString (Inherited from Entity.)
Top
Fields

  NameDescription
Protected fieldcomponents (Inherited from Entity.)
Top
Properties

  NameDescription
Public propertyColors
Public propertyIsActive (Inherited from Entity.)
Public propertyIsPauseable (Inherited from Entity.)
Public propertyNumberOfComponents (Inherited from Entity.)
Public propertySize
Public propertyUpdatePriority (Inherited from Entity.)
Top
Remarks

Tests: FractalZoomer.Tests.ZoomerTests
Examples

1 unit tests call FractalZoomer.Zoomer
[Test]
public void ShowInitialZoomer()
{
    new Zoomer(Resolve<Window>());
}
See Also