Statistics
| Revision:

root / trunk / libraries / lib3DMap / src / com / iver / ai2 / gvsig3d / simbology3D / I3DFeature.java @ 20892

History | View | Annotate | Download (318 Bytes)

1
package com.iver.ai2.gvsig3d.simbology3D;
2

    
3
import org.gvsig.osgvp.Group;
4

    
5
public interface I3DFeature {
6

    
7
        /**
8
         * This method build this feature into a group node
9
         * 
10
         * @param group
11
         *            the group to add the feature
12
         * @return the group with the feature
13
         */
14
        Group Draw(Group group);
15

    
16
}