diff --git a/wasm/README.md b/wasm/README.md index 1572e141..efc6d396 100644 --- a/wasm/README.md +++ b/wasm/README.md @@ -164,16 +164,12 @@ The object you get is a JavaScript proxy interface generated by [Emscripten’s export interface MjContactVec extends ClassHandle { /** Appends a new element to the end of the vector, increasing its length by one. */ push_back(_0: MjContact): void; - /** Resizes the vector to contain the specified number of elements, filling new slots with the provided value. */ resize(_0: number, _1: MjContact): void; - /** Returns the total number of elements currently stored in the vector. */ size(): number; - /** Retrieves the element at the specified index, or returns undefined if the index is out of bounds. */ get(_0: number): MjContact | undefined; - /** Overwrites the element at the specified index; returns true if successful or false if the index is invalid. */ set(_0: number, _1: MjContact): boolean; }