SOL4Py Class: ZOpenGLCircle

 SOL4Py Class Library  SOL4Py Samples 

Source code

#/******************************************************************************
# 
#  Copyright (c) 2019 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#******************************************************************************/
 
#  ZOpenGLCircle.py

# encodig: utf-8

import numpy as np
import math
import OpenGL

from SOL4Py.opengl.ZOpenGLArrayBuffer import *

class ZOpenGLCircle :
  
  def __init__(self, px = 0.0,  py = 0.0, pz = 0.5, radius  = 1.0):
    if radius <= 0.0 :
      raise Exception("Invalid parameter.")
       
    self.createCircle(px, py, pz, radius)


  def createCircle(self, px, py, pz, radius):  
    self.STRIDE       = 3
    self.CIRCLE_ANGLE = 360
    
    self.vertices = [[0.0 for i in range(0, self.STRIDE)] for j in range(0, self.CIRCLE_ANGLE)]

    for i in range(0, self.CIRCLE_ANGLE-1, 2):
        self.vertices[i    ][0] = px + radius * math.cos(math.radians(i    ))
        self.vertices[i    ][1] = py + radius * math.sin(math.radians(i    ))
        self.vertices[i    ][2] = pz
        self.vertices[i + 1][0] = px + radius * math.cos(math.radians(i + 1))
        self.vertices[i + 1][1] = py + radius * math.sin(math.radians(i + 1))
        self.vertices[i + 1][2] = pz

    self.vertexBuffer = ZOpenGLArrayBuffer(GL_ARRAY_BUFFER)
    self.vertexBuffer.bind()
    data  =  np.array(self.vertices, dtype="float32")
    byteSize = self.STRIDE * self.CIRCLE_ANGLE * 4
    
    self.vertexBuffer.data(byteSize, self.STRIDE, self.CIRCLE_ANGLE, data)
    self.vertexBuffer.unbind()

  def getOrbitPosition(self, angle):
    if angle >= self.CIRCLE_ANGLE:
        angle -= self.CIRCLE_ANGLE
    if angle < 0 :
        angle = 0  
    return self.vertices[angle]

  def draw(self):
    self.vertexBuffer.drawArray(GL_LINE_LOOP)


Last modified: 20 Sep. 2019

Copyright (c) 2019 Antillia.com ALL RIGHTS RESERVED.