Yes sure you are right!
Sorry for my wrong explanation.
Actually, with the context, i have :
1) Firstly, some classes to define some figures (Circle, Rectangle, ...) with their own behaviour in a scene (motion, edition, ...)
2) Secondly, i have my structs in which i save only the coordinates of my figures in another coordinates system.
I have voluntarly separate information with in first hand, the behaviour of my figures in my scene and on the other, the coordinates in another system.
As my structures contain only the coordinates in a system, i thought group the structs in the same file ...
What is your idea by keeping the separation (even if referenced figures in the two separate classes are the same) ? Create some other files for the coordinate system ? like this :
(behaviour in scene)
- CircleScn
- RectangleScn
- PolygonScn
(system coordinates)
- CircleG
- RectangleG
- PolygonG
seems good ?
Thanks a lot Amleto for your advices !