-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathquick.html
52 lines (48 loc) · 1.24 KB
/
quick.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
<!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><a style="color:#FFFFFF" href="index.html">Install</a><p>Quick Start<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>
<p>View available commands:
<p><code> $> fgbl </code>
<p>Run all tests:
<p><code> $> fgbl test all</code>
<p>View a 3d mesh of a face with a hairstyle (Windows only):
<p><code> > cd data\base <br>
> fgbl view mesh Jane.tri Jane.jpg Hair.tri Hair.tga</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>