Entradas

Mostrando las entradas de mayo, 2013

Calculando matriz inversa 4x4 c++

Imagen
Aquí les comparto el código que encontré, funciona para calcular la matriz inversa en c++ #ifndef OPENTISSUE_CORE_MATH_MATH_INVERT4x4_H #define OPENTISSUE_CORE_MATH_MATH_INVERT4x4_H // // OpenTissue Template Library // - A generic toolbox for physics-based modeling and simulation. // Copyright (C) 2008 Department of Computer Science, University of Copenhagen. // // OTTL is licensed under zlib: http://opensource.org/licenses/zlib-license.php // #include <OpenTissue/configuration.h> namespace OpenTissue {    namespace math    {      template < typename real_type >      inline void invert4x4 ( real_type M [ 4 ][ 4 ])      {   real_type a00 = M [ 0 ][ 0 ]; real_type a01 = M [ 0 ][ 1 ]; real_type a02 = M [ 0 ][ 2 ]; real_type a03 = M [ 0 ][ 3 ];        real_type a10 = M [ 1 ][ 0 ]; re...

Ejemplo filloval java

Imagen
En este ejemplo de java se ase un circulo en color negro usando el filloval Grafica g.fillOval(int x, int y, int ancho, int alto); La posición (x,y) denota la posición de la esquina superior izquierda del rectángulo, el alto y ancho dan las dimensiones del mismo. import java.awt.Component; import java.awt.Frame; import java.awt.Graphics; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; public class FillOvalExample { public static void main(String[] args) { Frame frame = new Frame("Ejemplo FillOval"); frame.setSize(600, 400); frame.add(new CanvasToDisplay()); frame.setVisible(true); frame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); } } class CanvasToDisplay extends Component { public void paint(Graphics g) { g.drawOval(0, 10, 100, 100); g.fillOval(0, 10, 100, 100); } } Descargar código: Lin...