threejs-camera
$
npx mdskill add partme-ai/full-stack-skills/threejs-cameraManages three.js camera types and parameters for rendering views, reflections, and multi-view splits.
- Helps with setting up perspective, orthographic, cube, array, and stereo cameras for 3D scenes.
- Integrates with threejs-webxr for XR projections and threejs-postprocessing for offscreen pass cameras.
- Triggers on mentions of camera types, parameters like aspect or near/far, and specific Chinese phrases.
- Provides recommendations based on user queries about projection, environment maps, or multi-view rendering.
SKILL.md
.github/skills/threejs-cameraView on GitHub ↗
---
name: threejs-camera
description: "three.js cameras: Camera base, PerspectiveCamera, OrthographicCamera, CubeCamera, ArrayCamera, StereoCamera; projection matrices, aspect, FOV, orthographic frustum sizes, near/far planes, and dynamic environment maps with CubeCamera. Use when placing views, rendering reflections, or multi-view splits; for XR projections and eye matrices use threejs-webxr; for post pass camera tricks use threejs-postprocessing alongside threejs-renderers."
---
## When to use this skill
**ALWAYS use this skill when the user mentions:**
- Switching perspective vs orthographic, `fov`, `aspect`, `zoom`, `near`, `far`
- `CubeCamera` for real-time environment maps or reflections (update rate caveats)
- `ArrayCamera`/`StereoCamera` for multi-view or stereo off-axis projection (non-XR)
**IMPORTANT: camera vs webxr vs post**
| Topic | Skill |
|-------|--------|
| Standard desktop projection | **threejs-camera** |
| XR reference spaces, IPD | **threejs-webxr** |
| Offscreen pass cameras inside composer | **threejs-postprocessing** |
**Trigger phrases include:**
- "PerspectiveCamera", "OrthographicCamera", "CubeCamera", "aspect", "near", "far"
- "透视相机", "正交", "立方体相机"
## How to use this skill
1. **Perspective**: set `aspect` = width/height; update on resize (**threejs-renderers** example workflow).
2. **Orthographic**: define `left/right/top/bottom` in world units for CAD/2.5D views.
3. **Near/far**: balance depth precision vs containing scene bounds; relate to fog (**threejs-scenes**).
4. **CubeCamera**: position at reflection probe; call `update` when scene static enough; use render target outputs per docs.
5. **Stereo/Array**: advanced; cite docs for eye parameters; defer XR to **threejs-webxr**.
6. **Projection matrix**: call `updateProjectionMatrix()` after parameter edits.
7. **Helpers**: `CameraHelper` lives in **threejs-helpers**.
### Example: Resize handler with updateProjectionMatrix
```javascript
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
```
See [examples/workflow-perspective-resize.md](examples/workflow-perspective-resize.md).
## Doc map (official)
| Docs section | Representative links |
|--------------|----------------------|
| Cameras (index) | https://threejs.org/docs/#Cameras |
| Cameras | https://threejs.org/docs/Camera.html |
| Perspective | https://threejs.org/docs/PerspectiveCamera.html |
| Orthographic | https://threejs.org/docs/OrthographicCamera.html |
| Cube | https://threejs.org/docs/CubeCamera.html |
| Multi-view | https://threejs.org/docs/ArrayCamera.html |
| Stereo (non-XR) | https://threejs.org/docs/StereoCamera.html |
## Scope
- **In scope:** Core camera classes and parameters; cube/array/stereo overview.
- **Out of scope:** WebXR reference spaces, eye matrices, session lifecycle (**threejs-webxr**); shadow map camera tuning (**threejs-lights**); pass-internal cameras in composer (**threejs-postprocessing**).
## Common pitfalls and best practices
- Wrong `aspect` after resize stretches image—always sync with canvas.
- Too small `near` hurts depth precision in large worlds.
- `CubeCamera` every frame is expensive—throttle for performance.
## Documentation and version
Camera parameters and `CubeCamera` update behavior follow the [Cameras](https://threejs.org/docs/#Cameras) section of [three.js docs](https://threejs.org/docs/). WebXR uses different projection paths—hand off to **threejs-webxr** when the user mentions headsets or reference spaces.
## Agent response checklist
When answering under this skill, prefer responses that:
1. Link `PerspectiveCamera`, `OrthographicCamera`, or `CubeCamera` as relevant.
2. Pair resize with **threejs-renderers** `setSize` / DPR patterns when relevant.
3. Route `XR`/`WebXRManager` questions to **threejs-webxr** after one-line renderer mention.
4. Mention `updateProjectionMatrix()` after intrinsic changes.
5. Use **threejs-helpers** `CameraHelper` for shadow frustum debug when discussing lights.
## References
- https://threejs.org/docs/#Cameras
- https://threejs.org/docs/PerspectiveCamera.html
- https://threejs.org/docs/CubeCamera.html
## Keywords
**English:** perspectivecamera, orthographiccamera, cubecamera, projection, aspect, near, far, three.js
**中文:** 相机、透视、正交、投影、近裁剪、远裁剪、CubeCamera、three.js
More from partme-ai/full-stack-skills
- adobe-xd"Guides creation of UI/UX designs, interactive prototypes, reusable components, and design specs in Adobe XD. Use when the user asks about Adobe XD artboards, prototype links, repeat grids, component states, design tokens export, or developer handoff."
- angular"Provides comprehensive guidance for Angular framework including components, modules, services, dependency injection, routing, forms, and TypeScript integration. Use when the user asks about Angular, needs to create Angular applications, implement Angular components, or work with Angular features."
- ansible"Provides comprehensive guidance for Ansible automation including playbooks, roles, inventory, and module usage. Use when the user asks about Ansible, needs to automate IT tasks, create Ansible playbooks, or manage infrastructure with Ansible."
- ant-design-mini"Builds mini-program UIs with Ant Design Mini components for Alipay and WeChat mini-programs. Covers Button, Form, List, Modal, Tabs, NavBar, and 60+ components with theme customization and CSS variable theming. Use when the user needs to create mini-program interfaces with Ant Design Mini, configure themes, or implement mini-program-specific UI patterns."
- ant-design-mobile"Builds React mobile UIs with Ant Design Mobile (antd-mobile) components including Button, Form, List, Modal, Picker, Tabs, PullToRefresh, InfiniteScroll, and 50+ mobile-optimized components. Use when the user needs to create mobile-first React interfaces, implement mobile navigation, forms, or data display with Ant Design Mobile."
- ant-design-react"Builds enterprise React UIs with Ant Design (antd) including 60+ components (Button, Form, Table, Select, Modal, Message), design tokens, TypeScript support, and ConfigProvider theming. Use when the user needs to create React applications with Ant Design, build forms with validation, display data tables, or customize the Ant Design theme."
- ant-design-vueProvides comprehensive guidance for Ant Design Vue (AntDV) component library for Vue 3. Covers installation, usage, API reference, templates, and all component categories. Use when building enterprise-class UI with Vue 3 and Ant Design.
- api-doc-generator"Generate API documentation by scanning Controller classes, extracting endpoint URLs, HTTP methods, parameters, and response structures, then producing standardized docs from templates. Use when the user explicitly mentions generating API documentation, creating API docs, scanning interfaces, or documenting REST APIs. Do not trigger for generic documentation requests without explicit API mention."
- appium"Provides comprehensive guidance for Appium mobile testing including mobile app automation, element location, gestures, and cross-platform testing. Use when the user asks about Appium, needs to test mobile applications, automate mobile apps, or write Appium test scripts."
- ascii-ansi-colorizer"Add an ANSI color layer to existing ASCII/plain-text output (gradient/rainbow/highlights) with alignment-safe rules and a required no-color fallback. Use when the user wants to colorize terminal output, add rainbow effects to CLI text, or style ASCII art with ANSI colors."