forked from RobotLocomotion/avl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
49 lines (35 loc) · 1.43 KB
/
README
File metadata and controls
49 lines (35 loc) · 1.43 KB
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
44
45
46
47
48
49
General
-------
AVL and its plot library should compile on any Unix system
with normal Fortran-77, C, and X-Windows support.
Build sequence
--------------
% make
The executables will appear in the build/bin/ directory.
Documentation
-------------
User Guide is in the avl_doc.txt file. If impatient, you can just
run AVL in the runs/ directory, which contains a few input files:
% cd runs
% ../bin/avl vanilla
The files session1.txt, session2.txt contain keyboard input examples.
Graphic Notes for X-windows
---------------------------
The plot library for X-windows does not refresh the plot windows on expose
events (i.e. when the window is covered and then uncovered). Proper operation
assumes that the optional X backing store is enabled. It is not always turned
on in current (Linux, typically) X installations. The backing store can be
enabled by adding a line to your X configuration file (typically found in
/etc/X11/xorg.conf). The line should be added to the Device Section and looks
like this:
Option "BackingStore" "True"
This shows the Device section from my xorg.conf file with the backing store
enabled. Note that you will have your own Identifier and Driver lines,
just add the Option line.
Section "Device"
Identifier "Miserable Old SVGA"
Driver "miserable"
Option "BackingStore" "True"
EndSection
You probably need to restart the X server before this works (try just logging
out or rebooting).