-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
57 lines (54 loc) · 1.68 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
a {
text-decoration: none;
}
nav {
width: 160px;
float: left;
display: inline;
padding: 15px;
font-size: 120%;
background-color: #4471AF;
}
section.body {
max-width:800px;
margin-left:auto;
margin-right:auto;
}
h2 ~ *:not(h2) {
margin-left: 30px;
}
</style>
<title>FaceGen Base Library Manual </title>
</head>
<body>
<nav>
<p>Install<p><a style="color:#FFFFFF" href="quick.html">Quick Start</a><p><a style="color:#FFFFFF" href="compile.html">Compile</a>
</nav>
<section class="body">
<h1 style="font-size:200%"><span style="color:#CCCCCC"><span style="color:#4471AF">F</span>ace<span style="color:#4471AF">G</span>en</span> Base Library Manual </h1>
<h2>Developer Requirements</h2>
<p>( Windows | Linux | MacOS )</p>
<h2>Install</h2>
<p>Path in which you have placed this sdk: <code>~sdk</code></p>
<p>FaceGen executables load data from <code> ~sdk/data/ </code>
<p> The 'data' directory must be present in the directory containing the executable, or any of its
parent directories. It must contain the file <code> _facegen_data_dir.flag </code>
<h3>Windows</h3>
<p><code> > PATH=%PATH%;~sdk\bin\win\x64\vs22\release\;~sdk\bin\win\x64\ </code>
<h3>Linux</h3>
<p><code> $ PATH=$PATH:~sdk/bin/linux/x64/gcc/release/:~sdk/bin/linux/x64/ </code>
<h3>MacOS</h3>
<p><code> $ PATH=$PATH:~sdk/bin/macos/x64/clang/release/:~sdk/bin/macos/x64/ </code>
</section>
<footer style="text-align:center; background-color:#4471AF; color:#FFFFFF; width:100%">
<div style="height:1px"></div>
<p>© Singular Inversions 2024
<div style="height:1px"></div>
</footer>
</body>
</html>