Repositories / Excalidraw
Focused tour of drawing, rendering, history, and collaboration paths; not a whole-project map.
Static scene renderer that prepares the canvas and dispatches each visible element for painting.
Stored evidence from this immutable analysis snapshot
export const renderStaticScene = (renderConfig: StaticSceneRenderConfig,throttle?: boolean,) => {if (throttle) {renderStaticSceneThrottled(renderConfig);
return; } _renderStaticScene(renderConfig);