Back to FabImage Library website
You are here: Start » Function Reference » Basic » Location » TranslateLocation
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Shifts a Location by a given number of pixels along each axis.
Syntax
C++
C#
void fil::TranslateLocation ( const fil::Location& inLocation, int inDeltaX, int inDeltaY, bool inInverse, fil::Location& outLocation )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inLocation | const Location& | Input location | |
![]() |
inDeltaX | int | Shift along the x axis | |
![]() |
inDeltaY | int | Shift along the y axis | |
![]() |
inInverse | bool | Switches to inverse operation | |
![]() |
outLocation | Location& | Shifted location |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inLocation and outLocation
Read more about In-place Computation.