Commit c487bea1 by rakein

Delete pindalaArvutaja.h

parent 4bf1a4bc
Showing with 0 additions and 10 deletions
#include <stdlib.h>
#include "seeStruct.h"
double pindala(seeStruct A[], seeStruct B[], seeStruct C[], int i)
{
double S;
S = abs((A[i].x * (B[i].y - C[i].y) + B[i].x * (C[i].y - A[i].y) +
C[i].x * (A[i].y - B[i].y))/2);
return S;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment