mirror of https://github.com/CGAL/cgal
38 lines
960 B
C
38 lines
960 B
C
// ============================================================================
|
|
//
|
|
// Copyright (c) 1999 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// release :
|
|
// release_date :
|
|
//
|
|
// file : test_kernelHd.C
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
// author(s) : Stefan Schirra
|
|
//
|
|
//
|
|
// coordinator : MPI, Saarbruecken (<Stefan.Schirra@mpi-sb.mpg.de>)
|
|
// ============================================================================
|
|
|
|
|
|
#include <iostream>
|
|
#include <cassert>
|
|
#include <CGAL/Homogeneous.h>
|
|
#include <CGAL/Point_d.h>
|
|
#include "../Kernel/include/CGAL/_test_cls_point_d.h"
|
|
|
|
typedef CGAL::Homogeneous<double> RH;
|
|
|
|
int
|
|
main()
|
|
{
|
|
_test_cls_point_d( RH() );
|
|
return 0;
|
|
}
|