DCS World Typescript
    Preparing search index...

    Position is a composite structure. It consists of both coordinate vector and orientation matrix.

    Position3 (also known as "Pos3" for short) is a table that has the following format: { p: l_Vec3, x: l_Vec3, y: l_Vec3, z: l_Vec3 }

    interface l_Position3 {
        p: l_Vec3;
        x: l_Vec3;
        y: l_Vec3;
        z: l_Vec3;
    }
    Index

    Properties

    p x y z

    Properties