File: sunflow.pod

package info (click to toggle)
sunflow 0.07.2.svn396%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,108 kB
  • sloc: lisp: 168,740; java: 25,228; cpp: 3,265; python: 2,058; ruby: 1,276; xml: 105; sh: 85; makefile: 62
file content (135 lines) | stat: -rw-r--r-- 3,624 bytes parent folder | download | duplicates (3)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
=head1 NAME

sunflow - rendering system for photo-realistic image synthesis

=head1 SYNOPSIS

B<sunflow> I<[option(s)]> I<file(s)>


=head1 DESCRIPTION

B<sunflow> is an open source rendering system for photo-realistic
image synthesis. It is written in Java and built around a flexible ray
tracing core and an extensible object-oriented design. It was created
as a framework for experimenting with global illumination algorithms
and new surface shading models.


=head1 GENERAL OPTIONS

A summary of the options can be obtained by using one of the
following options:

=over

=item B<-h>, B<-help>

Display the list of available commands

=back


=head1 PERFORMANCES

Sunflow will run considerably faster with the so called server VM
(Virtual Machine). This server VM is part of Java, but it's not
included in the standard (JRE) installation of Java. The server VM
starts up more slowly and uses more memory than the standard VM, but
it runs a lot faster in many cases.

Sunflow's built-in realtime raytracing benchmark (B<-rtbench>) for
example runs more than twice as fast with the server VM (exact speedup
depends on your hardware).

The easiest way to get the server VM is by installing the Java
Development Kit (JDK).

On Debian, it is possible to install different JVM at the same time,
amongst which: I<gij-4.2> (main), I<openjdk-6-jre> (main),
I<sun-java5-jre> (non-free), I<sun-java6-jre> (non-free). To change
the I<java> link from one to another, use (with root privileges):

C<update-alternatives --config java>

A pretty good choice should be I<openjdk-6-jre>.

See also the L<CONFIGURATION FILES> section.


=head1 SUGGESTED OPTIONS

As explained above, the following options can be used to obtain a
performance gain, but depend on JVM used:

=over

=item B<-server>

Use the server virtual machine. The JDK matching the selected JVM has to
be installed for this option to actually work, e.g. I<sun-java5-jdk>
(non-free). A warning will be displayed otherwise, and this option
ignored.

=item B<-Xmx>I<MEM>

Use a memory upper limit of I<MEM> instead of the default (probably
64M). Example of valid values: 512M, 1G.

=back

Those options are best set through the B<SUNFLOW_JAVA_OPTIONS>
environment variable, or stored in the configuration files.


=head1 CONFIGURATION FILES

To allow flexible configuration, the B<sunflow> wrapper sources two
configuration files: F</etc/sunflowrc> and F<~/.sunflowrc>, in this
order.

The syntax is simple C<export KEY=VALUE>. Lines beginning with a sharp
sign are ignored.

The following options are supported:

=over

=item B<SUNFLOW_JAVA>

The java virtual machine to use. It's then possible to have e.g. a
system-wide B<java> alternative pointing to F</usr/bin/gij-4.2>, while
B<sunflow> uses a different JVM,
e.g. F</usr/lib/jvm/java-1.5.0-sun-1.5.0.12/bin/java>.

If not set (the default), B<java> will be called, meaning the
system-wide alternative will be used.

=item B<SUNFLOW_JAVA_OPTIONS>

Those are the options to be passed to the java interpreter, see above
for examples.

=item B<SUNFLOW_OPTIONS>

The list of options to pass to sunflow automatically to avoid
repeating them on each invokation of B<sunflow>. Quotation marks are
needed if more than one option is specified.

If not set (the default), no option is passed to B<sunflow>.

=back


=head1 SEE ALSO

F</usr/share/doc/sunflow/README.Debian>


=head1 AUTHOR

Sunflow was written by Christopher Kulla <ckulla@gmail.com>.

This manual page was written by Cyril Brulebois <kibi@debian.org>, for
the Debian project (and may be used by others). It is licensed under
the same terms as the package itself.