Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
function toRadian(deg){
  return deg * (Math.PI/180);
}
// p 중심점
// r radian
// deg 반지름
function _createElement(p, r,deg,col){
  var htm = $('<div>');
  htm.css({
    'position' : 'absolute',
    'width' : '2px',
    'height' : '2px',
    'background' : col,
    'left' : p + Math.cos(toRadian(deg)) * r,
    'top' : p + Math.sin(toRadian(deg)) * r
  });
  $('body').append(htm);
}
$(function(){
  var i=1, r = 90,p= 200;
  for(i;i<r;i++){
    _createElement(p, 200,i,'#000');
  }
  _createElement(p, 190,0,'red');
  _createElement(p, 190,45,'red');
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers