jueves, 29 de julio de 2021

Arreglado: no se ve parte superior de la ventana windows 10 - Fix: Title bar and part of Windows is missing in Windows 10 Pro

 

Fix: Title bar and part of Windows is missing in Windows 10 Pro

Press Shift+Ctrl+Windows key+B to clear the video buffer and restart the display driver, sound card driver and keyboard driver. This should temporarily solve your problem. ... You can snap windows left or right with Windows key+ Left arrow/ Right arrow key

viernes, 23 de julio de 2021

Taller Geometría con Processing Alexander Arias

 

2 files
Save to cloud
 
 
 
 
 
 
 
 
 
void setup() {
    size(200,200);
    frameRate(10);
    noLoop();
}
void draw() {
    //1 Cambiar background
    //background(255);
    
    //2 Dibujar Cuadrado y Circulo
    //Ver orden de dibujo
    //rect(15,15,50,50);
    //ellipse(60,60,55,55);
    
    //3 Dibujar Circulo y Cuadrado
    //Ver orden de dibujo
    //ellipse(60,60,55,55);
    //rect(15,15,50,50);
    
    //4 Crear una X en el canvas
    //line(0,0,200,200);
    //line(200,0,0,200);
    
    //5 Dibujar el punto central
    //point(100,100);
    
    //6 Dibujar la primera línea del triángulo
    //  el radio para todos los poligonos es r=50
    int r=50;
    int ox=100,oy=100; //Origen en x y y el (0,0)
    int n=3;
    double teta;
    teta= 360/n;
    println(teta);
    teta=teta*(2*PI)/360;
    println("teta=" + teta);
    double x,y,t;
    
    t=0*teta;
    println("t1=" + t);
    x=r*cos(t);
    y=r*sin(t);
    line(ox,oy,ox+x,oy+y);
    println("p1");
    println("x=" + (ox+x) + "  y=" + (oy+y));
    
    t=1.0*teta;
    println("t2=" + t);
    x=r*cos(t);
    y=r*sin(t);
    line(ox,oy,ox+x,oy+y);
    println("p2");
    println("x=" + (ox+x) + "  y=" + (oy+y));
    
    t=2.0*teta;
    println("t3=" + t);
    x=r*cos(t);
    y=r*sin(t);
    line(ox,oy,ox+x,oy+y);
    println("p3");
    println("x=" + (ox+x) + "  y=" + (oy+y));
    
}
 

viernes, 2 de julio de 2021

Consultar lugar de votación en Colombia

 Consultar lugar de votación en Colombia

https://wsp.registraduria.gov.co/censo/consultar/

Código Python a Diagrama UML - Ingeniería Inversa - Reverse engineer Python source code into UML diagrams

 Código Python a Diagrama UML - Ingeniería Inversa - Reverse engineer Python source code into UML diagrams


https://pynsource.com/

Pynsource

Reverse engineer Python source code into UML diagrams

Free Open Source
Community Edition

Toggle between UML,
Ascii art UML and PlantUML views

Document and
understand your projects

Features

Import Python

Reverse engineer Python source code
into UML class diagrams. 

Edit

Edit and layout the diagrams.
Add and delete classes and associations.

Python smarts

The only UML tool that recognises Python instance attributes (not just class attributes)

Innovative use of colour

Automatically colour sibling subclasses
to enhance understanding

Ascii UML

Ascii Art UML view!  Yep.  Copy and paste pure text UML into your source code.

Python 3

Python 3 and Python 2
syntax support. Now includes type annotations.

Comments

Add comment notes.
You know, those cute yellow post-its. :-)

Layout

Save time by automatically laying out diagrams.
Layout algorithms animate, overlap avoidance.

Print

Print and Print preview.
Save PlantUML images.

PlantUML

PlantUML view.  Render amazing looking diagrams using internet based PlantUML service.

Python UML Diagram Tool

 

Python UML Diagram Tool



Software Ideas Modeler is a UML modeling software that can be useful in your Python projects. It allows you to draw diagrams for unique concepts in your solutions. You can generate source code in Python as well as automatically create UML diagrams by your Python code using our reverse engineering feature.

Python UML Diagram Tool
Python UML Diagram Tool

Other Programming Languages Support

Software Ideas Modeler also supports other programming languages:

ArgoUML. Generar código a partir del diagrama de clases

ArgoUML. Generar código a partir del diagrama de clases

https://www.youtube.com/watch?v=AbrzCoTZj5g