- Overview e download dos dados a serem utilizados
- Base de Logradouros
- Faces dos lotes
- Largura de Vias
- Usos por lote
- Relacionando a face do lote ao uso
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
# Define os valores da tela para serem referenciados no código | |
xmax, ymax = 1000, 1000 | |
# Carrega os pontos que estão no arquivo e atribui às listas globais x e y | |
def load_points(): | |
global x, y | |
x, y = [], [] | |
with open('complexidade-200-pontos.csv', 'rb') as csvfile: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- You have to install previously Anaconda and I supposed you're under Windows OS, otherwise you had already IFC Viewer working :)
- It's boring but will rid you from some trouble. You should create a new Environment on Anaconda
- Open Anaconda
- Go to
Environments
- Click on
+Create
- Choose an appropriate name, like
ifc_viewer
- Still on Anaconda, we're gonna go deeper. Click on arrow right to the name of the environment you just created, and you should access a menu, and then choose
Open Terminal
- You must be thrilled to see this beautiful black terminal. I always think I'm Neo in Matrix this time :) But you're here just to install 3 Python Libs that we need to make things working. And you're gonna type the following lines on terminal, hit enter and wait for the magic happens.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- http://bit.ly/complex-arq
- Biografia
- Arquitetura e complexidade
- Autores
- Resultado da pesquisa
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//fibonacci_golden_spiral.scad - Simple implementation of the Fibonacci Spiral's polar equation | |
phi = (1 + sqrt(5)) / 2; // =~ 1.618 | |
function radius(angle) = 10 * pow(phi, (angle / 90)); | |
for(i = [0:1:720]) { | |
translate([sin(i) * radius(i), cos(i) * radius(i)]) circle(3); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//dogbone.scad - Simple example to solve 2d cut dogbone using a router CNC | |
square_side = 100; | |
half_square_side = square_side / 2; | |
radius = 5; | |
dog_bone_offset = sin(45) * radius; | |
square_vertex = [[1, 1], [1, -1], [-1, -1], [-1, 1]]; | |
difference () { |