File: Arrange

package info (click to toggle)
dxsamples 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 26,340 kB
  • sloc: ansic: 10,079; sh: 8,445; java: 1,772; makefile: 1,102
file content (43 lines) | stat: -rw-r--r-- 1,316 bytes parent folder | download | duplicates (5)
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
42
43
// 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);