Jump to content

API Panel.Position.Morph: Difference between revisions

From Flowcode Help
m Text replacement - "width="10%" align="center" style="background-color:#D8C9D8;" align="center"" to "width="10%" align="center" class="mtx-class-macrohead""
m Text replacement - "width="90%" style="background-color:#D8C9D8; color:#4B008D;"" to "width="90%" class="mtx-class-macrohead""
 
Line 2: Line 2:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Morph'''
| width="90%" class="mtx-class-macrohead" | '''Morph'''
|-
|-
| colspan="2" | Blends positions from two sources to a destination 
| colspan="2" | Blends positions from two sources to a destination 

Latest revision as of 14:11, 13 July 2026

Morph
Blends positions from two sources to a destination 
- HANDLE Dest
The position or component to update 
- HANDLE Start
The initial position at Step=0 
- HANDLE End
The final position at Step=1 
- FLOAT Step
A value from 0 to 1 for the position between Start and End 
- BOOL CurveArcs
True to curve movement if rotation is applied, false for linear movement 
- NONE Return


Detailed description

This call smoothly interpolates between two objects, storing the result in a third Dest position.


The Step may be any value and is not bounded by Flowcode, but typically lies within the range of 0 to 1. A value of 0 represents the position of Start and 1 represents End.


The Animate call performs this operation over a fixed time, selecting the Step from 0 to 1 appropriately then invoking this routine.


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Panel.Position.Morph(dest, start, end, step, false)