About 'Rotating & Scaling Stroke Meshes'!

In this video (objectives)…

  1. The rotation and scaling maths.
  2. The code outline.
  3. Rotating and scaling APIs.

After watching (learning outcomes)…

How to rotate and scale to fit between two points.

(Unique Video Reference: 9_LP_VR2)

We would love to know…

  • What you found good about this lecture?
  • What we could do better?

Remember that you can reply to this topic, or create a new topic. The easiest way to create a new topic is to follow the link in Resources. That way the topic will…

  • Be in the correct forum (for the course).
  • Be in the right sub-forum (for the section)
  • Have the correct lecture tag.

Enjoy your stay in our thriving community!

The way I solved the issue where the PreviousCursorLocation starts from the origin was by using this code:

if (StrokeMeshes->GetInstanceCount() == 0)
{
   PreviousCursorLocation = CursorLocation;
}
FTransform StrokeTransform = GetNextSegmentTransform(CursorLocation);
...
1 Like

Privacy & Terms