Jump to content

API Panel.Position.Morph: Difference between revisions

From Flowcode Help
Admin (talk | contribs)
XML import of API auto-gen
Admin (talk | contribs)
XML import
Line 2: Line 2:
Blends positions from two sources to a destination
Blends positions from two sources to a destination


<div style="width:25%; float:right" class="toc">
===Class hierarchy===
:Panel
::Position
:::Morph
</div>
__TOC__


===Parameters===
==Parameters==
''[[Variable types|HANDLE]] Dest''
''[[Variable types|HANDLE]] Dest''
:The position or component to update
:The position or component to update
Line 16: Line 23:
:A value from 0 to 1 for the position between Start and End
:A value from 0 to 1 for the position between Start and End


===Return value===
==Return value==
''This call does not return a value''
''This call does not return a value''


===Detailed description===
==Detailed description==
''No additional information''
''No additional information''


===Examples===
==Examples==
====Calling in a calculation====
===Calling in a calculation===
* Add to a calculation icon: <pre class="brush:[C]">::Panel.Position.Morph(dest, start, end, step)</pre>
* Add to a calculation icon: <pre class="brush:[cpp]">::Panel.Position.Morph(dest, start, end, step)</pre>

Revision as of 16:06, 11 May 2013

<sidebar>API contents</sidebar> Blends positions from two sources to a destination

Class hierarchy

Panel
Position
Morph

Parameters

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

Return value

This call does not return a value

Detailed description

No additional information

Examples

Calling in a calculation

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