⛏️ index : haiku.git

/*
 * Copyright 2006-2007, Haiku.
 * Distributed under the terms of the MIT License.
 *
 * Authors:
 *		Stephan Aßmus <superstippi@gmx.de>
 */


#include "Transformer.h"


_USING_ICON_NAMESPACE


// constructor
VertexSource::VertexSource()
{
}

// destructor
VertexSource::~VertexSource()
{
}

// #pragma mark -

// constructor
Transformer::Transformer(VertexSource& source, const char* name)
#ifdef ICON_O_MATIC
	: IconObject(name),
#else
	:
#endif
	  fSource(source)
{
}

// constructor
Transformer::Transformer(VertexSource& source,
						 BMessage* archive)
#ifdef ICON_O_MATIC
	: IconObject(archive),
#else
	:
#endif
	  fSource(source)
{
}

// destructor
Transformer::~Transformer()
{
}

// #pragma mark -

// rewind
void
Transformer::rewind(unsigned path_id)
{
	fSource.rewind(path_id);
}

// vertex
unsigned
Transformer::vertex(double* x, double* y)
{
	return fSource.vertex(x, y);
}

// SetSource
void
Transformer::SetSource(VertexSource& source)
{
	fSource = source;
}

// WantsOpenPaths
bool
Transformer::WantsOpenPaths() const
{
	return fSource.WantsOpenPaths();
}

// ApproximationScale
double
Transformer::ApproximationScale() const
{
	return fSource.ApproximationScale();
}