MCPcopy
hub / github.com/AirtestProject/Poco / __rmul__

Method __rmul__

poco/utils/vector.py:38–39  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

36 return Vec2(self.x * other, self.y * other)
37
38 def __rmul__(self, other):
39 return Vec2(self.x * other, self.y * other)
40
41 def to_list(self):
42 return [self.x, self.y]

Callers

nothing calls this directly

Calls 1

Vec2Class · 0.85

Tested by

no test coverage detected