Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1122 from rperezgonz/issue#1121_change_visualizat…
Browse files Browse the repository at this point in the history
…ion_ice

fix #1121 Modify the ice interface of JdeRobot to work with 3DViewer-web
  • Loading branch information
aitormf authored Apr 10, 2018
2 parents bd30448 + 09df545 commit c7b90ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/interfaces/slice/jderobot/visualization.ice
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,22 @@ module jderobot{
float b;
};


struct RGBSegment{
Segment seg;
Color c;
};

sequence<RGBPoint> bufferPoint;
sequence<RGBSegment> bufferSegment;
/**
* Interface to the Visualization interaction.
*/
interface Visualization
{
void drawSegment(Segment seg, Color c);
bufferSegment getSegment();
void drawPoint(Point p, Color c);
bufferPoint getPoints();
void clearAll();
};

Expand Down

0 comments on commit c7b90ed

Please sign in to comment.