UNPKG

cube-parameters

Version:

A sophisticated 3D model viewer built with React, TypeScript, and Three.js, featuring advanced visualization tools, measurement capabilities, and lighting controls.

38 lines (35 loc) 1.38 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="mobile-web-app-capable" content="yes" /> <meta name="theme-color" content="#000000" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <title>3D Box Visualizer</title> <meta name="description" content="A 3D box visualization tool that allows you to adjust dimensions and appearance" /> <meta name="author" content="Lovable" /> <meta property="og:image" content="/og-image.png" /> <style> body { touch-action: manipulation; -webkit-touch-callout: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent; overscroll-behavior: none; } canvas { touch-action: none; -webkit-touch-callout: none; -webkit-user-select: none; } </style> </head> <body> <div id="root"></div> <script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script> <script type="module" src="/src/main.tsx"></script> </body> </html>