Skip to content

Commit bc30e44

Browse files
committed
Sync with main branch
1 parent 15511f5 commit bc30e44

6,944 files changed

Lines changed: 856091 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

deploy/.nojekyll

Whitespace-only changes.

deploy/dist/bundle.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/index.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>3D Point Cloud Generator</title>
7+
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
8+
<script src="https://cdn.jsdelivr.net/npm/three@0.132.2/build/three.min.js"></script>
9+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
10+
<style>
11+
body {
12+
padding: 20px;
13+
background-color: #f8f9fa;
14+
}
15+
.container {
16+
max-width: 1200px;
17+
margin: 0 auto;
18+
}
19+
#visualization {
20+
width: 100%;
21+
height: 600px;
22+
margin-top: 20px;
23+
border: 1px solid #dee2e6;
24+
border-radius: 4px;
25+
}
26+
.input-group {
27+
margin-bottom: 20px;
28+
}
29+
#loading {
30+
display: none;
31+
margin: 20px 0;
32+
}
33+
</style>
34+
</head>
35+
<body>
36+
<div class="container">
37+
<h1 class="mb-4">3D Point Cloud Generator</h1>
38+
39+
<div class="input-group">
40+
<input type="text" id="instruction" class="form-control" placeholder="Enter your instruction (e.g., 'Generate a sphere with 1000 points')">
41+
<button class="btn btn-primary" onclick="processInstruction()">Generate</button>
42+
</div>
43+
44+
<div id="loading" class="text-center">
45+
<div class="spinner-border text-primary" role="status">
46+
<span class="visually-hidden">Loading...</span>
47+
</div>
48+
</div>
49+
50+
<div id="visualization"></div>
51+
</div>
52+
53+
<script src="dist/bundle.js"></script>
54+
</body>
55+
</html>
56+

node_modules/.bin/acorn

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/browserslist

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/create-jest

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/envinfo

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/esparse

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/esvalidate

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/flat

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)