Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
dist
.DS_Store
*.log
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
# Robot Simulator
# Industrial Robot Arm Simulator

Browser-based 3D robot arm simulator with an industrial control panel UI.

## Stack

- Vite (vanilla JavaScript)
- Three.js for 3D rendering and camera controls
- CSS Grid/Flexbox for control panel layout

## Run locally

```bash
npm install
npm run dev
```

Then open the local URL from Vite in your browser.

## Included functionality

- Dark industrial dashboard UI with status bar, side panels, and bottom timeline controls.
- Articulated 3D robot arm (base yaw + shoulder + elbow joints) with animated gripper.
- Pick-and-place auto demo loop moving orange cubes between pickup and drop zones.
- Manual mode via sliders that directly override joint angles.
- Real-time joint angle gauges, velocity metrics, force waveform graph, system log, and task queue.
- Orbit camera controls (drag to rotate, scroll to zoom).
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Industrial Robot Arm Simulator</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Loading