Using ATL and OCL, how can I transform a Sequence of points to a Sequence of lines?

(0,0)            (0,0,2,3)
(2,3)     ==>    (2,3,3,2)
(3,2)     ==>    (3,2,4,7)
(4,7)                ...
 ...

The problem is context: I need to have information about two successive points to create a line.

rule Points2Lines {
    from
        pointModel : Points!PointModel
    using {
        points : Sequence(Points!Point) = pointModel.points;
    }
    to
        lineModel : Lines!LineModel (
            name <- pointModel.name,
            lines <- // How?
    )
}

At the moment I am doing this in an imperative code (do block). But it lacks traceability (i.e. defeats the purpose of ATL).

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.