/usr/share/dx/samples/scripts/Arrange is in dxsamples 4.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | // Import the data
electrondensity = Import("watermolecule");
// Partition the data
electrondensity = Partition(electrondensity);
// Create an isosurface at an isovalue of 0.3
isosurface = Isosurface(electrondensity,0.3);
// Create a camera which will look at the isosurface from the "front"
// (out along the z axis)
camera1 = AutoCamera(isosurface,"front",resolution=320);
// Create a camera which will look at the isosurface from the "top"
// (out along the y axis)
camera2 = AutoCamera(isosurface,"top",resolution=320);
// Create a camera which will look at the isosurface from the "left"
// (out along the -x axis)
camera3 = AutoCamera(isosurface,"left",resolution=320);
// Create a camera which will look at the isosurface from the "left"
// (out along the [1 1 1] direction)
camera4 = AutoCamera(isosurface,"diagonal",resolution=320);
// Now render the isosurface using each of the four cameras, creating four
// images
image1 = Render(isosurface,camera1);
image2 = Render(isosurface,camera2);
image3 = Render(isosurface,camera3);
image4 = Render(isosurface,camera4);
// Collect the four images together
object = Collect(image1,image2,image3,image4);
// Arrange the images so that there are two in each row
arranged = Arrange(object,2);
// Display the newly arranged image
Display(arranged);
|