|
Java example source code file (render.js)
The render.js Java example source code/* * * * Copyright 2015 Skymind,Inc. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * */ var x = []; var y = []; var name3 = []; var tx = 0, ty = 0; var ss = 1; function zoomHandler() { tx = d3.event.translate[0]; ty = d3.event.translate[1]; ss = d3.event.scale; console.log('zoom called'); svg.selectAll('.u') .data(name3) .attr("transform", function(d, i) { return "translate(" + ((x[i]*20*ss + tx) + 400) + "," + ((y[i]*20*ss + ty) + 400) + ")"; }); } var svg; function drawEmbedding() { $("#embed").empty(); var div = d3.select("#embed"); svg = div.append("svg") // svg is global .attr("width", 60000) .attr("height", 60000); var g = svg.selectAll(".b") .data(name3) .enter().append("g") .attr("class", "u"); g.append("text") .attr("text-anchor", "top") .attr("font-size", 12) .attr("fill", "#333") .text(function(d) { return d; }); svg.selectAll('.u') .data(name3) .attr("transform", function(d, i) { return "translate(" + ((x[i]*20*ss + tx) + 400) + "," + ((y[i]*20*ss + ty) + 400) + ")"; }); var zoomListener = d3.behavior.zoom() .scaleExtent([0.1, 10]) .center([0,0]) .on("zoom", zoomHandler); zoomListener(svg); } function drawTsne() { $.ajax({ url: "/api/coords", cache: false }) .done(function( data ) { for(var i = 0; i < data.length; i++) { var split = data[i].split(','); console.log(split.length); var xCoord = split[0]; var yCoord = split[1]; var name2 = split[2]; x.push(xCoord); y.push(yCoord); name3.push(name2); } drawEmbedding(); }); } $(document).ready(function() { }); Other Java examples (source code examples)Here is a short list of links related to this Java render.js source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.