8:00 – 5:00 SR
- Lenny submitted the list of equipment for development.
- Since we’re now on a new SSP, I need to get permissions to match.
- More work on network chart data
- Spent 2 hours on support line.
- timesheets!
8:00 – 5:00 SR
var storedQueies:Array<IStoreQuery> = data;
8:00 – 5:00 SR
7:30 – 5:00 SR
7:30 – 4:30 SR
9:30 – 5:00 SR
window.addEventListener('resize', this.handleResizeEvent, false);
private handleResizeEvent(ev:Event):void{
console.log(ev.type);
var parent = this.getTopNode();
if(parent){
this.setAdjWidth(parent.clientWidth);
this.setAdjHeight(parent.clientHeight);
this.renderer.setSize(this.adjWidth, this.adjHeight);
if(this.getUse3D()) {
var pcam:THREE.PerspectiveCamera = <THREE.PerspectiveCamera>(this.camera);
pcam.aspect = this.getAdjWidth() / this.getAdjHeight();
pcam.updateProjectionMatrix();
}else{
var ocam:THREE.OrthographicCamera = <THREE.OrthographicCamera>(this.camera);
ocam.right = this.getAdjWidth();
ocam.top = this.getAdjHeight();
ocam.updateProjectionMatrix();
}
}
}
8:00 – 4:00 SR
7:30 – 3:00 SR
8:00 – 3:30 SR
You must be logged in to post a comment.