Some basic question about ranges

Started by
7 comments, last by belfegor 11 years, 11 months ago
I am sorry for opening a topic for this but i am unable to get correct keywords to search for this.

If i do "dot" operation on two vectors i get value in between -1 & 1 right?
Hot to scale it proportionally to get it to 0 - 1 range?

I can't wrap my head around this right now.

Thanks for your time.
Advertisement
You add 1 and divide by 2.

o3o


I am sorry for opening a topic for this but i am unable to get correct keywords to search for this.

That is what the forum is here for :)

If i do "dot" operation on two vectors i get value in between -1 & 1 right?
Hot to scale it proportionally to get it to 0 - 1 range?
[/quote]
The dot product could be any value. It's the projection of one vector onto another vector.

http://mathworld.wolfram.com/DotProduct.html

Why do you need to scale it so? The fact that you need to scale it to 0-1 is odd to me.

Regardless scaling a range to a-b from x-y where z is your value and z' is your clamped value should be like this:
z'=(a-x)+z*([b-a]/[y-x])
Thanks.

I am sorry but that link you gave is useless to me as i dont understand that matematical symbols, have any basic one to understand those?

picture.jpg

What this big 'E' means and why does it have numbers and letters below and above?

Thanks.

I am sorry but that link you gave is useless to me as i dont understand that matematical symbols, have any basic one to understand those?


maybe khan academy will be better. With pretty graphics too :D

I have seen many links with those math symbols in them and its more proof of a concept rather then a tutorial that explains how things works. Someone who actually can read them already knows what to do without the need to read those pointless articles.
Unfortunately 99% of books also follows same pattern witch makes learning pretty hard.
The books and links are referencing algebra and calculus formulas. Which are quite central to games in general. I do not enjoy just the theorems particularly either, but calling them 'pointless' is a little harsh.

But, if you are unwilling to learn the actual math behind it (the dot product is simple and powerful enough to not really matter) here is an article explaining it in fairly easy terms.




[color=#000000]
A [font="Trebuchet MS"]· B = A[sub]1[/sub]B[sub]1[/sub] + ... + A[sub]n[/sub]B[sub]n[/sub][/font][color=#000000]
[font="Trebuchet MS"]The dot product is thus the sum of the products of each component of the two vectors. For example if A and B were 3D vectors:[/font][color=#000000]
A [font="Trebuchet MS"]· B = A.x * B.x + A.y * B.y + A.z * B.z[/font]

[/quote]

The books and links are referencing algebra and calculus formulas. Which are quite central to games in general. I do not enjoy just the theorems particularly either, but calling them 'pointless' is a little harsh.

I think his point is that you have to know the math to understand all the articles, but if you know the math then you don't need the articles. That's what I got from his meaning of "pointless".

Anyway, if you start at the beginning of the khan academy calculus playlist he should explain what everything means as he goes through. It's one of the best resources on math around tbh.

...but calling them 'pointless' is a little harsh.


Yes, you are right, excuse my frustration. sad.png

@
way2lazy2care

Thanks.

This topic is closed to new replies.

Advertisement