This file contains hidden or 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
function checkForEmptyCells() { | |
var ss=SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet=ss.getSheets()[1]; | |
var selection=sheet.getDataRange(); | |
var columns=selection.getNumColumns(); | |
var rows=selection.getNumRows(); | |
var emptyCells = []; | |
var headerCells = sheet.getRange(2, 1,1, columns) | |
var debugRange= sheet.getRange(1,1); | |
var dataCells = sheet.getRange(3, 2, rows-2, columns-1) |
This file contains hidden or 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
use fltk::*; | |
fn main() { | |
let app = app::App::default(); | |
let mut win = window::Window::default().with_size(400, 300); | |
let mut hpack = group::Pack::default().with_size(400, 100); | |
hpack.set_spacing(10); | |
hpack.set_type(group::PackType::Horizontal); |
This file contains hidden or 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
use fltk::*; | |
fn main() { | |
let app = app::App::default(); | |
let mut win = window::Window::new(100, 100, 400, 300, ""); | |
let mut scroll = group::Group::default().size_of(&win); | |
let mut pack = group::Pack::default() | |
.with_size(200, 100) | |
.center_of(&scroll); | |
let mut frame = frame::Frame::default().with_size(0, 160); |
This file contains hidden or 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
/* | |
Equeations from: | |
https://www.dynamicmath.xyz/strange-attractors/ | |
*/ | |
Param var(28); | |
Param scale(1); | |
Param offX; | |
Param offY; |