OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimVpfExtent.cpp File Reference
#include <ossim/vec/ossimVpfExtent.h>
#include <ossim/base/ossimCommon.h>
#include <ossim/vec/vpf.h>

Go to the source code of this file.

Functions

ostream & operator<< (ostream &out, const ossimVpfExtent &data)
 

Function Documentation

◆ operator<<()

ostream& operator<< ( ostream &  out,
const ossimVpfExtent data 
)

Definition at line 30 of file ossimVpfExtent.cpp.

References ossimVpfExtent::theExtentType, extent_type::x1, extent_type::x2, extent_type::y1, and extent_type::y2.

32 {
33  out << "x1: " << data.theExtentType.x1 << endl
34  << "y1: " << data.theExtentType.y1 << endl
35  << "x2: " << data.theExtentType.x2 << endl
36  << "y2: " << data.theExtentType.y2;
37 
38  return out;
39 }
float x2
Definition: vpfview.h:56
float y2
Definition: vpfview.h:56
float x1
Definition: vpfview.h:56
extent_type theExtentType
float y1
Definition: vpfview.h:56