@Kevin_Bell
Kevin I am no dynamo expert, but perhaps I can answer your question because I think I see the confusion you are having. The origin is relative to the object being moved so if you have a point on the screen, and you want it to move 2 units to the left, that would be an x of -2, or a vector of -2, 0. 0 In which case you can as Konrad is calling it draw a line from the origin to the destination, in a direction, (left) which would be your vector. If you wanted to move the object up 4 units (vertically) from the reference plane it would be a vector of 0,0, 4. If you wanted it to move, “up and away” now you would have something like 2, 3, 4. This type of vector can only work with a single point because there is no need to physically orient the object, because it is just a single point in space and there is no front, right, back, top, or bottom. In a 3D object, however there is. So if you want to move the 3D object you have to first define a normal plane. This mean you have to define where you are starting from like choosing your work plane in revit when you are drawing in 3D. Like ok you want to draw an extrusion? You have to first define what the work plane is and then the extrusion will be “normal” to the work plane. So think of it like that. if you have your work plane defined as the reference plane and draw a 1’-0" extrusion, your are drawing (essentially) a 3D vector in the Z axis or 0,0,1 if you set your work plane as the right/left plane and draw a 1’-0" extrusion, you are essendtially drawing a vector to the left or right of 1’ depending on how you define the extrusion, or -1,0,0 or 1,0,0. does that make sense? What Konrad is not telling you is that when you get more complicated is that Cartesian vectors are added end to end, and only at 90 degree angles to get your object to appear at the resultant location. First you have to start at the starting point only make 90 degree turns (3 of them in Cartesian coordinates to get to any point in space) but first you have to align your self, “normal” to the plane in the direction you want to go in the first place. For example if you want to get to point 1,3,5 you might first align yourself "Normal to the Y plane, which would allow you to travel 1 unit in the x axis, then you would align yourself normal to the X plane and travel 3 units in the y direction, and then you would align yourself to the XY plane and travel 5 units in the Z direction, ending you at point 1, 3, 5. That is how programing works when you are starting at some random point in space you have to tell it where you are starting from to tell it how to move. Using the same example from before you can get to the same point by first traveling in the Z direction, then X, then Y resulting in the same point. Therefore you have to tell it how its going to move by choosing the right Normal plane so that it knows where its going to move first and in which direction. You have to point in in the right direction first. Essentially by “Putting it Normal to a plane of your choosing” then telling it how far to go. In Dynamo you can do that in one step, (one vector) but first you need to define the normal plane of which it is going to move, and then how far. What Konrad meant (i think) is the origin of how you define your object in space and its end location which results in a resultant vector. but you have to first know how resultant vectors are calculated in the first place before that would make sense, and is assuming you knew that. Simply put, a “normal” is a line that intesects a plane at a 90 degree angle. If a line is 90 degrees to a plane (perpendicular) it is considered “Normal” to that plane. Similarly from the planes perspective a line which is 90 degrees to it would be considered its “Normal”. Also, please note that every plane has 2 Normals, one the comes out the top and one that comes out the bottom. So you have to tell it which one (which direction ==vector) you are using. If this helps please give show me some love by hitting the heart down below because Im new here. Hope that helped!