DrawLine3D method

void DrawLine3D(
  1. Vector3D startPos,
  2. Vector3D endPos,
  3. ColorD color
)

Draw a line in 3D world space

Implementation

void DrawLine3D(
  Vector3D startPos,
  Vector3D endPos,
  ColorD color,
) => run(
  () => _debugLabels.DrawLine3D(startPos, endPos, color),
  () => _flat.DrawLine3D(
    startPos,
    endPos,
    color,
  ),
);