20 lines
1.0 KiB
C
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);
|