Тёмный
No video :(

Shortest distance between two skew lines in 3D space. 

DLBmaths
Подписаться 31 тыс.
Просмотров 280 тыс.
50% 1

An example of finding the shortest distance between two lines in 3D space which do not intersect.
The lines are specified only by a point on them and their direction vectors, and from this general points on each line are established in terms of parameters.
The resulting vector from one point to the other then leads to the parameters of the points required and the distance between them.
The same general vector would give the point of intersection if its components could form the zero vector.

Опубликовано:

 

29 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 43   
@Th3DamnCanadian
@Th3DamnCanadian 9 лет назад
The accent is what kept me going.
@tysbaby6339
@tysbaby6339 10 лет назад
Watched the first time for the accent, and the second for the math. Great video :)
@lazerbro
@lazerbro 9 лет назад
That explanation was simply wonderful. You have a real gift of teaching!
@ravipatianirudh
@ravipatianirudh 10 лет назад
this guy should teach everything ever with that accent of his!!!
@DLBmaths
@DLBmaths 11 лет назад
Gosh no. This comes from Glasgow in Scotland. Och aye the noo!
@zeroth404
@zeroth404 10 лет назад
You're an amazing instructor, this was one of the clearest instructional videos I've ever seen. I'm also trying to figure out how to find the shortest distance between to skew line *segments*, could you make a video for that as well?
@pabloe168
@pabloe168 9 лет назад
Awesome accent. Thx for the video.
@9000Gameplays
@9000Gameplays 10 лет назад
I wish you wrote the fp3 vectors chapter in my edexcel textbook. Thank you so much keep up the good work!
@Evil4Ellen
@Evil4Ellen 11 лет назад
omg this was so helpful! thank-you from Australia! (yr 12 :))
@cowboywithnohat
@cowboywithnohat 9 лет назад
Great example! Your explanation really cleared things up!
@chrismcdonald5118
@chrismcdonald5118 10 лет назад
So good! You sir, are fantastic. I may pass this test...
@MrDanielphillis
@MrDanielphillis 11 лет назад
that was fantastic - and with a great accent as well...very clean, well done !!
@JohnSmith-vl7zu
@JohnSmith-vl7zu 10 лет назад
really really really gr8 video. I was searching for good explanation and couldn't find until I found this. now I know how to solve what I want to do with programming. I watched it several times to learn how to do formula. Really thanks :) heh that's gr8 :) non thumbs down on this video I've never saw this before.
@JohnSmith-vl7zu
@JohnSmith-vl7zu 10 лет назад
also here's code if someone will be in need to: public static void ClosestPointsOnTwoLines(Vector3 Origin1, Vector3 Direction1, Vector3 Origin2, Vector3 Direction2, out Vector3 closestPointLine1, out Vector3 closestPointLine2){ closestPointLine1 = Vector3.zero; closestPointLine2 = Vector3.zero; float a = Vector3.Dot(Direction1, Direction1); float b = Vector3.Dot(Direction1, Direction2); float e = Vector3.Dot(Direction2, Direction2); float d = a*e - b*b; // if lines are not parallel if(d != 0){ Vector3 r = Origin1 - Origin2; float c = Vector3.Dot(Direction1, r); float f = Vector3.Dot(Direction2, r); float s = (b*f - c*e) / d; float t = (a*f - c*b) / d; closestPointLine1 = Origin1 + Direction1 * s; closestPointLine2 = Origin2 + Direction2 * t; } } this is code using Unity 3D engine C# language witch is similar to C#/C/C++
@SuhasKashyap07
@SuhasKashyap07 10 лет назад
Thank you! You helped me a lot!
@BDave95
@BDave95 11 лет назад
You sir, are amazing!
@manutdsparta
@manutdsparta 10 лет назад
Great video teaching :) absolutely loved it and the disappearing whiteboard!
@SOULNRG
@SOULNRG 10 лет назад
Absolutely brilliant. Just checking, there are other ways to do this right? I was taught a more difficult way which was taking a scalar projection of a vector between the two points on a line onto the normal vector of the two lines (using cross product) I was just curious if this is the same thing!
@jorgenbengtsson6945
@jorgenbengtsson6945 10 лет назад
it´s the same thing. he is checking where the cross product is zero.
@Raeksis
@Raeksis 9 лет назад
Jorgen Bengtsson Cross product is a vector so it can't equal a scalar. You mean where dot product is 0
@ucanlearnthis5597
@ucanlearnthis5597 9 лет назад
Very clear. Thanks.
@shadow1996100
@shadow1996100 9 лет назад
can we also solve this problem by finding the cross product of both lines then using the method of projection to find the shortest distance?
@flipedup
@flipedup 10 лет назад
You are an absolute god, thank you very much!!!
@Kokoda144
@Kokoda144 11 лет назад
I love the diagram. it all makes sense now.
@DrQlimakz
@DrQlimakz 10 лет назад
There are so many different ways you can do this I just don't know which I prefer.
@mangobanana2982
@mangobanana2982 9 лет назад
wow i had to figure this out by myself because my teacher didnt tell us how to do it, but at least i was able to confirm that i was correct, nice video
@ugh290
@ugh290 10 лет назад
This would only work for infinite lines right? What if your lines are limited in 3d space point to point?
@sakonpure6
@sakonpure6 9 лет назад
If the lines did happen to intersect, does that mean the shortest distance is , for example 0 ( as in your video, if the equations were consistent?)
@detrechius
@detrechius 11 лет назад
thank you, really helpful!
@TheBadManRises
@TheBadManRises 10 лет назад
Great job! really helpful
@elmekiesisrael
@elmekiesisrael 10 лет назад
Good explanation!! thanks man!
@zeeshanmuhammed8883
@zeeshanmuhammed8883 10 лет назад
Just to be clear on the picture you drew the two lines intersecting but I am assuming one goes behind the other right ? cause if they intersect then the shortest distance would be zero at that point. Please clarify
@aashni23
@aashni23 10 лет назад
Wowwwww, thank you so much!
@PhillDaSoccerLad
@PhillDaSoccerLad 11 лет назад
You are a mathematical William Wallace. cheers mate
@ahmadgharaibeh506
@ahmadgharaibeh506 10 лет назад
Why is it at the shortest distance they are perpendicular to PQ
@DLBmaths
@DLBmaths 10 лет назад
The shortest distance to a line is the path perpendicular to the line from any point. The corresponding points on each line at the shortest distance must therefore both be on a line perpendicular to the other.
@JohnSmith-vl7zu
@JohnSmith-vl7zu 10 лет назад
DLBmaths witch one is easier your method? or mine? I'm asking for your honest opinion.
@UNIVERSAL4EVERYONE
@UNIVERSAL4EVERYONE 10 лет назад
can we just let poinT P as (0,2,-1) and Q as (1 , 0 -1) ??
@zeeshanmuhammed8883
@zeeshanmuhammed8883 10 лет назад
I like your accent ! British ehh ?
@DrJ824
@DrJ824 10 лет назад
lolawesome
@danielf9110
@danielf9110 9 лет назад
beutiful
@zoen9471
@zoen9471 9 лет назад
Thank you very much. Lol
@Anerikei1
@Anerikei1 11 лет назад
i've got to ask, are you a canadian
Далее
Find the distance between skew lines
9:24
Просмотров 53 тыс.
Line of Intersection of Two Planes
7:22
Просмотров 423 тыс.
Distance between two skew lines Vectors 2016 Test
5:52
Distance between lines and planes
14:57
Просмотров 5 тыс.
What's a Tensor?
12:21
Просмотров 3,6 млн
Everything You Need to Know About VECTORS
17:42
Просмотров 1,1 млн
Shortest Distance Between Skew Lines
12:26
Просмотров 16 тыс.