Workshop.codes
Create

Multiply Last updated September 03, 2025

Description

The product of two numbers or vectors. A vector multiplied by a number will yield a scaled vector. The product of two vectors is equal to the product of each of their components; that is, Vector(A, B, C) * Vector(D, E, F) == Vector(A * D, B * E, C * F).

Snippet

Multiply(0, 0);

Properties

Returns: Float | Vector
Parameters: Value, Value

Value
Type: Float | Vector, Default: Number
The left-hand operand. May be any value that results in a number or a vector.

Value
Type: Float | Vector, Default: Number
The right-hand operand. May be any value that results in a number or a vector.

Workshop.codes