forked from tbfleming/jscut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·105 lines (104 loc) · 3.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jscut.org</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="lib/bootstrap-3.1.1/css/bootstrap.min.css" rel="stylesheet">
<script src="lib/jquery-2.1.1.min.js"></script>
<script src="lib/bootstrap-3.1.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row clearfix">
<div class="col-md-12 column">
<div class="jumbotron">
<h1>
A CAM in your browser!
</h1>
<p>
Convert your SVG files to CNC cutting paths with this tool.
</p>
<p>
<a class="btn btn-primary btn-large" href="jscut.html">Launch!</a>
</p>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-md-4 column">
<h2>
Features
</h2>
<ul>
<ul>
<li><a href="RenderPath.html">3D Gcode simulation view</a></li>
<li>Pocket and Outline operations</li>
<li>V cutter support</li>
<li>mm or inch GCode output</li>
<li>Supports Firefox, Chrome, and <a href="https://github.com/tbfleming/jscut/issues/24"><del>Safari</del></a></li>
<li>Works with Google Drive</li>
</ul>
</ul>
<h2>
API
</h2>
<ul>
<ul>
<li>Embed jscut in your webapps using api.jscut.org</li>
<li>Examples<ul>
<li><a href="http://jsfiddle.net/UbHPd/">Gcode Simulator</a></li>
<li><a href="http://jsfiddle.net/tbfleming/cLwgd/">Geometry Operations</a></li>
<li><a href="http://jsfiddle.net/tbfleming/p4nwp/">CAM Wizard</a></li>
</ul></li>
</ul>
</ul>
</div>
<div class="col-md-4 column">
<h2>
Open Source
</h2>
<p>
Fork me on <a href="https://github.com/tbfleming/jscut">GitHub</a>
</p>
<h2>
Discussion Group
</h2>
<p>
Questions? Willing to help out? Join us at our <a href="https://groups.google.com/forum/#!forum/jscut">Google Group</a>
</p>
<h2>
Standalone Version
</h2>
<p>
<a href="http://api.jscut.org/jscut_standalone.tar.gz">Download</a>
</p>
<p>
This version supports disconnected use. Git clones require network access to function correctly unless you run 'make'.
</p>
</div>
<div class="col-md-4 column">
<h2>
Latest Changes
</h2>
<ul>
<li>Changed default px per inch to 96 to match Inkscape 0.9x</li>
<li>V Cutter support with 3D preview: select "V Pocket" operation</li>
<li>Create your own default settings for jscut to use; see "Save Settings" for details.</li>
<li>"Open Settings" -> "In Browser" now has a Delete button.</li>
<li>Tabs. These work with all operations, including Pocket.</li>
<li>Added standalone version</li>
<li>
Post your CAM settings publicly in GitHub Gist<ul>
<li>Use the Gist button in the Save Settings dialog</li>
<li><a href="http://jscut.org/jscut.html?gist=6cd7ccd0f24a6507cf42">Example</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>