-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontribute.html
102 lines (94 loc) · 4.67 KB
/
contribute.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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Art of Illusion - Open Source 3D Modeling and Rendering Studio | Contribute</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/main.css?v=93671984">
</head>
<body>
<nav class="navbar navbar-toggleable-md navbar-inverse bg-inverse center">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="index.html">Art of Illusion</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html#download">Download</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="documentation.html">Documentation</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="https://sourceforge.net/p/aoi/discussion/">Forums</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="https://sourceforge.net/p/aoi/bugs/">Bugs</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contribute.html">Contribute</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="img-header-sm">
<div class="container">
<div class="row">
<div class="col-md-4 content">
<img src="assets/img/aoi-logo1.png" class="header-logo-sm">
</div>
</div>
</div>
</div>
<div class="bg-light">
<div class="container page-content">
<h1>Contribute to Art of Illusion</h1>
<p>Are you interested in contributing to this project? Listed below are many possible projects for both programmers and non-programmers. If you have the necessary skills (a strong background in Java programming and 3D graphics algorithms for the programming projects, good writing or artistic ability for the non-programming projects) and think any of these look interesting, please let us know!</p>
<h2>Programming Projects</h2>
<ul>
<li>Write scripts to generate interesting objects, or to perform any sort of operation you think other users would find useful.</li>
<li>Write a plugin to allow Art of Illusion to import and/or export your favorite 3D file format. Eventually, I would like it to be able to read and write all major file formats. It's unlikely that I'll ever get around to implementing them all myself, though, so this will only happen if other people contribute translators.</li>
<li>Write a modeling tool for creating a new type of object. Possibilities include particle systems, human figures, and whatever else you can think of.</li>
<li>Write a plugin to let Art of Illusion integrate more smoothly with your favorite operating system.</li>
</ul>
<h2>Non-programming Projects</h2>
<ul>
<li>Write a tutorial demonstrating how to use one or more features of the program.</li>
<li>Create pictures that can be posted on the web site as examples of what can be done with Art of Illusion.</li>
</ul>
</div>
</div>
<footer>
© 2017 The Art of Illusion Team
</footer>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="assets/js/jquery-3.1.1.min.js"></script>
<script src="assets/js/tether.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<script src="assets/js/masonry.pkgd.min.js"></script>
<script>
var $container = $('.gallery-container');
$container.imagesLoaded( function () {
$container.masonry({
columnWidth: '.gallery-item',
itemSelector: '.gallery-item'
});
});
</script>
</body>
</html>