There are no pointers there. These lines do not use pointers:
That is simply a multiplication and an assignment, i.e. this:csharp Code:
p.X *= (float)frameWidth / W; p.Y *= (float)frameHeight / H;
is shorthand for this:csharp Code:
x *= y;
VB provides the same shorthand operators to use a variable and assign the result back to that variable:csharp Code:
x = x * y;
The only difference in VB would be the removal of the semicolon and the syntax of the cast.csharp Code:
x *= y




Reply With Quote
