Dot_product - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Notation

Description

Calculates the dot product of two points.

Parameters

  • x1 (x1, y1) represents the first coordinate
  • y1
  • x2 (x2, y2) represents the second coordinate
  • y2

Return Values

Returns the dot product of two points.

Example Call

// demonstrates
dot_product(0, 0, 0, 0);

NOTOC

Category:Function:Real