HI!
Any one can tell why VB.Net gives error
Operator '*' is not defined for types 'Microsoft.Dire ctX.Matrix' and
'Microsoft.Dire ctX.Matrix'.
from lines that are below and in C# it works just fine?
How ill solve this? Totally lost now.
EXAMPLES:
VB.Net
Dim m As Matrix = Matrix.Translat ion(0, 0.4F, 0)
m *= Me.TransformMat rix()
dev.Transform.W orld = m
C#
Matrix m = Matrix.Translat ion(0,0.4f,0);
m *= this.TransformM atrix();
dev.Transform.W orld = m;
Any one can tell why VB.Net gives error
Operator '*' is not defined for types 'Microsoft.Dire ctX.Matrix' and
'Microsoft.Dire ctX.Matrix'.
from lines that are below and in C# it works just fine?
How ill solve this? Totally lost now.
EXAMPLES:
VB.Net
Dim m As Matrix = Matrix.Translat ion(0, 0.4F, 0)
m *= Me.TransformMat rix()
dev.Transform.W orld = m
C#
Matrix m = Matrix.Translat ion(0,0.4f,0);
m *= this.TransformM atrix();
dev.Transform.W orld = m;
Comment