Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » Geometry 3D Basics » AvsFilter_MakeLine3D

AvsFilter_MakeLine3D


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
Module: Vision3DLite

Creates a line in 3D structure from individual fields.

Syntax

void avs::AvsFilter_MakeLine3D
(
	float inX0,
	float inY0,
	float inZ0,
	float inDeltaX,
	float inDeltaY,
	float inDeltaZ,
	avl::Line3D& outLine3D
)

Parameters

Name Type Default Description
Input value inX0 float X coordinate of a point lying on the line
Input value inY0 float Y coordinate of a point lying on the line
Input value inZ0 float Z coordinate of a point lying on the line
Input value inDeltaX float Delta along x-axis of a vector parallel to the line
Input value inDeltaY float Delta along y-axis of a vector parallel to the line
Input value inDeltaZ float Delta along z-axis of a vector parallel to the line
Output value outLine3D Line3D&