Chalkboard - v3.0.1
    Preparing search index...

    Function triangularprismA

    • Calculates the surface area of a triangular prism.

      Parameters

      • a: number

        The base's first side length

      • b: number

        The base's second side length

      • c: number

        The base's third side length

      • h: number

        The height

      Returns number

      // Returns 342.6099033699941
      const area = Chalkboard.geom.triangularprismA(9, 7, 12, 10);