in reply to Re^3: (OT) moving points from one plane to another
in thread (OT) moving points from one plane to another
Your approach would notice the 90 degree rotation in planes. But would assume that since (1, 0, 0) is in both planes that it gets mapped to itself.(0, 0, 0) -> (0, 0, 0) (1, 0, 0) -> (0, 0, 1) (0, 1, 0) -> (-1, 0, 0)
For another interesting example consider the following mapping:
This sends the X-Y plane to the X-Y plane but no point remained still. Your approach has no idea how to handle it.(0, 0, 0) -> (1, 0, 0) (1, 0, 0) -> (2, 0, 0) (0, 1, 0) -> (1, 1, 0)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: (OT) moving points from one plane to another
by BrowserUk (Patriarch) on Jul 10, 2009 at 07:56 UTC | |
|
Re^5: (OT) moving points from one plane to another
by merrymonk (Hermit) on Jul 10, 2009 at 12:20 UTC | |
by tilly (Archbishop) on Jul 10, 2009 at 16:09 UTC | |
by merrymonk (Hermit) on Jul 10, 2009 at 16:31 UTC | |
by tilly (Archbishop) on Jul 10, 2009 at 17:26 UTC | |
by BrowserUk (Patriarch) on Jul 10, 2009 at 21:05 UTC | |
|