Interface MaskAndWeight<T>

The representation of a weighted blade.

interface MaskAndWeight<T> {
    bitmap: number;
    weight: T;
    asString(names?): string;
    grade(): number;
    neg(): MaskAndWeight<T>;
    reverse(): MaskAndWeight<T>;
    toString(): string;
    wedge(rhs): MaskAndWeight<T>;
}

Type Parameters

  • T

Properties

bitmap: number

A bitmap indicating which blade.

weight: T

The weight of the blade.

Methods