Skip to main content
Glama

MCP 3D Printer Server

ClearPass.js875 B
import { Color } from 'three'; import { Pass } from './Pass.js'; class ClearPass extends Pass { constructor( clearColor, clearAlpha ) { super(); this.needsSwap = false; this.clearColor = ( clearColor !== undefined ) ? clearColor : 0x000000; this.clearAlpha = ( clearAlpha !== undefined ) ? clearAlpha : 0; this._oldClearColor = new Color(); } render( renderer, writeBuffer, readBuffer /*, deltaTime, maskActive */ ) { let oldClearAlpha; if ( this.clearColor ) { renderer.getClearColor( this._oldClearColor ); oldClearAlpha = renderer.getClearAlpha(); renderer.setClearColor( this.clearColor, this.clearAlpha ); } renderer.setRenderTarget( this.renderToScreen ? null : readBuffer ); renderer.clear(); if ( this.clearColor ) { renderer.setClearColor( this._oldClearColor, oldClearAlpha ); } } } export { ClearPass };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DMontgomery40/mcp-3D-printer-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server