-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.html
More file actions
41 lines (40 loc) · 1.5 KB
/
Copy pathplugin.html
File metadata and controls
41 lines (40 loc) · 1.5 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Hello World!!</title>
<link href="plugin.css" rel="stylesheet">
</head>
<body>
<div class="pluginContainer">
<h1>Hello Cory</h1>
<p>Create a cuboid or cylinder of the specified size, focused near the origin.</p>
<div>
<input id="Width" type=number value =10 />
<label>Width</label>
</div>
<div>
<input id="Length" type=number value =6 />
<label>Length</label>
</div>
<div>
<input id="Height" type=number value =8 />
<label>Height</label>
</div>
<div>
<input id="CreateCylinderBtn" type=button value="Create Cylinder" />
</div>
<div>
<input id="CreateBlockBtn" type=button value="Create Block!" />
</div>
</div>
<!--Do not remove below scripts unless you know what you're doing-->
<script type="text/javascript" src="https://formit3d.github.io/FormItExamplePlugins/SharedPluginFiles/FormIt.js"></script>
<script type="text/javascript" src="https://formit3d.github.io/FormItExamplePlugins/SharedPluginFiles/FormItInterface.js"></script>
<script type="text/javascript" src="https://formit3d.github.io/FormItExamplePlugins/SharedPluginFiles/PluginUtils.js"></script>
<script type="text/javascript" src="plugin.js"></script>
<script type="text/javascript">
FormItInterface.Initialize();
</script>
</div>
</body>
</html>