packages feed

FieldTrip-0.2: doc/relate.dot

digraph G {


	subgraph cluster_1 {
	label="Specifing Scenes\n ";

	f3d[shape="box",style="filled",fillcolor="yellow"];
	}


	OpenGL[shape="box"];
	OpenGLHW[shape="box",label="Hardware\nSupport"];

	f3d -> OpenGL;
	OpenGL -> OpenGLHW;

	subgraph cluster_2 {
	label="Rendering Scenes\n(using one of)";
	f3d_glut[shape="box",style="filled",fillcolor="green",label="f3d-glut"];
	f3d_glfw[shape="box",style="filled",fillcolor="green",label="f3d-glfw"];
	f3d_sdl[shape="box",style="filled",fillcolor="green",label="f3d-sdl"];	
	f3d_other[shape="box",style="filled",fillcolor="green",label="f3d-(...)"];
	}



	GLUT[shape="box"];
	GLFW[shape="box"];
	SDL[shape="box"];
	OTHER[shape="box",label="..."];

	f3d_glut -> GLUT;
	f3d_glfw -> GLFW;
	f3d_sdl -> SDL;
	f3d_other -> OTHER;


	WINDOWING[shape="box",label="OS Specific Window Management"];

	GLUT -> WINDOWING;
	GLFW -> WINDOWING;
	SDL -> WINDOWING;
	OTHER -> WINDOWING;


	sample[shape="box",style="filled",fillcolor="yellow",label="Sample Application"];
	sample -> f3d;
	sample -> f3d_glut;





}