/** This file must only contain pure code and pure imports */ import { type IFlowGraphBlockConfiguration } from "../../../flowGraphBlock.js"; import { type FlowGraphContext } from "../../../flowGraphContext.js"; import { type FlowGraphDataConnection } from "../../../flowGraphDataConnection.pure.js"; import { FlowGraphCachedOperationBlock } from "../flowGraphCachedOperationBlock.js"; import { type PhysicsBody } from "../../../../Physics/v2/physicsBody.js"; import { Vector3 } from "../../../../Maths/math.vector.pure.js"; /** * @experimental * A data block that reads the angular velocity of a physics body. */ export declare class FlowGraphGetAngularVelocityBlock extends FlowGraphCachedOperationBlock { /** * Input connection: The physics body to read the angular velocity from. */ readonly body: FlowGraphDataConnection; /** * Constructs a new FlowGraphGetAngularVelocityBlock. * @param config - optional configuration for the block */ constructor(config?: IFlowGraphBlockConfiguration); /** * @internal */ _doOperation(context: FlowGraphContext): Vector3 | undefined; /** * @returns class name of the block. */ getClassName(): string; } /** * Register side effects for flowGraphGetAngularVelocityBlock. * Safe to call multiple times; only the first call has an effect. */ export declare function RegisterFlowGraphGetAngularVelocityBlock(): void;