Chub777 New member Joined Dec 2, 2009 Messages 663 Reaction score 1 Points 0 Location LEO Jul 8, 2011 #1 Simply put, how do you move the module like this: Thanks. :tiphat:
IronRain The One and Only (AFAIK) Administrator Moderator Orbiter Contributor News Reporter Donator Joined Oct 11, 2009 Messages 3,488 Reaction score 407 Points 123 Location Utrecht Website www.spaceflightnewsapi.net Jul 8, 2011 #2 THIS was posted only 4 days ago.
Chub777 New member Joined Dec 2, 2009 Messages 663 Reaction score 1 Points 0 Location LEO Jul 8, 2011 #3 IronRain said: THIS was posted only 4 days ago. Click to expand... That's about placing docking ports on a curved surface. What I mean is how do you turn the actual module via docking ports.
IronRain said: THIS was posted only 4 days ago. Click to expand... That's about placing docking ports on a curved surface. What I mean is how do you turn the actual module via docking ports.
M martins Orbiter Founder Orbiter Founder Joined Mar 31, 2008 Messages 2,448 Reaction score 474 Points 83 Website orbit.medphys.ucl.ac.uk Jul 9, 2011 #4 Chub777 said: That's about placing docking ports on a curved surface. What I mean is how do you turn the actual module via docking ports. Click to expand... What's the difference? A rotation is a rotation. Just apply it to the ROT vector of your docking port.
Chub777 said: That's about placing docking ports on a curved surface. What I mean is how do you turn the actual module via docking ports. Click to expand... What's the difference? A rotation is a rotation. Just apply it to the ROT vector of your docking port.
Chub777 New member Joined Dec 2, 2009 Messages 663 Reaction score 1 Points 0 Location LEO Jul 9, 2011 #5 martins said: What's the difference? A rotation is a rotation. Just apply it to the ROT vector of your docking port. Click to expand... Could you please point out which one is the ROT vector: Code: ; === Docking ports === BEGIN_DOCKLIST -0.05 0 5.4 0 0 1 0 1 0 -0.05 0 -5.4 0 0 -1 0 1 0 2.25 0 -1.62 1 0 0 0 1 0 END_DOCKLIST
martins said: What's the difference? A rotation is a rotation. Just apply it to the ROT vector of your docking port. Click to expand... Could you please point out which one is the ROT vector: Code: ; === Docking ports === BEGIN_DOCKLIST -0.05 0 5.4 0 0 1 0 1 0 -0.05 0 -5.4 0 0 -1 0 1 0 2.25 0 -1.62 1 0 0 0 1 0 END_DOCKLIST
astrosammy Dash! Addon Developer Donator Joined Apr 27, 2008 Messages 2,124 Reaction score 0 Points 36 Location ICAO ID: EDFB Jul 9, 2011 #6 The first three numbers are position, the second direction and the third the rotation vector.
C3PO Addon Developer Addon Developer Donator Joined Feb 11, 2008 Messages 2,604 Reaction score 31 Points 63 Jul 9, 2011 #7 This might help visualizing the directions. Shortly after the beginning of the (Orbiter)universe I sketched this on a Post-it®. It must be in the running for the oldest surviving Post-it. :lol:
This might help visualizing the directions. Shortly after the beginning of the (Orbiter)universe I sketched this on a Post-it®. It must be in the running for the oldest surviving Post-it. :lol:
M MattDecker New member Joined Feb 5, 2010 Messages 7 Reaction score 0 Points 0 Jul 9, 2011 #8 Here is a quote from the readme file for the Polaris add on, that explains it pretty well. "If you want rotate by 90 the position of the module docked you must change in the file "Polaris.cfg" the old docking port information by: Actual configuration: ; === Docking ports === BEGIN_DOCKLIST 0.22 0 3.77 0 0 1 0 -1 0 "port 1" 0.22 0 -3.77 0 0 -1 0 -1 0 "port 2" END_DOCKLIST If you want rotate the modume on the port 1 you must change his line by: 0.22 0 3.77 0 0 1 0 -1 0 default config=0° 0.22 0 3.77 0 0 1 0 1 0 rotation 180° 0.22 0 3.77 0 0 1 1 0 0 rotation 90° 0.22 0 3.77 0 0 1 -1 0 0 rotation 270° Hope that helps. Last edited: Jul 9, 2011
Here is a quote from the readme file for the Polaris add on, that explains it pretty well. "If you want rotate by 90 the position of the module docked you must change in the file "Polaris.cfg" the old docking port information by: Actual configuration: ; === Docking ports === BEGIN_DOCKLIST 0.22 0 3.77 0 0 1 0 -1 0 "port 1" 0.22 0 -3.77 0 0 -1 0 -1 0 "port 2" END_DOCKLIST If you want rotate the modume on the port 1 you must change his line by: 0.22 0 3.77 0 0 1 0 -1 0 default config=0° 0.22 0 3.77 0 0 1 0 1 0 rotation 180° 0.22 0 3.77 0 0 1 1 0 0 rotation 90° 0.22 0 3.77 0 0 1 -1 0 0 rotation 270° Hope that helps.
Chub777 New member Joined Dec 2, 2009 Messages 663 Reaction score 1 Points 0 Location LEO Jul 10, 2011 #9 I got the docking ports to rotate. Thanks.