A rectangular box 60mm long, 40mm wide, and 15mm tall.
import cadquery as cq length = 60 width = 40 height = 15 result = cq.Workplane("XY").box(length, width, height)