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

Method cross

cadquery/occ_impl/geom.py:140–141  ·  view source on GitHub ↗
(self, v: "Vector")

Source from the content-addressed store, hash-verified

138 return (self.x, self.y, self.z)
139
140 def cross(self, v: "Vector") -> "Vector":
141 return Vector(self.wrapped.Crossed(v.wrapped))
142
143 def dot(self, v: "Vector") -> float:
144 return self.wrapped.Dot(v.wrapped)

Callers 12

testMethod · 0.80
_computeXdirMethod · 0.80
RotateFunction · 0.80
normalMethod · 0.80
locationAtMethod · 0.80
filletMethod · 0.80
locationAtMethod · 0.80
_setPlaneDirMethod · 0.80
testNthDistanceMethod · 0.80
fJFunction · 0.80

Calls 1

VectorClass · 0.85

Tested by 3

testNthDistanceMethod · 0.64