Skip to content

Commit 86482bd

Browse files
authored
feat(docs): add some proper generated docs with Typedoc (#248)
* feat(docs): add some proper generated docs with Typedoc - Clean up a lot of types - Rename a heck ton of types in the back - Export a lot of missing types that could be useful
1 parent 918f359 commit 86482bd

23 files changed

+345
-397
lines changed

.changeset/sour-roses-live.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@react-three/rapier": minor
3+
---
4+
5+
Clean up exported types, add typedoc for generating html docs

.github/workflows/r3-rapier-docs.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Simple workflow for deploying static content to GitHub Pages
2-
name: Deploy static content to Pages
2+
name: Deploy @react-three/rapier docs
33

44
on:
55
# Runs on pushes targeting the default branch
@@ -27,29 +27,29 @@ jobs:
2727
name: github-pages
2828
url: ${{ steps.deployment.outputs.page_url }}
2929
runs-on: ubuntu-latest
30-
steps:
30+
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v3
33-
33+
3434
- name: Setup Node.js environment
3535
uses: actions/[email protected]
3636
with:
3737
node-version: 16.x
3838

3939
- name: Install Node Dependencies
4040
run: yarn
41-
41+
4242
- name: Run typedoc
4343
run: yarn r3r-docs
44-
44+
4545
- name: Setup Pages
4646
uses: actions/configure-pages@v2
47-
47+
4848
- name: Upload artifact
4949
uses: actions/upload-pages-artifact@v1
5050
with:
5151
# Upload docs folder
52-
path: './packages/react-three-rapier/docs'
52+
path: "./packages/react-three-rapier/docs"
5353
- name: Deploy to GitHub Pages
5454
id: deployment
5555
uses: actions/deploy-pages@v1

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,6 @@ dist
107107
.parcel-cache
108108

109109
# OSX
110-
.DS_Store
110+
.DS_Store
111+
112+
packages/react-three-rapier/docs

demo/src/examples/collision-events/CollisionEventsExample.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
HeightfieldCollider,
66
interactionGroups,
77
RigidBody,
8-
UseRigidBodyOptions
8+
RigidBodyOptions
99
} from "@react-three/rapier";
1010
import {
1111
createContext,
@@ -67,7 +67,7 @@ const Explosion = ({ position }: { position: [number, number, number] }) => {
6767
};
6868

6969
const Collisioner = (
70-
props: Omit<UseRigidBodyOptions, "children"> & {
70+
props: Omit<RigidBodyOptions, "children"> & {
7171
children(color: string): ReactNode;
7272
}
7373
) => {

demo/src/examples/cradle/CradleExample.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import {
55
RapierRigidBody,
66
RigidBody,
77
RigidBodyApi,
8-
UseRigidBodyOptions,
8+
RigidBodyOptions,
99
useSphericalJoint
1010
} from "@react-three/rapier";
1111
import { useRef } from "react";
1212
import { Demo } from "../../App";
1313

14-
const Rod = (props: UseRigidBodyOptions) => {
14+
const Rod = (props: RigidBodyOptions) => {
1515
const anchor = useRef<RigidBodyApi>(null);
1616
const rod = useRef<RigidBodyApi>(null);
1717

demo/src/examples/performance/PeformanceExample.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useGLTF } from "@react-three/drei";
22
import { GroupProps, useFrame } from "@react-three/fiber";
33
import { RigidBody, RigidBodyProps } from "@react-three/rapier";
4-
import { RigidBodyApi } from "@react-three/rapier/dist/declarations/src/types";
4+
import { RigidBodyApi } from "@react-three/rapier";
55
import { ReactNode, useEffect, useRef, useState } from "react";
66
import { Mesh } from "three";
77
import { GLTF } from "three-stdlib";

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"np": "^7.6.1",
3333
"prettier": "2.7.1",
3434
"simple-git-hooks": "^2.8.0",
35+
"typedoc": "0.23.24",
3536
"typescript": "^4.6.3"
3637
},
3738
"scripts": {
@@ -44,7 +45,8 @@
4445
"release": "yarn build && changeset publish",
4546
"test": "vitest run",
4647
"test:ui": "vitest --ui",
47-
"ts": "cd packages/react-three-rapier && yarn ts"
48+
"ts": "cd packages/react-three-rapier && yarn ts",
49+
"r3r-docs": "typedoc --out ./packages/react-three-rapier/docs ./packages/react-three-rapier/src/index.ts --excludeInternal"
4850
},
4951
"simple-git-hooks": {
5052
"commit-msg": "npx --no -- commitlint --edit ${1}",

packages/react-three-rapier/readme.md

+2-118
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ For contributions, please read the <a href="https://github.com/pmndrs/react-thre
1818

1919
The goal of this library to is to provide a fast physics engine with minimal friction and small, straight forward API.
2020

21-
2221
## Basic Usage
2322

2423
```tsx
@@ -53,10 +52,8 @@ const App = () => {
5352
- [Readme Topics](#readme-topics)
5453
- [The Physics Component](#the-physics-component)
5554
- [The RigidBody Component](#the-rigidbody-component)
56-
- [RigidBody props](#rigidbody-props)
5755
- [Automatic Colliders](#automatic-colliders)
5856
- [Collider Components](#collider-components)
59-
- [Collider props](#collider-props)
6057
- [🖼 Collider Examples](#-collider-examples)
6158
- [Instanced Meshes](#instanced-meshes)
6259
- [Debug](#debug)
@@ -114,58 +111,8 @@ const RigidBodyMesh = () => (
114111
);
115112
```
116113

117-
### RigidBody props
118-
- `type`?: `string`
119-
Specify the type of this rigid body. Default: "dynamic".
120-
- "dynamic": The rigid body is fully dynamic.
121-
- "fixed": The rigid body is fully fixed.
122-
- "kinematicPosition": The rigid body is kinematic, and its forces are computed by changing position.
123-
- "kinematicVelocity": The rigid body is kinematic, and its forced are computed by changing velocit .
124-
- `canSleep`?: `boolean`
125-
Whether or not this body can sleep. Default: `true`.
126-
- `linearDamping`?: `number`
127-
The linear damping coefficient of this rigid body. Default: `0.0`.
128-
- `angularDamping`?: `number`
129-
The angular damping coefficient of this rigid body. Default: `0.0`.
130-
- `linearVelocity`?: `[number, number, number]`
131-
The initial linear velocity of this body. Default: `[0, 0, 0]`.
132-
- `angularVelocity`?: `[number, number, number]`
133-
The initial angular velocity of this body. Default: `[0, 0, 0]`.
134-
- `gravityScale`?: `number` The scaling factor applied to the gravity affecting the rigid body. Default: `1.0`.
135-
- `ccd`?: `boolean`
136-
Whether or not Continous Collision Detection is enabled for this rigid body. Default: `false`.
137-
- `position`?: `[number, number, number]` or `Vector3`
138-
Initial position of the RigidBody.
139-
- `rotation`?: `[number, number, number]` or `Euler`
140-
Initial rotation of the RigidBody.
141-
- `quaternion`?: `Quaternion`
142-
Initial rotation of the RigidBody. Can be used in place of `rotation`.
143-
- `colliders`?: `string` or `false`
144-
Automatically generate colliders based on meshes inside this rigid body. See [Automatic colliders](#automatic-colliders).
145-
- `friction`?: `number`
146-
Set the friction of auto-generated colliders.
147-
- `restitution`?: `number`
148-
Set the restitution (bounciness) of auto-generated colliders. Does not affect any non-automatic child collider components.
149-
- `collisionGroups`?: `InteractionGroups`
150-
See [Configuring collision and solver groups](#configuring-collision-and-solver-groups).
151-
- `solverGroups`?: `InteractionGroups`
152-
See [Configuring collision and solver groups](#configuring-collision-and-solver-groups).
153-
- `onSleep`?: `function`
154-
Callback function that is called when the rigid body sleeps.
155-
- `onWake`?: `function`
156-
Callback function that is called when the rigid body wakes up.
157-
- `enabledRotations`?: `[boolean, boolean, boolean]`
158-
Allow rotation of this rigid body only along specific axes.
159-
- `enabledTranslations`?: `[boolean, boolean, boolean]`
160-
Allow translation of this rigid body only along specific axes.
161-
- `userData`?: `any`
162-
Passed down to the object3d representing this collider.
163-
- `includeInvisible`?: `boolean`
164-
Include invisible objects on the collider creation estimation.
165-
- `onCollisionEnter`?: `function`
166-
See [Collision Events](#collision-events).
167-
- `onCollisionExit`?: `function`
168-
See [Collision Events](#collision-events).
114+
For available props: see [RigidBody docs](#rigidbody-props)
115+
169116

170117
## Automatic Colliders
171118

@@ -216,69 +163,6 @@ const Scene = () => (
216163

217164
You can also create `Colliders` by hand and add them to a `RigidBody` to create compound colliders. This is useful for creating more complex shapes, for creating simplified shapes for performance reasons, or for detecting collisions on specific parts of a mesh.
218165

219-
Available `Collider` components:
220-
- `<CuboidCollider args={[halfWidth, halfHeight, halfDepth]} />`
221-
A cuboid collider.
222-
- `<RoundCuboidCollider args={[halfWidth, halfHeight, halfDepth, borderRadius]} />`
223-
A cuboid collider with rounded corners.
224-
- `<BallCollider args={[radius]} />`
225-
A ball collider.
226-
- `<CapsuleCollider args={[halfHeight, radius]} />`
227-
A capsule collider. The capsule is centered on the local-space Y axis.
228-
- `<HeightfieldCollider args={[width, height, heights, scale]} />`
229-
A heightfield collider is a heightmap represented by a grid of heights. The heightmap is centered on the local-space Y axis.
230-
- `<TrimeshCollider args={[vertices, indices]} />`
231-
A trimesh collider is a concave shape that is automatically computed from a set of points. It is more precise than a convex hull collider, but it is also more expensive to compute and to simulate.
232-
- `<ConeCollider args={[halfHeight, radius]} />`
233-
A cone collider. The cone is centered on the local-space Y axis.
234-
- `<CylinderCollider args={[halfHeight, radius]} />`
235-
A cylinder collider. The cylinder is centered on the local-space Y axis.
236-
- `<ConvexHullCollider args={[vertices, indices]} />`
237-
A convex hull collider is a convex shape that is automatically computed from a set of points. It is a good approximation of a concave shape, but it is not as precise as a trimesh collider. It is also more efficient to compute and to simulate.
238-
- `<MeshCollider />`
239-
Wraps one or more `meshes` to generate automatic colliders. Useful for combining with other primitive colliders where you need both simple and complex shapes.
240-
241-
### Collider props
242-
- `principalAngularInertia`?: `[number, number, number]`
243-
Principal angular inertia of this collider
244-
- `restitution`?: `number`
245-
Restitution (bounciness) of this collider
246-
- restitutionCombineRule?: `CoefficientCombineRule`
247-
What happens when two bodies meet. See https://rapier.rs/docs/user_guides/javascript/colliders#friction.
248-
- `friction`?: `number`
249-
Friction of this collider
250-
- frictionCombineRule?: `CoefficientCombineRule`
251-
What happens when two bodies meet. See https://rapier.rs/docs/user_guides/javascript/colliders#friction.
252-
- `position`?: `[number, number, number]` or `Vector3`
253-
Position of the collider relative to the rigid body.
254-
- `rotation`?: `[number, number, number]` or `Euler`
255-
Rotation of the collider relative to the rigid body.
256-
- `quaternion`?: `[number, number, number, number]` or `Quaternion`
257-
Rotation of the collider relative to the rigid body.
258-
- `scale`?: `[number, number, number]` or `Vector3`
259-
Scale of the collider relative to the rigid body.
260-
- onCollisionEnter?: `CollisionEnterHandler`
261-
See [Collision Events](#collision-events).
262-
- onCollisionExit?: `CollisionExitHandler`
263-
See [Collision Events](#collision-events).
264-
- `sensor`?: `boolean`
265-
See [Sensors](#sensors).
266-
- onIntersectionEnter?: `IntersectionEnterHandler`
267-
See [Sensors](#sensors).
268-
- onIntersectionExit?: `IntersectionExitHandler`
269-
See [Sensors](#sensors).
270-
- solverGroups?: `InteractionGroups`
271-
See [Solver Groups](#solver-groups).
272-
- `collisionGroups`?: `InteractionGroups`
273-
See [Collision Groups](#collision-groups).
274-
- `density`?: `number`
275-
Sets the uniform density of this collider. If this is set, other mass-properties like the angular inertia tensor are computed automatically from the collider's shape. More info https://rapier.rs/docs/user_guides/javascript/colliders#mass-properties
276-
- `mass`?: `number`
277-
Generally, it's not recommended to adjust the mass properties as it could lead to unexpected behaviors. Cannot be used at the same time as the density or massProperties values. More info https://rapier.rs/docs/user_guides/javascript/colliders#mass-properties
278-
- `massProperties`?: `{ mass: number; centerOfMass: Vector; principalAngularInertia: Vector angularInertiaLocalFrame: Rotation; }`
279-
The mass properties of this rigid body. Cannot be used at the same time as the density or mass values. More info https://rapier.rs/docs/user_guides/javascript/colliders#mass-properties
280-
281-
282166
```tsx
283167
const Scene = () => (<>
284168
{/* Make a compound shape with two custom BallColliders */}

packages/react-three-rapier/src/AnyCollider.tsx

+15-16
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ import React, {
99
MutableRefObject
1010
} from "react";
1111
import { Object3D, Vector3, InstancedMesh } from "three";
12+
import { RigidBodyApi } from "./api";
1213
import { useRapier } from "./hooks";
1314
import { useRigidBodyContext, RigidBodyProps } from "./RigidBody";
1415
import { _euler, _position, _rotation, _scale } from "./shared-objects";
1516
import {
16-
UseColliderOptions,
17+
ColliderOptions,
1718
CuboidArgs,
1819
RoundCuboidArgs,
1920
BallArgs,
@@ -22,8 +23,7 @@ import {
2223
TrimeshArgs,
2324
ConeArgs,
2425
CylinderArgs,
25-
ConvexHullArgs,
26-
RigidBodyApi
26+
ConvexHullArgs
2727
} from "./types";
2828
import { vectorArrayToVector3 } from "./utils";
2929
import {
@@ -33,7 +33,7 @@ import {
3333
useUpdateColliderOptions
3434
} from "./utils-collider";
3535

36-
export interface ColliderProps extends UseColliderOptions<any> {
36+
export interface ColliderProps extends ColliderOptions<any> {
3737
children?: ReactNode;
3838
}
3939

@@ -140,27 +140,26 @@ export const AnyCollider = memo(
140140
)
141141
);
142142

143-
type UseColliderOptionsRequiredArgs<T extends unknown[]> = Omit<
144-
UseColliderOptions<T>,
143+
export type ColliderOptionsRequiredArgs<T extends unknown[]> = Omit<
144+
ColliderOptions<T>,
145145
"args"
146146
> & {
147147
args: T;
148148
children?: ReactNode;
149149
};
150150

151-
export type CuboidColliderProps = UseColliderOptionsRequiredArgs<CuboidArgs>;
151+
export type CuboidColliderProps = ColliderOptionsRequiredArgs<CuboidArgs>;
152152
export type RoundCuboidColliderProps =
153-
UseColliderOptionsRequiredArgs<RoundCuboidArgs>;
154-
export type BallColliderProps = UseColliderOptionsRequiredArgs<BallArgs>;
155-
export type CapsuleColliderProps = UseColliderOptionsRequiredArgs<CapsuleArgs>;
153+
ColliderOptionsRequiredArgs<RoundCuboidArgs>;
154+
export type BallColliderProps = ColliderOptionsRequiredArgs<BallArgs>;
155+
export type CapsuleColliderProps = ColliderOptionsRequiredArgs<CapsuleArgs>;
156156
export type HeightfieldColliderProps =
157-
UseColliderOptionsRequiredArgs<HeightfieldArgs>;
158-
export type TrimeshColliderProps = UseColliderOptionsRequiredArgs<TrimeshArgs>;
159-
export type ConeColliderProps = UseColliderOptionsRequiredArgs<ConeArgs>;
160-
export type CylinderColliderProps =
161-
UseColliderOptionsRequiredArgs<CylinderArgs>;
157+
ColliderOptionsRequiredArgs<HeightfieldArgs>;
158+
export type TrimeshColliderProps = ColliderOptionsRequiredArgs<TrimeshArgs>;
159+
export type ConeColliderProps = ColliderOptionsRequiredArgs<ConeArgs>;
160+
export type CylinderColliderProps = ColliderOptionsRequiredArgs<CylinderArgs>;
162161
export type ConvexHullColliderProps =
163-
UseColliderOptionsRequiredArgs<ConvexHullArgs>;
162+
ColliderOptionsRequiredArgs<ConvexHullArgs>;
164163

165164
export const CuboidCollider = React.forwardRef(
166165
(props: CuboidColliderProps, ref: ForwardedRef<Collider[]>) => {

packages/react-three-rapier/src/Attractor.tsx

+5-13
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,10 @@ import { FC, memo, useEffect, useRef } from "react";
55
import { Object3D, Vector3 } from "three";
66
import { _position, _vector3 } from "./shared-objects";
77
import { Object3DProps } from "@react-three/fiber";
8-
import {
9-
BallArgs,
10-
BallCollider,
11-
interactionGroups,
12-
IntersectionEnterHandler,
13-
IntersectionExitHandler,
14-
UseColliderOptions
15-
} from ".";
16-
17-
type GravityType = "static" | "linear" | "newtonian";
18-
19-
interface AttractorProps {
8+
9+
export type AttractorGravityType = "static" | "linear" | "newtonian";
10+
11+
export interface AttractorProps {
2012
/**
2113
* The relative position of this attractor
2214
*/
@@ -45,7 +37,7 @@ interface AttractorProps {
4537
* - newtonian: The gravity is calculated using the newtonian gravity formula.
4638
* @default "static"
4739
*/
48-
type?: GravityType;
40+
type?: AttractorGravityType;
4941

5042
/**
5143
* The mass of the attractor. Used when type is `newtonian`.

0 commit comments

Comments
 (0)