From: <bma...@us...> - 2008-09-25 13:34:40
|
Revision: 3980 http://fudaa.svn.sourceforge.net/fudaa/?rev=3980&view=rev Author: bmarchan Date: 2008-09-25 13:34:36 +0000 (Thu, 25 Sep 2008) Log Message: ----------- Modified Paths: -------------- branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/GISLib.java Modified: branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/GISLib.java =================================================================== --- branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/GISLib.java 2008-09-25 13:34:19 UTC (rev 3979) +++ branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/GISLib.java 2008-09-25 13:34:36 UTC (rev 3980) @@ -380,6 +380,16 @@ return d; } + + /** + * Projection orthonorm\xE9e d'un point sur un plan quelconque d\xE9finit par 3 points. + * @param _plan Les points 3D du plan. + * @param _pt Le point 3D \xE0 projeter. + * @return LE point 3D sur le plan de projection. + */ + public static GISPoint projectOnPlane(GISPoint[] _plan, GISPoint _pt) { + return null; + } public static Envelope computeEnveloppe(final GISDataModel[] _models, final ProgressionInterface _prog) { final ProgressionUpdater up = new ProgressionUpdater(_prog); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |