Wiskunde Opdrachten

Algebra GIF

Cosinus

Calculates angles in a triangle using the law of cosines where it also makes renders the triangle even when changing the location using "alpha = Mathf.Acos(((a * a) - (b * b) - (c * c)) / (-2 * b * c)) * Mathf.Rad2Deg" where it debugs the alpha which is one of the angles.

Geometry GIF

The Arrow

The Arrow Math project is the introduction to matrixes and drawing your own mesh using the matrix to give each point of the Arrow its value to draw the perfect looking arrow without having to actually need to draw.

Calculus GIF

EndlessRunner

This is an endless runner where you can also jump calculated using gravity's strenght of 9,81 where the Jump will be calculated based on velocity and the and on if the position is below a begin value on the y axis.

Probability GIF

Final Jump

This is about the calculation of a perfect jump between one platform and another where we use the Quadratic Formula to get the Y position of an object to calculate the jump height and speed also using Mathf.Sqrt on the discriminant.

Trigonometry GIF

InProduct

Explores vector decomposition using the dot product: u * v = |u|v|cos(θ) Decomposes a vector into parallel and perpendicular components, visualizing their interactions geometrically..

InProduct

LinearFunction

Simulates a ball reflecting off a line based on the normal vector and uses the Linear Function to calculate the slope and intercept to let the arrow bounce with a perfect angle which is also calculated back after hitting the line which you can see here. This handles dynamic collision mechanics and visualizes motion and interaction between objects.