Celestine API Documentation - v0.2.0
    Preparing search index...

    Interface AspectDefinition

    Definition of an aspect type with its properties.

    This defines the static properties of an aspect type (angle, symbol, etc.) as opposed to a detected aspect between two specific bodies.

    interface AspectDefinition {
        type: AspectType;
        angle: number;
        symbol: string;
        defaultOrb: number;
        classification: AspectClassification;
        nature: AspectNature;
        name: string;
        harmonic: number;
    }
    Index

    Properties

    The aspect type identifier

    angle: number

    Exact angle in degrees (0-180)

    symbol: string

    Unicode symbol for the aspect

    defaultOrb: number

    Default orb in degrees

    classification: AspectClassification

    Major or minor classification

    nature: AspectNature

    Harmonious, dynamic, or neutral

    name: string

    Human-readable name

    harmonic: number

    Harmonic number (360 / angle)