MCPcopy
hub / github.com/CadQuery/cadquery / __mul__

Method __mul__

cadquery/occ_impl/geom.py:162–163  ·  view source on GitHub ↗
(self, scale: float)

Source from the content-addressed store, hash-verified

160 return Vector(self.wrapped.Multiplied(scale))
161
162 def __mul__(self, scale: float) -> "Vector":
163 return self.multiply(scale)
164
165 def __truediv__(self, denom: float) -> "Vector":
166 return self.multiply(1.0 / denom)

Callers

nothing calls this directly

Calls 1

multiplyMethod · 0.95

Tested by

no test coverage detected