DrawCircle3D method

void DrawCircle3D(
  1. Vector3C center,
  2. double radius,
  3. Vector3C rotationAxis,
  4. double rotationAngle,
  5. ColorC color,
)

Implementation

void DrawCircle3D(
  Vector3C center,
  double radius,
  Vector3C rotationAxis,
  double rotationAngle,
  ColorC color,
) {
  return _DrawCircle3D(center, radius, rotationAxis, rotationAngle, color);
}