CPP02/ex03/inc/bsp.h
2025-03-28 16:04:00 +01:00

20 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* bsp.h :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/03/27 16:07:27 by whaffman #+# #+# */
/* Updated: 2025/03/27 16:07:31 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "Point.hpp"
#include "Fixed.hpp"
Fixed crossproduct(Point a, Point b, Point c);
bool bsp(Point a, Point b, Point c, Point point);