• Creates a new parameter expression. The difference with point is that you can change the value of a parameter later on, and the styling will be updated to reflect the new value without having to re-create the expressions in which it is used. Only points may be used as value.

      var parameter = ExpressionFactory.pointParameter(p1);
    ...
    parameter.value = p2;//Only ever assign points.

    Parameters

    • value: Vector3

      The initial value of the parameter. Can be an object literal with x, y and z properties.

    Returns ParameterExpression<Vector3>

    A parameter expression.