Back to Aurora Vision Library Lite website

You are here: Start » All Functions » Location » AvsFilter_MakeLocation

AvsFilter_MakeLocation


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: AVL.h
Namespace: avs

Creates a location structure from individual fields.

Syntax

void avs::AvsFilter_MakeLocation
(
	int inX,
	int inY,
	avl::Location& outLocation
)

Parameters

Name Type Default Description
Input value inX int Input x-coordinate
Input value inY int Input y-coordinate
Output value outLocation Location& Output location

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.