Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Geometry 2D Basics » FisFilter_MakePoint
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | FIL.h |
---|---|
Namespace: | fis |
Module: | FoundationLite |
Creates a point structure from individual fields.
Syntax
void fis::FisFilter_MakePoint ( float inX, float inY, fil::Point2D& outPoint )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inX | float | Horizontal coordinate | |
![]() |
inY | float | Vertical coordinate | |
![]() |
outPoint | Point2D& |
Hints
- Consider using "Expand Structure Fields" command from the input port's context menu instead of this filter. This will make the program more concise and thus easier to understand in most cases.
- "Make" filters should only be used when you need to create a structure explicitly and then use it in more than one further filters.