Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Basics » AvsFilter_MakeLine

AvsFilter_MakeLine


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

Creates a line structure from individual fields.

Syntax

void avs::AvsFilter_MakeLine
(
	float inA,
	float inB,
	float inC,
	avl::Line2D& outLine
)

Parameters

Name Type Default Description
inA float First linear parameter
inB float Second linear parameter
inC float Third linear parameter
outLine Line2D&

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.