Use of transparency with ||-Coord.
It displays the same data set twice. The first time without transparency and the second time with transparency. On the second plot, several clusters appear.
Images without and with transparency
}
for (
Int_t i=0; i<1500; i++) {
r->
Sphere(s1x, s1y, s1z, 0.1);
r->
Sphere(s2x, s2y, s2z, 0.2);
r->
Sphere(s3x, s3y, s3z, 0.05);
n++;
nt->
Fill(s1x, s1y, s1z, s2x, s2y, s2z,
r7,
r8,
r9);
n++;
n++;
nt->
Fill(s2x-1, s2y-1, s2z, s1x+.5, s1y+.5, s1z+.5,
r7,
r8,
r9);
n++;
n++;
nt->
Fill(s1x+1, s1y+1, s1z+1, s3x-2, s3y-2, s3z-2,
r7,
r8,
r9);
n++;
n++;
}
nt->
Draw(
"x:y:z:u:v:w:a:b:c",
"",
"para");
nt->
Draw(
"x:y:z:u:v:w:a:b:c",
"",
"para");
c1->
Print(
"parallelcoordtrans.pdf");
c1->
Print(
"parallelcoordtrans.svg");
c1->
Print(
"parallelcoordtrans.gif");
c1->
Print(
"parallelcoordtrans.jpg");
c1->
Print(
"parallelcoordtrans.png");
}
- Author
- Olivier Couet
Definition in file parallelcoordtrans.C.