egg-4.js

total 0
used 0
limit 0
/* title: Egg 2 categories: curve src_dir: ../point_src/ files: ../point_src/math.js ../point_src/core/head.js ../point_src/pointpen.js ../point_src/pointdraw.js ../point_src/point-content.js ../point_src/pointlist.js ../point_src/pointlistpen.js ../point_src/point.js ../point_src/events.js ../point_src/automouse.js ../point_src/stage.js ../point_src/stage-clock.js ../point_src/extras.js ../point_src/random.js ../point_src/distances.js ../point_src/functions/clamp.js ../point_src/dragging.js ../point_src/setunset.js ../point_src/stroke.js ../point_src/curve-extras.js xybind --- */ class MainStage extends Stage { canvas='playspace' live = true mounted(){ let size = 200 let spin = .44 let pj = this.projectionLength = size * ((Math.sin(spin) + Math.cos(spin) ) * .5) this.createPoints(size, pj) this.dragging.add(...this.points, ...this.controlPoints) this.lineStroke = new Stroke({ color: '#fff' , width: 2 , dash: [7, 4] }) this.lineStroke2 = new Stroke({ color: '#CCC' , width: 2 , dash: [7, 4] }) this.events.wake() } createPoints(width=200, pj=this.projectionLength) { let x = 400 , x2 = width + x , y = 300 this.points = new PointList( new Point(x, y, pj) , new Point(x2, y, pj) ) this.eggPoints = new PointList( new Point(x, y, pj) , new Point(x2, y, pj) , new Point(x, y, pj, 90) , new Point(x2, y, pj, 90) ) this.controlPoints = new PointList( this.eggPoints[0].project() , this.eggPoints[1].project() // , this.eggPoints[2].project() // , this.eggPoints[3].project() ) let stage = this; this.controlPoints.forEach((p,i)=>{ p.onDragStart = function() { // console.log('Drag start') this._release = true; } p.onDragMove = function() { // console.log('Drag move') stage.controlPointsDistances[i] = stage.controlPoints[i].distance2D(stage.eggPoints[i]) } p.onDragEnd = function() { // console.log('Drag end') stage.controlPointsDistances[i] = stage.controlPoints[i].distance2D(stage.eggPoints[i]) this._release = false; } }) this.controlPointsDistances = [ this.controlPoints[0].distance2D(this.eggPoints[0]) , this.controlPoints[1].distance2D(this.eggPoints[1]) // , this.controlPoints[2].distance2D(this.eggPoints[2]) // , this.controlPoints[3].distance2D(this.eggPoints[3]) ] this.lineA = new BezierCurve(this.eggPoints[0], this.eggPoints[1]) this.lineB = new BezierCurve(this.eggPoints[2], this.eggPoints[3]) this.lineA.doTips = false this.lineB.doTips = false } updatePointsToControl(){ const cloneData = (index, pointIndex, extra=0) => { /* Copy data from the `point` units into the target eggPoint */ if(pointIndex==undefined) { pointIndex=index; } this.eggPoints[index].xy = this.points[pointIndex].xy this.eggPoints[index].radius = this.points[pointIndex].radius this.eggPoints[index].rotation = this.points[pointIndex].rotation + extra } /* The egg points should copy the primary point positions */ cloneData(0) cloneData(1) cloneData(2,0, 180) cloneData(3,1, 180) /* Unless the user is in control, Move any control point to the correct location, */ this.controlPoints.forEach((p,i)=>{ if(p._release == true) { return } let currentDistance = this.controlPointsDistances[i] // let currentDistance = p.distance2D(this.eggPoints[0]); p.xy = this.eggPoints[i].add(currentDistance).xy }) this.points[0].lookAt(this.controlPoints[0]) this.points[1].lookAt(this.controlPoints[1]) this.points[0].radius = this.controlPointsDistances[0].distance this.points[1].radius = this.controlPointsDistances[1].distance } draw(ctx){ this.clear(ctx) if(this.clock.tick % 5) { this.updatePointsToControl() } // this.eggPoints.pen.indicator(ctx, {color: '#336655'}) this.points.pen.indicator(ctx, {color: '#336600'}) this.controlPoints.pen.fill(ctx, '#33DDAA') // this.controlPoints.pen.indicator(ctx, {color: '#33DDAA'}) let lineStroke = this.lineStroke let lineStroke2 = this.lineStroke2 lineStroke.set(ctx) this.lineA.render(ctx) lineStroke.unset(ctx) lineStroke2.set(ctx) this.lineB.render(ctx) lineStroke2.unset(ctx) } } ;stage = MainStage.go();
Run
Meta Data
title Egg 2
imports ()
files ('../point_src/math.js', '../point_src/core/head.js', '../point_src/pointpen.js', '../point_src/pointdraw.js', '../point_src/point-content.js', '../point_src/pointlist.js', '../point_src/pointlistpen.js', '../point_src/point.js', '../point_src/events.js', '../point_src/automouse.js', '../point_src/stage.js', '../point_src/stage-clock.js', '../point_src/extras.js', '../point_src/random.js', '../point_src/distances.js', '../point_src/functions/clamp.js', '../point_src/dragging.js', '../point_src/setunset.js', '../point_src/stroke.js', '../point_src/curve-extras.js', 'xybind')
unused_keys ()
unknown_keys ('categories', 'src_dir')
categories ['curve']
src_dir ['../point_src/']
filepath_exists True
path egg-4.js
filepath egg-4.js
clean_files ('../point_src/math.js', '../point_src/core/head.js', '../point_src/pointpen.js', '../point_src/pointdraw.js', '../point_src/compass.js', '../point_src/center.js', '../point_src/point-content.js', '../point_src/pointlistdraw.js', '../point_src/pointlistgradient.js', '../point_src/pointlistshape.js', '../point_src/pointlistgenerator.js', '../point_src/unpack.js', '../point_src/pointlist.js', '../point_src/pointlistpen.js', '../point_src/relative-xy.js', '../point_src/pointcast.js', '../point_src/point.js', '../point_src/events.js', '../point_src/automouse.js', '../point_src/stage-resize.js', '../point_src/functions/resolve.js', '../point_src/stage.js', '../point_src/stage-clock.js', '../point_src/extras.js', '../point_src/random.js', '../point_src/distances.js', '../point_src/functions/clamp.js', '../point_src/protractor.js', '../point_src/text/beta.js', '../point_src/dragging.js', '../point_src/setunset.js', '../point_src/stroke.js', '../point_src/curve-extras.js', '../point_src/coupling.js', '../point_src/xybind.js')
markdown {'html': '', 'content': 'title: Egg 2\ncategories: curve\nsrc_dir: ../point_src/\nfiles:\n ../point_src/math.js\n ../point_src/core/head.js\n ../point_src/pointpen.js\n ../point_src/pointdraw.js\n ../point_src/point-content.js\n ../point_src/pointlist.js\n ../point_src/pointlistpen.js\n ../point_src/point.js\n ../point_src/events.js\n ../point_src/automouse.js\n ../point_src/stage.js\n ../point_src/stage-clock.js\n ../point_src/extras.js\n ../point_src/random.js\n ../point_src/distances.js\n ../point_src/functions/clamp.js\n ../point_src/dragging.js\n ../point_src/setunset.js\n ../point_src/stroke.js\n ../point_src/curve-extras.js\n xybind\n---'}