Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Matrix4x4.operator *

static function operator *(lhs: Matrix4x4, rhs: Matrix4x4): Matrix4x4;
static Matrix4x4 operator *(Matrix4x4 lhs, Matrix4x4 rhs);
static def operator *(lhs as Matrix4x4, rhs as Matrix4x4) as Matrix4x4

Description

Multiplies two matrices.

The returned result is lhs * rhs.

static function operator *(lhs: Matrix4x4, v: Vector4): Vector4;
static Vector4 operator *(Matrix4x4 lhs, Vector4 v);
static def operator *(lhs as Matrix4x4, v as Vector4) as Vector4

Description

Transforms a Vector4 by a matrix.