drawModelWiresEx function

void drawModelWiresEx(
  1. Model model,
  2. Vector3 position,
  3. Vector3 rotationAxis,
  4. double rotationAngle,
  5. Vector3 scale,
  6. Color tint,
)

Draw a model wires (with texture if set) with extended parameters.

Implementation

void drawModelWiresEx(
  Model model,
  Vector3 position,
  Vector3 rotationAxis,
  double rotationAngle,
  Vector3 scale,
  Color tint,
) {
  return library.DrawModelWiresEx(
    model.ref,
    position.ref,
    rotationAxis.ref,
    rotationAngle,
    scale.ref,
    tint.ref,
  );
}