/usr/share/dx/samples/scripts/Post 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 | // Import the electron density data
data = Import("watermolecule");
// Change the dependency of the data from "positions" to "connections"
data = Post(data,"connections");
// Create the boundary of the data
boundary = ShowBoundary(data);
// Color the boundary
boundary = AutoColor(boundary);
// Display the boundary
camera = AutoCamera(boundary,"off-front");
Display(boundary,camera);
|