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 os | |
import sys | |
import scipy.io | |
import scipy.misc | |
import matplotlib.pyplot as plt | |
from matplotlib.pyplot import imshow | |
from PIL import Image | |
from nst_utils import * | |
import numpy as np |
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
using System.Collections; | |
using System.Collections.Generic; | |
using System.Net.NetworkInformation; | |
using UnityEngine; | |
public class OctreeComponent : MonoBehaviour { | |
public float size = 5; | |
public int depth = 2; |