From e974194af0af0f1a980542b2135bfd1be32dad23 Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Wed, 12 Mar 2025 01:36:42 +0300 Subject: [PATCH] /docs/wiki: G1. Trigonometry starter --- docs/wiki/index.html | 4 ++-- docs/wiki/template.html | 2 +- docs/wiki/trigonometry.html | 46 +++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 docs/wiki/trigonometry.html diff --git a/docs/wiki/index.html b/docs/wiki/index.html index a64409a..130ab0d 100644 --- a/docs/wiki/index.html +++ b/docs/wiki/index.html @@ -9,7 +9,7 @@ Awesomeness - + @@ -32,7 +32,7 @@

T3.1 Overview

-

G1. Making 2.5D Shooters

+

G1. Trigonometry

diff --git a/docs/wiki/template.html b/docs/wiki/template.html index 95a2055..550f486 100644 --- a/docs/wiki/template.html +++ b/docs/wiki/template.html @@ -6,7 +6,7 @@

X1. {About}{twn}

- Go back + Go back

X1.1 {Section}

Text diff --git a/docs/wiki/trigonometry.html b/docs/wiki/trigonometry.html new file mode 100644 index 0000000..e13edcd --- /dev/null +++ b/docs/wiki/trigonometry.html @@ -0,0 +1,46 @@ + + + + Townengine Wiki : Trigonometry + + + +

G1. Trigonometry{twn}

+ Go back +
+

Truth is, most games are played in continuous space, where geometry matters. + Math classes turn out to be not so useless after all. + But even if you don't know your numbers well, you can compose functions by their meaning, and not number logic. + This page will try to help you with that, providing examples. +

+ +

the Hell are Vectors +

+

There are distinct meanings they posses: position in space, travel between points and direction. + + Often you need to juggle those representation around. +

For example, player and enemy positions by themselves don't tell you anything about their spatial relation. + For that you need to compute the difference between them, which is plain per component subtraction. + Resulted direction of travel depends on order of inputs, - it will point to position on the right side, the one you subtract with, but not from. + +

It's important to understand that after subtraction the travel vector doesn't have relation with original positions, + it is effectively in a subspace, where (0,0,0) is at position you subtracted with to get it. + Operation is reversible by means of addition, resulting in position in space once again. + +

I often forget what the direction is pointed at but here's a quick way to remind yourself: take two numbers, 10 and 0, and try subtracting them in different order. + Sign of result will tell you which part is pointed at, +10 -> direction is to the 10, -10 -> direction is to the 0. (Draw it in your head) + +

Sometimes direction is more important than the travel, for which you need to drop the length of it. + This is called normalization, where result is called a normal (You probably heard those terms). + This is achieved by dividing every component by the length (magnitude) of vector itself. + Length is computed as sqrt(x*x, y*y, z*z). This effectively creates a vector of length 1. + As every direction sized the same, when graphed they trace a circle. +

+ +

Center between two points +

+

Method one. Add two positions and divide them by two: (a + b) / 2. This is cheap, but harder to remember. +

Method two. Find the travel between points, divide it by two and then translate the origin: (a + (a - b) / 2) +

+ +
T1. About TownengnineG1. Making 2.5D ShootersG1. Trigonometry
T2. Input System