Created by CyanHall.com
on 11/13/2020
, Last updated: 04/30/2021.
πΒ Β Star me if itβs helpful. Dot Product can be used to check how similar two vectors are, ie check if they are looking at the same point.
Dot Product returns the product of the magnitude of two vectors and the `cosine` of the angle between them.
For Normalzied vectors, magnitude = 1, so the result is just the cosin of the angle formed by the vectors.
Dot Product can be used to project the scalar length of one vector onto another.
πΒ Β Star me if itβs helpful. Dot Product can be used to check how similar two vectors are, ie check if they are looking at the same point.
Dot Product returns the product of the magnitude of two vectors and the `cosine` of the angle between them.
For Normalzied vectors, magnitude = 1, so the result is just the cosin of the angle formed by the vectors.
Dot Product can be used to project the scalar length of one vector onto another.
- When the two vectors match, the result will be the magnitude of the vectors multiplied together.
- When the vectors point opposite directions the result will be the product of the magnitudes times
-1
- When they are perpendicular, the result will always be 0.
More