I am a little confused…
Dim dx As Double = velocity * deltaT * cos(heading)
Dim dy as Double = velocity * deltaT * sin(heading)
Dim newPoint as New Point(currentLocation.X, currentLocation.Y)
newPoint.X = newPoint.X + dx
Cannot assign a value to this property
newPoint.X = newPoint.X + dx
What’s wrong?
9 posts - 4 participants