/**************************************************************************\ * * This file is part of the Coin 3D visualization library. * Copyright (C) 1998-2007 by Systems in Motion. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * ("GPL") version 2 as published by the Free Software Foundation. * See the file LICENSE.GPL at the root directory of this source * distribution for additional information about the GNU GPL. * * For using Coin with software that can not be combined with the GNU * GPL, and for taking advantage of the additional benefits of our * support services, please contact Systems in Motion about acquiring * a Coin Professional Edition License. * * See http://www.coin3d.org/ for more information. * * Systems in Motion, Postboks 1283, Pirsenteret, 7462 Trondheim, NORWAY. * http://www.sim.no/ sales@sim.no coin-support@coin3d.org * \**************************************************************************/ /*! \class SoDecomposeVec2f SoCompose.h Inventor/engines/SoCompose.h \brief The SoDecomposeVec2f class is used to decompose 2D vectors into two floats. \ingroup engines */ #include #include #include SO_ENGINE_SOURCE(SoDecomposeVec2f); /*! \var SoMFVec2f SoDecomposeVec2f::vector Set of input vectors to be decomposed into their coordinate elements. */ /*! \var SoEngineOutput SoDecomposeVec2f::x (SoMFFloat) First coordinates of the input vectors. */ /*! \var SoEngineOutput SoDecomposeVec2f::y (SoMFFloat) Second coordinates of the input vectors. */ #ifndef DOXYGEN_SKIP_THIS // No need to document these. SoDecomposeVec2f::SoDecomposeVec2f() { SO_ENGINE_INTERNAL_CONSTRUCTOR(SoDecomposeVec2f); SO_ENGINE_ADD_INPUT(vector,(0,0)); SO_ENGINE_ADD_OUTPUT(x,SoMFFloat); SO_ENGINE_ADD_OUTPUT(y,SoMFFloat); } // Documented in superclass. void SoDecomposeVec2f::initClass() { SO_ENGINE_INTERNAL_INIT_CLASS(SoDecomposeVec2f); } // // private members // SoDecomposeVec2f::~SoDecomposeVec2f() { } // Documented in superclass. void SoDecomposeVec2f::evaluate() { int num = this->vector.getNum(); SO_ENGINE_OUTPUT(x,SoMFFloat,setNum(num)); SO_ENGINE_OUTPUT(y,SoMFFloat,setNum(num)); int i; for (i = 0; i < num; i++) { SO_ENGINE_OUTPUT(x,SoMFFloat,set1Value(i,vector[i][0])); SO_ENGINE_OUTPUT(y,SoMFFloat,set1Value(i,vector[i][1])); } } #endif // !DOXYGEN_SKIP_THIS