29 lines
888 B
C
29 lines
888 B
C
// Filename: vector_TexCoordf.h
|
|
// Created by: drose (11May00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 VECTOR_TEXCOORDF_H
|
|
#define VECTOR_TEXCOORDF_H
|
|
|
|
#include "pandabase.h"
|
|
#include "vector_LPoint2f.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : vector_TexCoordf
|
|
// Description : This is just another name for vector_LPoint2f.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
typedef vector_LPoint2f vector_TexCoordf;
|
|
|
|
#endif
|