LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Caches
    • Callbacks
    • Documents
    • Document loaders
    • Embeddings
    • Exceptions
    • Language models
    • Serialization
    • Output parsers
    • Prompts
    • Rate limiters
    • Retrievers
    • Runnables
    • Utilities
    • Vector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewCachesCallbacksDocumentsDocument loadersEmbeddingsExceptionsLanguage modelsSerializationOutput parsersPromptsRate limitersRetrieversRunnablesUtilitiesVector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    Language
    Theme
    Pythonlangchain-corerunnablesgraph_asciiAsciiCanvaspoint
    Method●Since v0.1

    point

    Create a point on ASCII canvas.

    Copy
    point(
        self,
        x: int,
        y: int,
        char: str,
    ) -> None

    Parameters

    NameTypeDescription
    x*int

    x coordinate. Should be >= 0 and < number of columns in the canvas.

    y*int

    y coordinate. Should be >= 0 an < number of lines in the canvas.

    char*str

    character to place in the specified point on the canvas.

    View source on GitHub