A system specification defines some properties of a ray trace through an optical system.

The value property represents the value of the system specification, while the unit property indicates the unit of measurement for that value.

interface SystemSpec {
    units: string;
    value: number;
}

Hierarchy (View Summary)

Properties

Properties

units: string
value: number