class Disp3D::PathInfo

Attributes

node[R]
parent_node[R]
path_id[R]

Public Class Methods

new(node, parent_node, path_id) click to toggle source
# File lib/path_info.rb, line 9
def initialize(node, parent_node, path_id)
  Util3D.check_arg_type(Node, node)
  Util3D.check_arg_type(NodeCollection, parent_node)
  Util3D.check_arg_type(::Integer, path_id)

  @node = node
  @parent_node = parent_node
  @path_id = path_id
end