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).