MCPcopy Create free account
hub / github.com/esengine/esengine / add

Method add

packages/engine/src/math/vec2.rs:154–159  ·  view source on GitHub ↗
(self, rhs: Self)

Source from the content-addressed store, hash-verified

152
153 #[inline]
154 fn add(self, rhs: Self) -> Self::Output {
155 Self {
156 x: self.x + rhs.x,
157 y: self.y + rhs.y,
158 }
159 }
160}
161
162impl std::ops::Sub for Vec2 {

Callers 15

handleKeyDownMethod · 0.45
handleKeyUpMethod · 0.45
handleMouseDownMethod · 0.45
handleMouseUpMethod · 0.45
handleTouchStartMethod · 0.45
handleTouchEndMethod · 0.45
writeBundleFunction · 0.45
toggleClipFunction · 0.45
handleToggleFileFunction · 0.45
SceneHierarchyFunction · 0.45
handleEntityClickFunction · 0.45
ModuleListSettingFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected