If possible please adjust enscript to make this possible
before
direction = direction * -1.0;
after
direction *= -1.0;
direction is of type "vector"
Currently when you try to do this you get this error
If possible please adjust enscript to make this possible
before
direction = direction * -1.0;
after
direction *= -1.0;
direction is of type "vector"
Currently when you try to do this you get this error
Sure but that's not what this about. The vector can be multiplied with a scalar value as shown in the example above. However, the operator *= does not work for it even though it should.
anything from
<thing> = <thing> * <somethingelse>
should be convertable to
<thing> *= <somethingelse>