A field specification defines properties of sources used in a ray trace.

interface FieldSpec {
    type: "angle" | "point source";
    units: string;
    value: number;
}

Hierarchy (View Summary)

Properties

Properties

type: "angle" | "point source"

The type of field spec.

units: string
value: number