33 lines
776 B
C
33 lines
776 B
C
// Filename: lvector3.h
|
|
// Created by: drose (24Sep99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef LVECTOR3_H
|
|
#define LVECTOR3_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "coordinateSystem.h"
|
|
#include "cmath.h"
|
|
#include "config_linmath.h"
|
|
#include "lvecBase3.h"
|
|
#include "lvector2.h"
|
|
|
|
#include "fltnames.h"
|
|
#include "lvector3_src.h"
|
|
|
|
#include "dblnames.h"
|
|
#include "lvector3_src.h"
|
|
|
|
#endif
|