純碁 (Pure Go) Library - v0.2.0
    Preparing search index...

    Type Alias Position

    盤面上の座標を表す型

    const position: Position = { x: 3, y: 5 };
    
    type Position = {
        x: number;
        y: number;
    }
    Index

    Properties

    x y

    Properties

    x: number

    X座標(0-indexed、左から右へ0からsize-1)

    y: number

    Y座標(0-indexed、上から下へ0からsize-1)