13 lines
256 B
Go
13 lines
256 B
Go
package pointer
|
|
|
|
func (p Pointer) GetStorageOffset() (x, y int) {
|
|
return p.sox, p.soy
|
|
}
|
|
|
|
func (p *Pointer) CalculateNewStorageOffset() {
|
|
p.sox, p.soy = p.x+p.delta.x, p.y+p.delta.y
|
|
}
|
|
|
|
func (p *Pointer) SetStorageOffset(x, y int) {
|
|
p.sox, p.soy = x, y
|
|
}
|