You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Matt Juntunen (JIRA)" <ji...@apache.org> on 2018/07/20 02:18:00 UTC

[jira] [Commented] (GEOMETRY-9) New Euclidean Vector Methods

    [ https://issues.apache.org/jira/browse/GEOMETRY-9?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16550129#comment-16550129 ] 

Matt Juntunen commented on GEOMETRY-9:
--------------------------------------

Changing the length() and withLength() methods to getMagnitude() and withMagnitude() after discusson on the dev mailing list.

> New Euclidean Vector Methods
> ----------------------------
>
>                 Key: GEOMETRY-9
>                 URL: https://issues.apache.org/jira/browse/GEOMETRY-9
>             Project: Apache Commons Geometry
>          Issue Type: Wish
>            Reporter: Matt Juntunen
>            Priority: Minor
>
> We should add some more methods to the Euclidean vector classes for user convenience and algorithm clarity.
>  # length() – more intuitive alias for getNorm()
>  # project(Vector) – returns the current vector projected onto the given vector
>  # static project(Vector, Vector) – static version of project
>  # reject(Vector) – returns the current vector projected onto the plane whose normal is passed to the method (vec equals vec.project(v) + vec.reject(v))
>  # static reject(Vector, Vector) – static version of reject
>  # lerp(Vector, double) – linear interpolation between the current vector and the given one
>  # static lerp(Vector, Vector, double) – static version of lerp
>  # withLength(double) – returns the current vector with the given length. This is equivalent to vector.normalize().scalarMultiply(x) but without the intermediate vector.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)