blob: 11b783456226a371def3f8d9d952a11458f40841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2006-2007 Nanorex, Inc. See LICENSE file for details.
/*
Name: intersection.cpp
Author: Oleksandr Shevchenko
Description: class for intersection representation
*/
#include "intersection.h"
//----------------------------------------------------------------------------
// Destructor
Intersection::~Intersection()
{
}
|